USE [logging2006] GO /****** Object: Table [dbo].[ViewHour] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[ViewHour]') AND type in (N'U')) DROP TABLE [dbo].[ViewHour] GO /****** Object: Table [dbo].[userroles] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[userroles]') AND type in (N'U')) DROP TABLE [dbo].[userroles] GO /****** Object: Table [dbo].[snmpOperstatus] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[snmpOperstatus]') AND type in (N'U')) DROP TABLE [dbo].[snmpOperstatus] GO /****** Object: Table [dbo].[snmpAdminStatus] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[snmpAdminStatus]') AND type in (N'U')) DROP TABLE [dbo].[snmpAdminStatus] GO /****** Object: Table [dbo].[snmpAddOperStatus] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[snmpAddOperStatus]') AND type in (N'U')) DROP TABLE [dbo].[snmpAddOperStatus] GO /****** Object: Table [dbo].[severitytypes] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[severitytypes]') AND type in (N'U')) DROP TABLE [dbo].[severitytypes] GO /****** Object: Table [dbo].[ResolutionTypes] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[ResolutionTypes]') AND type in (N'U')) DROP TABLE [dbo].[ResolutionTypes] GO /****** Object: Table [dbo].[GeoIPCountryWhois] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[GeoIPCountryWhois]') AND type in (N'U')) DROP TABLE [dbo].[GeoIPCountryWhois] GO /****** Object: Table [dbo].[DeviceTypes] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[DeviceTypes]') AND type in (N'U')) DROP TABLE [dbo].[DeviceTypes] GO /****** Object: Table [dbo].[devicegroups] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[devicegroups]') AND type in (N'U')) DROP TABLE [dbo].[devicegroups] GO /****** Object: Table [dbo].[DeviceEnviroment] Script Date: 10-08-2024 11:01:08 ******/ IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[DeviceEnviroment]') AND type in (N'U')) DROP TABLE [dbo].[DeviceEnviroment] GO /****** Object: Table [dbo].[DeviceEnviroment] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DeviceEnviroment]( [ID] [int] NOT NULL, [Enviroment] [nvarchar](50) NOT NULL, [Description] [text] NULL ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GO /****** Object: Table [dbo].[devicegroups] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[devicegroups]( [id] [int] IDENTITY(1,1) NOT NULL, [description] [varchar](128) NOT NULL, [devicetype] [int] NULL, [bindtodevicetype] [int] NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[DeviceTypes] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[DeviceTypes]( [id] [int] NOT NULL, [devicetypename] [nvarchar](100) NOT NULL, [devicetype] [nvarchar](15) NOT NULL, [manufactore] [nvarchar](100) NOT NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[GeoIPCountryWhois] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[GeoIPCountryWhois]( [begin_ip] [bigint] NULL, [end_ip] [bigint] NULL, [cc] [nvarchar](2) NULL, [country] [nvarchar](50) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[ResolutionTypes] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ResolutionTypes]( [resolution] [smallint] NULL, [resolutionname] [nvarchar](50) NULL, [resolutiondescription] [nvarchar](1024) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[severitytypes] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[severitytypes]( [severity] [int] NOT NULL, [severityname] [nvarchar](50) NOT NULL, [severitydescription] [nvarchar](1024) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[snmpAddOperStatus] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[snmpAddOperStatus]( [id] [int] NULL, [Description] [nvarchar](50) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[snmpAdminStatus] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[snmpAdminStatus]( [id] [int] NULL, [Description] [nvarchar](50) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[snmpOperstatus] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[snmpOperstatus]( [id] [int] NULL, [Description] [nvarchar](50) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[userroles] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[userroles]( [role] [int] NOT NULL, [roledescription] [varchar](50) NULL ) ON [PRIMARY] GO /****** Object: Table [dbo].[ViewHour] Script Date: 10-08-2024 11:01:08 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[ViewHour]( [Hour] [int] NULL, [HourText] [char](10) NULL ) ON [PRIMARY] GO INSERT [dbo].[DeviceEnviroment] ([ID], [Enviroment], [Description]) VALUES (1, N'Production', N'Produnction Enviroment') INSERT [dbo].[DeviceEnviroment] ([ID], [Enviroment], [Description]) VALUES (2, N'Preprod', NULL) INSERT [dbo].[DeviceEnviroment] ([ID], [Enviroment], [Description]) VALUES (3, N'Test', NULL) INSERT [dbo].[DeviceEnviroment] ([ID], [Enviroment], [Description]) VALUES (4, N'Development', NULL) INSERT [dbo].[DeviceEnviroment] ([ID], [Enviroment], [Description]) VALUES (0, N'Unassigned', NULL) GO SET IDENTITY_INSERT [dbo].[devicegroups] ON INSERT [dbo].[devicegroups] ([id], [description], [devicetype], [bindtodevicetype]) VALUES (1, N'Unassigned Devices', 0, 0) INSERT [dbo].[devicegroups] ([id], [description], [devicetype], [bindtodevicetype]) VALUES (2, N'Assigned Devices', 0, 0) SET IDENTITY_INSERT [dbo].[devicegroups] OFF GO INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (7, N'Microsoft Windows', N'EVTLOG', N'Microsoft') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (8, N'VMware Host', N'VMHOST', N'VMware Inc.') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (20, N'Cisco Meraki Firewall', N'MERAKIFW', N'Cisco Meraki') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (21, N'Cisco Meraki Wireless', N'MERAKIWIFI', N'Cisco Meraki') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (22, N'Cisco Meraki Switch', N'MERAKISW', N'Cisco Meraki') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (30, N'QNAP NAS', N'QNAPNAS', N'QNAP Systems, Inc.') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (35, N'Synology NAS', N'SYNOLOGYNAS', N'Synology Inc.') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (40, N'EqualLogic SAN', N'EQUALLOGICSAN', N'Dell EqualLogic') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (15, N'Printer', N'PRINTER', N'Generic Printer') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (25, N'Cisco Firepower Threat Defense', N'CISCOFTD', N'Cisco Systems') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (0, N'Cisco ASA/PIX Firewall', N'PIX', N'Cisco Systems') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (1, N'Cisco VPN Concentrator', N'CISCOVPN', N'Cisco Systems') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (2, N'Cisco ACS', N'CISCOACS', N'Cisco Systems') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (3, N'Cisco IOS Switch', N'IOSSWITCH', N'Cisco Systems') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (4, N'Cisco IOS Router', N'IOSROUTER', N'Cisco Systems') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (5, N'Snort', N'SNORT', N'Snort') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (255, N'Neosec Security Server', N'NEOSEC', N'Neosec') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (6, N'Standard Syslog', N'STDSYSLOG', N'BSD Unix') INSERT [dbo].[DeviceTypes] ([id], [devicetypename], [devicetype], [manufactore]) VALUES (254, N'Neosec Windows Agent', N'WINDOWSAGENT', N'Neosec') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (33996344, 33996351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (50331648, 68257567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68257568, 68257599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68257600, 68259583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68259584, 68259599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68259600, 68296775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68296776, 68296783, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68296784, 68298887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68298888, 68298895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68298896, 68305407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68305408, 68305919, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68305920, 68314143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68314144, 68314151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68314152, 68395663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68395664, 68395671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68395672, 68438287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68438288, 68438303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68438304, 68527287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68527288, 68527295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68527296, 68637311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68637312, 68637375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68637376, 68649143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68649144, 68649151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (68649152, 69533951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (69533952, 69534207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (69534208, 69915111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (69915112, 69915119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (69915120, 69956103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (69956104, 69956111, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (69956112, 83886079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (94585424, 94585439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (100663296, 121195295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (121195296, 121195327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (121195328, 135201279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (135201280, 135201535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (135201536, 135202047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (135202048, 135202303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (135202304, 151257087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (151257088, 151322623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (151322624, 152305663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (152305664, 152338431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (152338432, 167772159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (184549376, 201405503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201405504, 201405511, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201405512, 201586863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201586864, 201586871, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201586872, 201674095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201674096, 201674111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201674112, 201745663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201745664, 201745671, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201745672, 201888839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201888840, 201888847, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201888848, 201897983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201897984, 201898239, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (201898240, 202035199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202035200, 202035711, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202035712, 202276999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202277000, 202277015, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202277016, 202385407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202385408, 202385919, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202385920, 202386431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202386432, 202387455, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202387456, 202517983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202517984, 202517991, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202517992, 202706431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202706432, 202706943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202706944, 202713343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202713344, 202713351, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202713352, 202748735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202748736, 202748743, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202748744, 202782911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202782912, 202782927, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202782928, 202783159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202783160, 202783167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202783168, 202834623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202834624, 202834687, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202834688, 202870783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202870784, 202870799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202870800, 202946791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202946792, 202946799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202946800, 202998063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202998064, 202998071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (202998072, 203412087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203412088, 203412095, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203412096, 203500119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203500120, 203500127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203500128, 203654735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203654736, 203654751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203654752, 203658239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658240, 203658287, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658288, 203658303, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658304, 203658383, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658384, 203658399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658400, 203658431, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658432, 203658495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658496, 203658911, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658912, 203658927, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658928, 203658943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658944, 203658991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203658992, 203659007, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203659008, 203696487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203696488, 203696495, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203696496, 203747823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203747824, 203747831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203747832, 203799607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203799608, 203799615, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203799616, 203805087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203805088, 203805095, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203805096, 203983143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203983144, 203983151, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (203983152, 204046335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204046336, 204047103, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047104, 204047119, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047120, 204047271, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047272, 204047279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047280, 204047295, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047296, 204047335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047336, 204047359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047360, 204047375, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047376, 204047391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047392, 204047471, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047472, 204047479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204047480, 204048063, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204048064, 204048127, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204048128, 204048383, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204048384, 204089327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204089328, 204089335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204089336, 204120151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204120152, 204120159, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204120160, 204409943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204409944, 204409951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204409952, 204443655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204443656, 204443663, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204443664, 204443695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204443696, 204443711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204443712, 204443727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204443728, 204443743, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (204443744, 205500987, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (205500988, 205500991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (205500992, 208290127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (208290128, 208290135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (208290136, 208472175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (208472176, 208472183, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (208472184, 209799199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209799200, 209799207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209799208, 209799743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209799744, 209799751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209799752, 209845143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209845144, 209845151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209845152, 209868799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209868800, 209869055, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (209869056, 210784255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210784256, 210784383, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210784384, 210784767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210784768, 210786303, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210786304, 210867927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210867928, 210867935, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210867936, 210888327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210888328, 210888335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210888336, 210970847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210970848, 210970855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (210970856, 211051199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211051200, 211051207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211051208, 211068927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211068928, 211070975, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211070976, 211126783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211126784, 211126911, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211126912, 211129607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211129608, 211129615, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211129616, 211313647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211313648, 211313655, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211313656, 211363751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211363752, 211363759, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211363760, 211368655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211368656, 211368663, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211368664, 211536367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211536368, 211536375, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211536376, 211739175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211739176, 211739183, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211739184, 211748207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211748208, 211748223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211748224, 211793423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211793424, 211793431, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211793432, 211816087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211816088, 211816095, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211816096, 211953287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211953288, 211953295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (211953296, 212018783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212018784, 212018791, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212018792, 212107575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212107576, 212107583, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212107584, 212230175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212230176, 212230207, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212230208, 212230655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212230656, 212231167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212231168, 212374631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212374632, 212374639, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212374640, 212417791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212417792, 212417799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212417800, 212517199, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212517200, 212517215, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212517216, 212520815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212520816, 212520831, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212520832, 212787199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212787200, 212788479, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788480, 212788647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788648, 212788663, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788664, 212788671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788672, 212788799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788800, 212788815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788816, 212788823, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788824, 212788991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212788992, 212789007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789008, 212789039, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789040, 212789127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789128, 212789135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789136, 212789143, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789144, 212789151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789152, 212789159, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789160, 212789167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789168, 212789183, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789184, 212789199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789200, 212789215, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789216, 212789231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789232, 212789247, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212789248, 212790271, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212790272, 212792063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212792064, 212792319, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212792320, 212792831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212792832, 212793087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212793088, 212793151, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212793152, 212793215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212793216, 212793343, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (212793344, 213100183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213100184, 213100191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213100192, 213135351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213135352, 213135359, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213135360, 213268431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213268432, 213268439, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213268440, 213779847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213779848, 213779855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213779856, 213809159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213809160, 213809167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (213809168, 214016207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214016208, 214016223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214016224, 214185151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214185152, 214185183, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214185184, 214266879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214266880, 214267903, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214267904, 214858655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214858656, 214858671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (214858672, 234881023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (251658240, 289011535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (289011536, 289011543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (289011544, 323243895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (323243896, 323243903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (323243904, 332132119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (332132120, 332132127, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (332132128, 355993887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (355993888, 355993895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (355993896, 368674047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (368674048, 368674303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (368674304, 385875967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (385875968, 394264575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (402653184, 405012479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (405012480, 405143551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (405143552, 405405695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (405405696, 405536767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (405536768, 406388735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (406388736, 406454271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (406454272, 406847487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (406847488, 407408639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (407408640, 407416831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (407420928, 407624663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (407624664, 407624671, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (407624672, 407633919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (407633920, 408420351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (408420352, 408494079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (408502272, 408518655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (408535040, 408551423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (408551424, 409206783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (409206784, 409468927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (409468928, 409731071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (409731072, 409862143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (409862144, 409993215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (409993216, 410058751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (410058752, 410124287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (410124288, 410189823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (410189824, 410648575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (410648576, 410714111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (410714112, 411303935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411303936, 411369471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411566080, 411639807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411648000, 411664383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411664384, 411680767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411680768, 411688959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411697152, 411738111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411746304, 411762687, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411762688, 411770879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411795456, 411803647, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411828224, 411893759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411893760, 411959295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411959296, 411983871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411983872, 411992063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411992064, 411999231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (411999232, 412000255, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412000256, 412221439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412221440, 412229631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412286976, 412483583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412483584, 412549119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412549120, 412614655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412614656, 412647423, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412647424, 412680191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412680192, 412696575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412696576, 412876799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (412876800, 413007871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (413007872, 415760383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (415760384, 416022527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416022528, 416219135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416219136, 416251903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416251904, 416546815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416546816, 416563199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416612352, 416628735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416628736, 416636927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416645120, 416743423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416743424, 416745439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416745440, 416745471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416745472, 416776191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (416776192, 417202175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417202176, 417267711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417267712, 417341439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417366016, 417398783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417398784, 417464319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417464320, 417529855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417529856, 417791999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417792000, 417800191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417800192, 417808383, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417808384, 417816575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417824768, 417857535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417857536, 417923071, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (417923072, 418062335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418062336, 418070527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418070528, 418074623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418078720, 418119679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418119680, 418643967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418643968, 418676735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418676736, 418687743, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418687744, 418687998, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418687999, 418693119, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418693120, 418709503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418709504, 418742271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (418775040, 419430399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (419430400, 436207615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (436207616, 452984831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (469762048, 540737535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540737536, 540737791, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540737792, 540737919, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540737920, 540750175, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540750176, 540750191, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540750192, 540803071, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540803072, 540819455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540819456, 540823551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (540823552, 543690751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (543690752, 543691007, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (543691008, 544301567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (544301568, 544302079, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (544302080, 603979775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (637534208, 644898879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (644898880, 644898911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (644898912, 654311423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (671088640, 687865855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (700448768, 700579839, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701235200, 701243391, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701243392, 701251583, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701251584, 701259775, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701259776, 701267967, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701464576, 701472767, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701472768, 701480959, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701480960, 701489151, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701489152, 701513727, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701513728, 701530111, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701530112, 701546495, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (701546496, 701562879, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702283776, 702287871, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702287872, 702291967, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702291968, 702296063, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702296064, 702300159, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702300160, 702304255, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702304256, 702308351, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702308352, 702312447, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702312448, 702316543, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702414848, 702416895, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702416896, 702418943, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702418944, 702420991, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702478336, 702481407, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702481408, 702482431, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702482432, 702483455, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702483456, 702484479, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702484480, 702485503, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702485504, 702486527, N'EG', N'Egypt') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702486528, 702487551, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702487552, 702488575, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702488576, 702489599, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702540800, 702541823, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702541824, 702542847, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702542848, 702543871, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702543872, 702544895, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (702544896, 702545919, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (703594496, 704118783, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (704118784, 704380927, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (721420288, 738197503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (738197504, 746742271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (746742272, 746742783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (746742784, 771751935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (788529152, 805306367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (805306368, 822083583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (855638016, 872415231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (872415232, 889192447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (889192448, 905969663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (905969664, 956301311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (956301312, 973078527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (973078528, 973209599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (973209600, 973275135, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (973275136, 973471743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (973471744, 973602815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (973602816, 973864959, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (973864960, 973996031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (973996032, 974782463, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (974782464, 974913535, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (974913536, 974979071, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (975044608, 977272831, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977272832, 977305599, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977338368, 977346559, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977354752, 977371135, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977371136, 977395711, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977395712, 977397759, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977397760, 977399807, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977399808, 977401855, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977401856, 977403903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977403904, 977534975, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977534976, 977567743, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977600512, 977666047, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977666048, 977731583, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977731584, 977764351, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977764352, 977797119, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (977797120, 978321407, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978321408, 978452479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978452480, 978583551, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978583552, 978599935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978599936, 978649087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978649088, 978714623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978714624, 978780159, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978780160, 978784255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978796544, 978812927, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (978812928, 979369983, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (979369984, 979402751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (979501056, 979566591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (979566592, 979599359, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (979632128, 979763199, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (979763200, 979894271, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (979894272, 980418559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (980418560, 980549631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (980680704, 980942847, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (980942848, 981467135, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (981467136, 981991423, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (981991424, 982122495, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982122496, 982188031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982188032, 982253567, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982253568, 982515711, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982515712, 982581247, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982581248, 982614015, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982614016, 982622207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982622208, 982624255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982624256, 982626303, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982626304, 982630399, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982630400, 982646783, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982646784, 982679551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982679552, 982695935, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982712320, 982745087, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982745088, 982753279, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982753280, 982755327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982755328, 982759423, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982759424, 982761471, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982761472, 982777855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (982777856, 983039999, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (983040000, 983171071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (983302144, 983564287, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (983564288, 984612863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (984612864, 984743935, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (984743936, 984875007, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (984875008, 984956927, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (984956928, 984965119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (984973312, 985006079, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (985006080, 985071615, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (985137152, 985202687, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (985202688, 985268223, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (985268224, 985399295, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (985399296, 985661439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (985661440, 987758591, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (987758592, 988807167, N'KR', N'Korea, Republic of') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (988807168, 989855743, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (989855744, 991952895, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (991952896, 995360767, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (995360768, 995622911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (995622912, 996409343, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (996671488, 996802559, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (996802560, 996868095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (996868096, 997064703, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (997195776, 998244351, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (998244352, 999292927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999292928, 999423999, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999424000, 999555071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999555072, 999686143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999686144, 999751679, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999751680, 999784447, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999817216, 999849983, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999882752, 999948287, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (999948288, 1000013823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1000079360, 1000341503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1000341504, 1000734719, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1000734720, 1000800255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1000800256, 1000865791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1000865792, 1001127935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1001390080, 1002045439, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1002045440, 1002176511, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1002176512, 1002242047, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1002242048, 1002307583, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1002307584, 1002373119, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1002373120, 1002405887, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1002438656, 1008730111, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1008730112, 1009778687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1009778688, 1010237439, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1010237440, 1010302975, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1010302976, 1010761727, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1010761728, 1010827263, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1010827264, 1017118719, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1017118720, 1019215871, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1019215872, 1019346943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1019346944, 1019478015, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1019478016, 1019609087, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1019609088, 1019740159, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1019740160, 1021313023, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1021313024, 1021837311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1021837312, 1021968383, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1021968384, 1021981007, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1021981008, 1021981023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1021981024, 1021986495, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1021986496, 1021986559, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1021986560, 1022033919, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1022099456, 1022361599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1022361600, 1022623743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1022623744, 1022754815, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1022754816, 1022820351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1022885888, 1022951423, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023213568, 1023246335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023279104, 1023311871, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023311872, 1023328255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023344640, 1023410175, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023410176, 1023672319, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023672320, 1023688703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023705088, 1023721471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023721472, 1023737855, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023737856, 1023770623, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023770624, 1023778815, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023787008, 1023791103, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023803392, 1023852543, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023852544, 1023868927, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023868928, 1023901695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023901696, 1023934463, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023934464, 1023967231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023967232, 1023975423, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1023983616, 1023999999, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024000000, 1024032767, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024032768, 1024065535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024065536, 1024131071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024131072, 1024163839, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024163840, 1024184319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024188416, 1024196607, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024196608, 1024229375, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024229376, 1024262143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024262144, 1024327679, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024327680, 1024328575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024328576, 1024329279, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024329280, 1024329343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024329344, 1024329471, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024329472, 1024330751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024330752, 1024330759, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024330760, 1024331327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024331328, 1024331519, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024331520, 1024332287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024332288, 1024332415, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024332416, 1024332487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024332488, 1024332495, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024332496, 1024332927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024332928, 1024333055, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333056, 1024333247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333248, 1024333311, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333312, 1024333367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333368, 1024333375, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333376, 1024333791, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333792, 1024333823, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333824, 1024333951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024333952, 1024334079, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024334080, 1024334847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024334848, 1024334911, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024334912, 1024335111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335112, 1024335119, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335120, 1024335151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335152, 1024335167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335168, 1024335183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335184, 1024335199, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335200, 1024335679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335680, 1024335743, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335744, 1024335807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335808, 1024335871, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024335872, 1024339583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024339584, 1024339711, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024339712, 1024339967, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024339968, 1024344063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024344064, 1024352255, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024360448, 1024361071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361072, 1024361087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361088, 1024361095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361096, 1024361103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361104, 1024361279, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361280, 1024361343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361344, 1024361391, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361392, 1024361471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361472, 1024361487, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361488, 1024361503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361504, 1024361727, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361728, 1024361743, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361744, 1024361775, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361776, 1024361791, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361792, 1024361799, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361800, 1024361807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361808, 1024361855, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361856, 1024361983, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024361984, 1024362495, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362496, 1024362575, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362576, 1024362591, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362592, 1024362623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362624, 1024362655, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362656, 1024362671, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362672, 1024362687, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362688, 1024362703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362704, 1024362719, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362720, 1024362735, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362736, 1024362751, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362752, 1024362815, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362816, 1024362831, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362832, 1024362880, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362881, 1024362911, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024362912, 1024363015, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363016, 1024363023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363024, 1024363055, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363056, 1024363519, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363520, 1024363559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363560, 1024363567, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363568, 1024363599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363600, 1024363615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363616, 1024363647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363648, 1024363807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363808, 1024363967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024363968, 1024363999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024364000, 1024364015, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024364016, 1024364079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024364080, 1024364095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024364096, 1024364543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024364544, 1024364799, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024364800, 1024365055, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024365056, 1024365567, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024365568, 1024365823, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024365824, 1024366335, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024366336, 1024366591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024366592, 1024366847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024366848, 1024367103, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024367104, 1024367359, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024367360, 1024368127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024368128, 1024368383, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024368384, 1024368639, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024368640, 1024369407, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024369408, 1024369919, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024369920, 1024370175, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024370176, 1024371455, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024371456, 1024371967, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024371968, 1024372479, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024372480, 1024372735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024372736, 1024374015, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024374016, 1024374783, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024374784, 1024375055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375056, 1024375303, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375304, 1024375327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375328, 1024375375, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375376, 1024375383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375384, 1024375391, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375392, 1024375455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375456, 1024375807, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024375808, 1024375999, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376000, 1024376063, N'PH', N'Philippines') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376064, 1024376191, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376192, 1024376319, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376320, 1024376447, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376448, 1024376511, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376512, 1024376703, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376704, 1024376831, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024376832, 1024393215, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024393216, 1024458751, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024458752, 1024491519, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024491520, 1024589823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024589824, 1024655359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024655360, 1024720895, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024720896, 1024786431, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1024786432, 1025245183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1025245184, 1025277951, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1025277952, 1025294335, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1025310720, 1025343487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1025343488, 1025376255, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1025376256, 1025507327, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1025507328, 1026293759, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1026293760, 1026392063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1026392064, 1026408447, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1026424832, 1026490367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1026490368, 1026523135, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1026523136, 1026539519, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1026539520, 1026555903, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1026555904, 1027080191, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1027080192, 1027866623, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1027866624, 1027997695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1027997696, 1028128767, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1028128768, 1029046271, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029046272, 1029144575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029144576, 1029160959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029177344, 1029242879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029242880, 1029308415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029308416, 1029439487, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029439488, 1029570559, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029570560, 1029636095, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029636096, 1029668863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029668864, 1029701631, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1029701632, 1030750207, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1030750208, 1031798783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1031798784, 1033982787, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1033982788, 1033982788, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1033982789, 1034001207, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1034001208, 1034001215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1034001216, 1035993087, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1035993088, 1037565951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1037565952, 1037591499, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1037591500, 1037591503, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1037591504, 1038614527, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1038614528, 1039007743, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039007744, 1039138815, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039138816, 1039400959, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039400960, 1039466495, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039466496, 1039499263, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039532032, 1039597567, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039597568, 1039613951, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039613952, 1039638527, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039654912, 1039663103, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1039663104, 1040187391, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040187392, 1040252927, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040252928, 1040318463, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040318464, 1040383999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040384000, 1040392191, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040392192, 1040392447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040392448, 1040399359, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040399360, 1040400127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040400128, 1040400383, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040400384, 1040416767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040416768, 1040424959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040424960, 1040433151, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040433152, 1040449535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040449536, 1040449791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040449792, 1040450047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040450048, 1040457727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040457728, 1040465919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040465920, 1040466943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040466944, 1040466959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040466960, 1040467071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467072, 1040467087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467088, 1040467103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467104, 1040467135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467136, 1040467583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467584, 1040467743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467744, 1040467759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467760, 1040467823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467824, 1040467935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467936, 1040467951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467952, 1040467967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040467968, 1040468255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468256, 1040468263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468264, 1040468287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468288, 1040468335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468336, 1040468351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468352, 1040468415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468416, 1040468479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468480, 1040468735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468736, 1040468767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468768, 1040468799, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468800, 1040468847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468848, 1040468863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468864, 1040468991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040468992, 1040469023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469024, 1040469279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469280, 1040469311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469312, 1040469343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469344, 1040469375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469376, 1040469567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469568, 1040469631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469632, 1040469887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469888, 1040469903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469904, 1040469927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469928, 1040469967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040469968, 1040469999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040470000, 1040470527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040470528, 1040471295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040471296, 1040471487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040471488, 1040471711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040471712, 1040471743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040471744, 1040471775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040471776, 1040472991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040472992, 1040473343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040473344, 1040473599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040473600, 1040474111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040474112, 1040482303, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040482304, 1040515071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040515072, 1040547839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040547840, 1040580607, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040580608, 1040711679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040711680, 1040719871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040719872, 1040728063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040728064, 1040736255, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040736256, 1040744447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040744448, 1040777215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040777216, 1040842751, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040842752, 1040843007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040843008, 1040973823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040973824, 1040982015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040982016, 1040982319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040982320, 1040982335, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040982336, 1040990207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1040998400, 1041006591, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041006592, 1041039359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041039360, 1041051647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041051648, 1041051839, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041051840, 1041052159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041052160, 1041052175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041052176, 1041072127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041072128, 1041080319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041080320, 1041088511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041088512, 1041096703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041096704, 1041235967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041235968, 1041244159, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041244160, 1041252351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041252352, 1041252863, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041252864, 1041253119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041253120, 1041253375, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041253376, 1041268735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041268736, 1041301503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041301504, 1041367039, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041367040, 1041498111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041498112, 1041563647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041563648, 1041596415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041596416, 1041629183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041629184, 1041694719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041694720, 1041694847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041694848, 1041694863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041694864, 1041694927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041694928, 1041694975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041694976, 1041695279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695280, 1041695295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695296, 1041695455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695456, 1041695487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695488, 1041695551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695552, 1041695567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695568, 1041695615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695616, 1041695703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695704, 1041695711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041695712, 1041696023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041696024, 1041696415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041696416, 1041696431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041696432, 1041697151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697152, 1041697159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697160, 1041697183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697184, 1041697199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697200, 1041697391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697392, 1041697407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697408, 1041697699, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697700, 1041697703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697704, 1041697815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697816, 1041697823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697824, 1041697855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697856, 1041697863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697864, 1041697895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697896, 1041697903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697904, 1041697919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697920, 1041697983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041697984, 1041698127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698128, 1041698143, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698144, 1041698247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698248, 1041698255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698256, 1041698263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698264, 1041698271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698272, 1041698287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698288, 1041698303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698304, 1041698591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698592, 1041698607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698608, 1041698647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698648, 1041698663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698664, 1041698807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698808, 1041698815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041698816, 1041699263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041699264, 1041699271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041699272, 1041699287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041699288, 1041699295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041699296, 1041699767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041699768, 1041699775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041699776, 1041701119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701120, 1041701167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701168, 1041701175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701176, 1041701231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701232, 1041701239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701240, 1041701631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701632, 1041701639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701640, 1041701647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701648, 1041701831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701832, 1041701839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701840, 1041701863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701864, 1041701871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701872, 1041701927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701928, 1041701959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041701960, 1041702111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702112, 1041702143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702144, 1041702183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702184, 1041702191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702192, 1041702303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702304, 1041702311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702312, 1041702319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702320, 1041702335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702336, 1041702351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702352, 1041702655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041702656, 1041703487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041703488, 1041703503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041703504, 1041703567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041703568, 1041703583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041703584, 1041703951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041703952, 1041703967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041703968, 1041703991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041703992, 1041703999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704000, 1041704015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704016, 1041704039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704040, 1041704111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704112, 1041704143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704144, 1041704159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704160, 1041704175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704176, 1041704255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704256, 1041704271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704272, 1041704303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704304, 1041704335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704336, 1041704399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704400, 1041704431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704432, 1041704447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704448, 1041704455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704456, 1041704463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704464, 1041704487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704488, 1041704503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704504, 1041704559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704560, 1041704607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704608, 1041704623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704624, 1041704647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704648, 1041704655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704656, 1041704671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704672, 1041704687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704688, 1041704751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704752, 1041704759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704760, 1041704807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704808, 1041704815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704816, 1041704823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704824, 1041704863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704864, 1041704879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704880, 1041704887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704888, 1041704911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704912, 1041704943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041704944, 1041705255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705256, 1041705279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705280, 1041705303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705304, 1041705311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705312, 1041705343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705344, 1041705367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705368, 1041705391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705392, 1041705439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705440, 1041705447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705448, 1041705463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705464, 1041705471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705472, 1041705487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705488, 1041705527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705528, 1041705535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705536, 1041705599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705600, 1041705663, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705664, 1041705727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705728, 1041705807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705808, 1041705871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705872, 1041705887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705888, 1041705895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705896, 1041705903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705904, 1041705911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705912, 1041705919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705920, 1041705951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705952, 1041705983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041705984, 1041705999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706000, 1041706007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706008, 1041706047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706048, 1041706079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706080, 1041706087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706088, 1041706095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706096, 1041706111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706112, 1041706143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706144, 1041706207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706208, 1041706223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706224, 1041706239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706240, 1041706287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706288, 1041706319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706320, 1041706343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706344, 1041706383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706384, 1041706399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706400, 1041706447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706448, 1041706455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706456, 1041706471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706472, 1041706487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706488, 1041706495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706496, 1041706511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706512, 1041706535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706536, 1041706543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706544, 1041706559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706560, 1041706575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706576, 1041706583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706584, 1041706591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706592, 1041706623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706624, 1041706631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706632, 1041706783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706784, 1041706799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706800, 1041706815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706816, 1041706823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706824, 1041706831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706832, 1041706847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706848, 1041706871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706872, 1041706879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706880, 1041706951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706952, 1041706975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706976, 1041706983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706984, 1041706991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041706992, 1041706999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707000, 1041707007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707008, 1041707271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707272, 1041707279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707280, 1041707311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707312, 1041707319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707320, 1041707359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707360, 1041707367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707368, 1041707391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707392, 1041707415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707416, 1041707439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707440, 1041707463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707464, 1041707487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707488, 1041707495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707496, 1041707615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707616, 1041707631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707632, 1041707647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707648, 1041707655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707656, 1041707687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707688, 1041707695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707696, 1041707711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707712, 1041707743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707744, 1041707831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707832, 1041707839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707840, 1041707871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707872, 1041707887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707888, 1041707895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707896, 1041707903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041707904, 1041707999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708000, 1041708007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708008, 1041708295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708296, 1041708303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708304, 1041708311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708312, 1041708319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708320, 1041708335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708336, 1041708351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708352, 1041708367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708368, 1041708383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708384, 1041708415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708416, 1041708431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708432, 1041708479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708480, 1041708487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708488, 1041708503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708504, 1041708511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708512, 1041708551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708552, 1041708559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708560, 1041708607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708608, 1041708615, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708616, 1041708671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708672, 1041708687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708688, 1041708703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708704, 1041708735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708736, 1041708799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708800, 1041708815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708816, 1041708831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708832, 1041708839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708840, 1041708847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708848, 1041708855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708856, 1041708927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708928, 1041708943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708944, 1041708991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041708992, 1041708999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709000, 1041709023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709024, 1041709055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709056, 1041709351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709352, 1041709359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709360, 1041709367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709368, 1041709375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709376, 1041709463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709464, 1041709471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709472, 1041709767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709768, 1041709775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709776, 1041709823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709824, 1041709831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709832, 1041709919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709920, 1041709927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709928, 1041709935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709936, 1041709943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709944, 1041709951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709952, 1041709983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709984, 1041709991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041709992, 1041709999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710000, 1041710007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710008, 1041710015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710016, 1041710047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710048, 1041710055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710056, 1041710063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710064, 1041710079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710080, 1041710351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710352, 1041710359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710360, 1041710367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710368, 1041710383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710384, 1041710391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710392, 1041710407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710408, 1041710423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710424, 1041710431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710432, 1041710439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710440, 1041710447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710448, 1041710479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710480, 1041710487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710488, 1041710503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710504, 1041710511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710512, 1041710535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710536, 1041710543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710544, 1041710559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710560, 1041710567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710568, 1041710599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710600, 1041710623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710624, 1041710687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710688, 1041710695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710696, 1041710703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710704, 1041710711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710712, 1041710735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710736, 1041710743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710744, 1041710783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710784, 1041710791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710792, 1041710807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710808, 1041710815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041710816, 1041711367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711368, 1041711375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711376, 1041711471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711472, 1041711487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711488, 1041711535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711536, 1041711567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711568, 1041711871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711872, 1041711903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711904, 1041711911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711912, 1041711927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711928, 1041711935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711936, 1041711951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711952, 1041711967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711968, 1041711983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041711984, 1041712063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712064, 1041712095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712096, 1041712439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712440, 1041712463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712464, 1041712511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712512, 1041712527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712528, 1041712623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712624, 1041712631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712632, 1041712927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712928, 1041712943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712944, 1041712991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041712992, 1041712999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713000, 1041713007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713008, 1041713015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713016, 1041713023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713024, 1041713031, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713032, 1041713079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713080, 1041713087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713088, 1041713663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713664, 1041713695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713696, 1041713791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713792, 1041713799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713800, 1041713823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713824, 1041713831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713832, 1041713839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713840, 1041713855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713856, 1041713871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713872, 1041713887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713888, 1041713991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041713992, 1041713999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714000, 1041714055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714056, 1041714063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714064, 1041714095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714096, 1041714103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714104, 1041714431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714432, 1041714439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714440, 1041714447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714448, 1041714455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714456, 1041714511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714512, 1041714527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714528, 1041714543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714544, 1041714591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714592, 1041714607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714608, 1041714615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714616, 1041714623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714624, 1041714687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714688, 1041714711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714712, 1041714727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714728, 1041714767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714768, 1041714783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714784, 1041714815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714816, 1041714831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714832, 1041714839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714840, 1041714847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714848, 1041714855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714856, 1041714879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714880, 1041714911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714912, 1041714919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714920, 1041714975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041714976, 1041715039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715040, 1041715055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715056, 1041715071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715072, 1041715079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715080, 1041715087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715088, 1041715103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715104, 1041715111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715112, 1041715119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715120, 1041715143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715144, 1041715151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715152, 1041715167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715168, 1041715503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715504, 1041715535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715536, 1041715551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715552, 1041715567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715568, 1041715599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715600, 1041715615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715616, 1041715631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715632, 1041715647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715648, 1041715711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715712, 1041715727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715728, 1041715743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715744, 1041715775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715776, 1041715791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715792, 1041715823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715824, 1041715863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715864, 1041715911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715912, 1041715943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715944, 1041715951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715952, 1041715967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041715968, 1041716015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716016, 1041716039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716040, 1041716047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716048, 1041716055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716056, 1041716063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716064, 1041716111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716112, 1041716223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716224, 1041716239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716240, 1041716255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716256, 1041716303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716304, 1041716319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716320, 1041716335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716336, 1041716343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716344, 1041716383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716384, 1041716399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716400, 1041716407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716408, 1041716415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716416, 1041716487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716488, 1041716527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716528, 1041716559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716560, 1041716599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716600, 1041716671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716672, 1041716703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716704, 1041716991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041716992, 1041717007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717008, 1041717071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717072, 1041717103, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717104, 1041717111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717112, 1041717119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717120, 1041717199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717200, 1041717247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717248, 1041717519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717520, 1041717527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717528, 1041717559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717560, 1041717567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041717568, 1041718023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718024, 1041718031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718032, 1041718055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718056, 1041718063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718064, 1041718079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718080, 1041718095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718096, 1041718103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718104, 1041718111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718112, 1041718143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718144, 1041718159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718160, 1041718191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718192, 1041718215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718216, 1041718231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718232, 1041718255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718256, 1041718271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718272, 1041718311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718312, 1041718319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718320, 1041718327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718328, 1041718335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718336, 1041718351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718352, 1041718407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718408, 1041718455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718456, 1041718463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718464, 1041718479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718480, 1041718495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718496, 1041718503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718504, 1041718591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718592, 1041718607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718608, 1041718623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718624, 1041718639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718640, 1041718663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718664, 1041718671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718672, 1041718687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718688, 1041718703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718704, 1041718783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718784, 1041718799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718800, 1041718815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718816, 1041718831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718832, 1041718879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718880, 1041718911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718912, 1041718935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718936, 1041718943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041718944, 1041718999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719000, 1041719007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719008, 1041719203, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719204, 1041719207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719208, 1041719224, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719225, 1041719227, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719228, 1041719228, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719229, 1041719231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719232, 1041719272, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719273, 1041719279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719280, 1041719391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719392, 1041719407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719408, 1041719455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719456, 1041719487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719488, 1041719551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719552, 1041719631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719632, 1041719647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719648, 1041719663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719664, 1041719679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719680, 1041719711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719712, 1041719743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719744, 1041719759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719760, 1041719775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719776, 1041719855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719856, 1041719879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719880, 1041719903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719904, 1041719919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719920, 1041719935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719936, 1041719951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719952, 1041719967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041719968, 1041720015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720016, 1041720031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720032, 1041720079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720080, 1041720087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720088, 1041720351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720352, 1041720367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720368, 1041720519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720520, 1041720527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720528, 1041720535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720536, 1041720543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720544, 1041720551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720552, 1041720559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720560, 1041720567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720568, 1041720607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720608, 1041720615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720616, 1041720639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720640, 1041720687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720688, 1041720703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720704, 1041720719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720720, 1041720735, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720736, 1041720751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720752, 1041720767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720768, 1041720831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720832, 1041720847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720848, 1041720895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720896, 1041720927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720928, 1041720959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041720960, 1041721087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041721088, 1041721727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041721728, 1041721855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041721856, 1041722119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722120, 1041722127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722128, 1041722135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722136, 1041722175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722176, 1041722271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722272, 1041722279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722280, 1041722303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722304, 1041722367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722368, 1041722375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722376, 1041722383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722384, 1041722391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722392, 1041722399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722400, 1041722495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722496, 1041722511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722512, 1041722535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722536, 1041722551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722552, 1041722567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722568, 1041722575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722576, 1041722583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722584, 1041722623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722624, 1041722879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722880, 1041722887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722888, 1041722895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722896, 1041722903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722904, 1041722927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722928, 1041722935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722936, 1041722959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041722960, 1041723007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723008, 1041723031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723032, 1041723135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723136, 1041723167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723168, 1041723175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723176, 1041723191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723192, 1041723199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723200, 1041723207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723208, 1041723215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723216, 1041723295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723296, 1041723391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723392, 1041723743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723744, 1041723903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041723904, 1041724591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041724592, 1041724607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041724608, 1041724631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041724632, 1041724927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041724928, 1041724991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041724992, 1041725023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725024, 1041725031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725032, 1041725039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725040, 1041725183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725184, 1041725215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725216, 1041725255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725256, 1041725271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725272, 1041725983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041725984, 1041725999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726000, 1041726127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726128, 1041726151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726152, 1041726159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726160, 1041726167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726168, 1041726463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726464, 1041726471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726472, 1041726479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726480, 1041726511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726512, 1041726527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726528, 1041726543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726544, 1041726559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726560, 1041726591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726592, 1041726671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726672, 1041726687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041726688, 1041727743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041727744, 1041727999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728000, 1041728063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728064, 1041728095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728096, 1041728111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728112, 1041728127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728128, 1041728255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728256, 1041728511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728512, 1041728887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728888, 1041728895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041728896, 1041729279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729280, 1041729391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729392, 1041729431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729432, 1041729463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729464, 1041729519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729520, 1041729535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729536, 1041729561, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729562, 1041729564, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729565, 1041729566, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729567, 1041729567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729568, 1041729663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729664, 1041729791, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041729792, 1041730087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730088, 1041730095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730096, 1041730175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730176, 1041730183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730184, 1041730239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730240, 1041730247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730248, 1041730603, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730604, 1041730607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041730608, 1041731967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041731968, 1041732031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732032, 1041732055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732056, 1041732063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732064, 1041732119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732120, 1041732143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732144, 1041732159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732160, 1041732191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732192, 1041732255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732256, 1041732295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732296, 1041732351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732352, 1041732359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732360, 1041732479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732480, 1041732511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732512, 1041732863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732864, 1041732871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732872, 1041732879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732880, 1041732927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732928, 1041732959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732960, 1041732967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732968, 1041732991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041732992, 1041733111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041733112, 1041733375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041733376, 1041733503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041733504, 1041733887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041733888, 1041734143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041734144, 1041734911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041734912, 1041735007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735008, 1041735055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735056, 1041735087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735088, 1041735119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735120, 1041735135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735136, 1041735423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735424, 1041735487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735488, 1041735495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735496, 1041735503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735504, 1041735511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735512, 1041735559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735560, 1041735615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735616, 1041735679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041735680, 1041736191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736192, 1041736199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736200, 1041736255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736256, 1041736263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736264, 1041736367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736368, 1041736391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736392, 1041736423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736424, 1041736431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736432, 1041736439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736440, 1041736463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736464, 1041736503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736504, 1041736511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736512, 1041736527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736528, 1041736535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736536, 1041736543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736544, 1041736551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736552, 1041736567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736568, 1041736599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736600, 1041736607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736608, 1041736631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736632, 1041736671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736672, 1041736703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041736704, 1041737023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737024, 1041737031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737032, 1041737039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737040, 1041737047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737048, 1041737063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737064, 1041737119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737120, 1041737127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737128, 1041737135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737136, 1041737143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737144, 1041737151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737152, 1041737247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737248, 1041737279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737280, 1041737295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737296, 1041737303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737304, 1041737399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737400, 1041737423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737424, 1041737455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737456, 1041737471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737472, 1041737503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737504, 1041737535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737536, 1041737607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737608, 1041737615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737616, 1041737623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737624, 1041737631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737632, 1041737647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737648, 1041737663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737664, 1041737671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737672, 1041737679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737680, 1041737727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737728, 1041737759, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737760, 1041737775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737776, 1041737807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737808, 1041737815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737816, 1041737839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737840, 1041737855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737856, 1041737863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737864, 1041737871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737872, 1041737879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737880, 1041737911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737912, 1041737935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041737936, 1041738503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738504, 1041738511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738512, 1041738519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738520, 1041738559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738560, 1041738567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738568, 1041738575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738576, 1041738583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738584, 1041738591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738592, 1041738599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738600, 1041738607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738608, 1041738703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738704, 1041738711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738712, 1041738719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738720, 1041738743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041738744, 1041739031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739032, 1041739047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739048, 1041739055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739056, 1041739063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739064, 1041739071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739072, 1041739095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739096, 1041739119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739120, 1041739143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739144, 1041739151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739152, 1041739159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739160, 1041739167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739168, 1041739175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739176, 1041739183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739184, 1041739199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739200, 1041739215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739216, 1041739239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739240, 1041739287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739288, 1041739303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739304, 1041739391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739392, 1041739423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739424, 1041739463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739464, 1041739471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739472, 1041739487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739488, 1041739503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739504, 1041739519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739520, 1041739535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739536, 1041739743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739744, 1041739751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041739752, 1041740031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740032, 1041740039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740040, 1041740647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740648, 1041740655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740656, 1041740687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740688, 1041740703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740704, 1041740711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740712, 1041740719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740720, 1041740727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740728, 1041740735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740736, 1041740759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740760, 1041740767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740768, 1041740839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740840, 1041740847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740848, 1041740991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041740992, 1041741103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741104, 1041741135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741136, 1041741143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741144, 1041741231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741232, 1041741247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741248, 1041741255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741256, 1041741311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741312, 1041741607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741608, 1041741615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741616, 1041741631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741632, 1041741647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741648, 1041741671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741672, 1041741679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741680, 1041741695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741696, 1041741823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041741824, 1041742335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742336, 1041742343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742344, 1041742359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742360, 1041742367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742368, 1041742375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742376, 1041742423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742424, 1041742471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742472, 1041742479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742480, 1041742511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742512, 1041742591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041742592, 1041743111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743112, 1041743119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743120, 1041743135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743136, 1041743143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743144, 1041743167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743168, 1041743199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743200, 1041743215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743216, 1041743223, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743224, 1041743615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743616, 1041743647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743648, 1041743671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743672, 1041743679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743680, 1041743703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743704, 1041743711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743712, 1041743719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743720, 1041743727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743728, 1041743743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743744, 1041743759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743760, 1041743767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743768, 1041743775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743776, 1041743831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743832, 1041743855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743856, 1041743863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743864, 1041743871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041743872, 1041744311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744312, 1041744319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744320, 1041744599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744600, 1041744607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744608, 1041744639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744640, 1041744895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744896, 1041744919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744920, 1041744927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744928, 1041744943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744944, 1041744951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744952, 1041744991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041744992, 1041745031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745032, 1041745095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745096, 1041745103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745104, 1041745127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745128, 1041745135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745136, 1041745175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745176, 1041745191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745192, 1041745327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745328, 1041745343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745344, 1041745359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745360, 1041745383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745384, 1041745415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745416, 1041745423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745424, 1041745447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745448, 1041745471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745472, 1041745479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745480, 1041745487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745488, 1041745495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745496, 1041745535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745536, 1041745543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745544, 1041745551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745552, 1041745623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745624, 1041745631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745632, 1041745639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745640, 1041745647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745648, 1041745655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745656, 1041745663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745664, 1041745671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745672, 1041745687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745688, 1041745751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745752, 1041745767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745768, 1041745823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745824, 1041745863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745864, 1041745903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745904, 1041745935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745936, 1041745967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041745968, 1041746015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746016, 1041746031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746032, 1041746039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746040, 1041746079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746080, 1041746095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746096, 1041746111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746112, 1041746119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746120, 1041746127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746128, 1041746135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746136, 1041746687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746688, 1041746727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746728, 1041746743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746744, 1041746751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746752, 1041746815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746816, 1041746831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746832, 1041746879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746880, 1041746887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746888, 1041746903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746904, 1041746927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041746928, 1041747071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041747072, 1041747455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041747456, 1041747463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041747464, 1041747471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041747472, 1041747503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041747504, 1041747519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041747520, 1041750799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750800, 1041750807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750808, 1041750839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750840, 1041750847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750848, 1041750895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750896, 1041750911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750912, 1041750959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750960, 1041750967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041750968, 1041751023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751024, 1041751039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751040, 1041751311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751312, 1041751327, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751328, 1041751343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751344, 1041751351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751352, 1041751439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751440, 1041751447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751448, 1041751623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751624, 1041751631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751632, 1041751639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751640, 1041751647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751648, 1041751687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751688, 1041751695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751696, 1041751711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751712, 1041751719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751720, 1041751743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751744, 1041751751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751752, 1041751767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751768, 1041751775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041751776, 1041753343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041753344, 1041754111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041754112, 1041754143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041754144, 1041754151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041754152, 1041755391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041755392, 1041755399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041755400, 1041756463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756464, 1041756471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756472, 1041756599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756600, 1041756607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756608, 1041756719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756720, 1041756727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756728, 1041756919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756920, 1041756927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041756928, 1041757087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041757088, 1041757111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041757112, 1041757175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041757176, 1041757179, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041757180, 1041757663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041757664, 1041757671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041757672, 1041758207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041758208, 1041760255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041760256, 1041768447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041768448, 1041776639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041776640, 1041784831, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041784832, 1041793023, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041793024, 1041825791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041825792, 1041842175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041842176, 1041891327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041891328, 1041921535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041921536, 1041921727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041921728, 1041945087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041945088, 1041945151, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041945152, 1041958463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041958464, 1041958527, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041958528, 1041959423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041959424, 1041959679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1041959680, 1042022399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042022400, 1042087935, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042087936, 1042120703, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042120704, 1042153471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042153472, 1042284543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042284544, 1042292735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042292736, 1042293503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042293504, 1042293631, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042293632, 1042296575, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042296576, 1042296831, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042296832, 1042297087, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042297088, 1042297215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042297216, 1042297319, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042297320, 1042297327, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042297328, 1042297599, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042297600, 1042298111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042298112, 1042298239, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042298240, 1042298279, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042298280, 1042298287, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042298288, 1042298303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042298304, 1042298335, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042298336, 1042298351, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042298352, 1042299135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042299136, 1042299391, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042299392, 1042300159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300160, 1042300175, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300176, 1042300223, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300224, 1042300255, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300256, 1042300287, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300288, 1042300351, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300352, 1042300383, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300384, 1042300415, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300416, 1042300479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300480, 1042300495, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300496, 1042300543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300544, 1042300639, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300640, 1042300647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300648, 1042300655, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300656, 1042300671, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300672, 1042300799, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300800, 1042300863, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300864, 1042300895, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300896, 1042300903, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300904, 1042300911, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300912, 1042300919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300920, 1042300927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042300928, 1042317311, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042317312, 1042350079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042350080, 1042415615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042415616, 1042546687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042546688, 1042677759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042677760, 1042743295, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042743296, 1042808831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042808832, 1042817023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042817024, 1042825215, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042825216, 1042833407, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042833408, 1042841599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042841600, 1042874367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042874368, 1042882559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042882560, 1042882815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042882816, 1042890751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042890752, 1042890783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042890784, 1042890847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042890848, 1042890879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042890880, 1042890959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042890960, 1042891263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042891264, 1042891775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042891776, 1042891839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042891840, 1042891951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042891952, 1042891967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042891968, 1042892287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892288, 1042892319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892320, 1042892383, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892384, 1042892447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892448, 1042892479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892480, 1042892511, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892512, 1042892863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892864, 1042892927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042892928, 1042893055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042893056, 1042893087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042893088, 1042893119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042893120, 1042893135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042893136, 1042893143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042893144, 1042893183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042893184, 1042893311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042893312, 1042894079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042894080, 1042894143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042894144, 1042894175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042894176, 1042894335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042894336, 1042894463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042894464, 1042900479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042900480, 1042900735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042900736, 1042907135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042907136, 1042915391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042915392, 1042939903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1042939904, 1043070975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043070976, 1043079167, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043079168, 1043087359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043087360, 1043095551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043095552, 1043103743, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043103744, 1043120127, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043120128, 1043136511, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043136512, 1043202047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043202048, 1043333119, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043333120, 1043341311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043341312, 1043349503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043349504, 1043350587, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043350588, 1043350591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043350592, 1043357695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043357696, 1043365887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043365888, 1043398655, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043398656, 1043464191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043464192, 1043472383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043472384, 1043480575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043480576, 1043488767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043488768, 1043496959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043496960, 1043505151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043505152, 1043513343, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043513344, 1043516415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043516416, 1043517183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043517184, 1043518719, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043518720, 1043529727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043529728, 1043595263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043595264, 1043600639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043600640, 1043600895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043600896, 1043602391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043602392, 1043602399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043602400, 1043603455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043603456, 1043603711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043603712, 1043607679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043607680, 1043607715, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043607716, 1043609279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043609280, 1043609343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043609344, 1043609463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043609464, 1043609471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043609472, 1043619839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043619840, 1043620095, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043620096, 1043621503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043621504, 1043621567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043621568, 1043623215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043623216, 1043623231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043623232, 1043624447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043624448, 1043624703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043624704, 1043633663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043633664, 1043633919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043633920, 1043660799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043660800, 1043667583, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043667584, 1043667647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043667648, 1043668351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043668352, 1043668399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043668400, 1043668463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043668464, 1043668471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043668472, 1043693567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043693568, 1043718783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043718784, 1043718815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043718816, 1043791871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043791872, 1043791999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043792000, 1043792127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043792128, 1043793919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043793920, 1043794007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043794008, 1043794047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043794048, 1043794175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043794176, 1043799039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043799040, 1043799151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043799152, 1043799167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043799168, 1043799295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043799296, 1043812479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043812480, 1043812607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043812608, 1043816575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043816576, 1043816703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043816704, 1043832831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043832832, 1043857407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043857408, 1043890175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043890176, 1043891775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043891776, 1043891839, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043891840, 1043892223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043892224, 1043892239, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043892240, 1043892255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043892256, 1043892287, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043892288, 1043892479, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043892480, 1043892735, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043892736, 1043892991, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043892992, 1043893247, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893248, 1043893311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893312, 1043893375, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893376, 1043893439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893440, 1043893471, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893472, 1043893567, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893568, 1043893583, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893584, 1043893759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043893760, 1043894015, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894016, 1043894271, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894272, 1043894559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894560, 1043894591, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894592, 1043894751, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894752, 1043894783, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894784, 1043894847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894848, 1043894879, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043894880, 1043895039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043895040, 1043895167, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043895168, 1043895983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043895984, 1043895999, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043896000, 1043896063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043896064, 1043896319, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043896320, 1043896575, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043896576, 1043897343, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043897344, 1043897855, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043897856, 1043898367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043898368, 1043898879, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043898880, 1043899647, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043899648, 1043900159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043900160, 1043900415, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043900416, 1043905023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043905024, 1043905279, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043905280, 1043905535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043905536, 1043906559, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043906560, 1043907071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043907072, 1043907583, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043907584, 1043910399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043910400, 1043910655, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043910656, 1043912447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043912448, 1043912703, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043912704, 1043913215, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043913216, 1043913471, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043913472, 1043914751, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043914752, 1043914880, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043914881, 1043916799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043916800, 1043917055, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043917056, 1043917311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043917312, 1043917567, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043917568, 1043917823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043917824, 1043918079, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043918080, 1043918847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043918848, 1043919871, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043919872, 1043920895, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043920896, 1043921919, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043921920, 1043922943, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043922944, 1043988479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043988480, 1043999199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043999200, 1043999207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1043999208, 1044003355, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044003356, 1044003359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044003360, 1044013055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044013056, 1044013135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044013136, 1044013143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044013144, 1044013991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044013992, 1044013999, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044014000, 1044014111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044014112, 1044014119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044014120, 1044015487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044015488, 1044015503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044015504, 1044015531, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044015532, 1044015535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044015536, 1044016799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044016800, 1044016895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044016896, 1044017311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044017312, 1044017407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044017408, 1044017663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044017664, 1044018047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044018048, 1044018175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044018176, 1044019199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019200, 1044019319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019320, 1044019323, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019324, 1044019383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019384, 1044019387, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019388, 1044019695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019696, 1044019699, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019700, 1044019995, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044019996, 1044019999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020000, 1044020075, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020076, 1044020223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020224, 1044020247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020248, 1044020255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020256, 1044020263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020264, 1044020311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020312, 1044020559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020560, 1044020575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020576, 1044020583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020584, 1044020671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020672, 1044020735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044020736, 1044045887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044045888, 1044046079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044046080, 1044046223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044046224, 1044046231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044046232, 1044046239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044046240, 1044046319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044046320, 1044046335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044046336, 1044046847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044046848, 1044051971, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044051972, 1044052031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052032, 1044052039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052040, 1044052063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052064, 1044052067, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052068, 1044052107, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052108, 1044052111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052112, 1044052175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052176, 1044052991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044052992, 1044053151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044053152, 1044106239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044106240, 1044106367, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044106368, 1044106495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044106496, 1044106751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044106752, 1044117503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044117504, 1044117543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044117544, 1044117567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044117568, 1044117911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044117912, 1044117919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044117920, 1044118207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044118208, 1044118215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044118216, 1044118231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044118232, 1044118239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044118240, 1044118439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044118440, 1044118447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044118448, 1044118527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044118528, 1044119551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044119552, 1044152319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044152320, 1044185087, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044185088, 1044193279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044193280, 1044201471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044201472, 1044217855, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044217856, 1044226047, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044226048, 1044234239, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044234240, 1044250623, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044250624, 1044251391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044251392, 1044251647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044251648, 1044252415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044252416, 1044252927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044252928, 1044253439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044253440, 1044253695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044253696, 1044254463, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044254464, 1044254975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044254976, 1044255487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044255488, 1044255999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044256000, 1044256511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044256512, 1044256767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044256768, 1044257535, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044257536, 1044257791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044257792, 1044258559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044258560, 1044259071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044259072, 1044259583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044259584, 1044260095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044260096, 1044261631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044261632, 1044262143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044262144, 1044262399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044262400, 1044263167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044263168, 1044263423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044263424, 1044264191, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044264192, 1044264447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044264448, 1044265215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044265216, 1044265471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044265472, 1044265983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044265984, 1044266751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044266752, 1044267519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044267520, 1044269567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044269568, 1044270079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044270080, 1044271615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044271616, 1044272127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044272128, 1044272383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044272384, 1044272895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044272896, 1044273151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044273152, 1044273407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044273408, 1044273663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044273664, 1044273919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044273920, 1044274175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044274176, 1044283391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044283392, 1044316159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044316160, 1044332543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044332544, 1044348927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044348928, 1044365311, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044365312, 1044381695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044381696, 1044383999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044384000, 1044384255, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044384256, 1044384511, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044384512, 1044384767, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044384768, 1044389887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044389888, 1044398079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044398080, 1044414463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044414464, 1044447231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044447232, 1044451583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044451584, 1044451839, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044451840, 1044453183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044453184, 1044453263, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044453264, 1044454399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454400, 1044454415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454416, 1044454423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454424, 1044454427, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454428, 1044454463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454464, 1044454495, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454496, 1044454511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454512, 1044454559, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454560, 1044454583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454584, 1044454655, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454656, 1044454911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044454912, 1044455423, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044455424, 1044463615, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044463616, 1044479999, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044480000, 1044488191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044488192, 1044496383, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044496384, 1044512767, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044512768, 1044515839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044515840, 1044578303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044578304, 1044586495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044586496, 1044587007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044587008, 1044587519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044587520, 1044587775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044587776, 1044588031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044588032, 1044588287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044588288, 1044588543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044588544, 1044589567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044589568, 1044590463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044590464, 1044590527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044590528, 1044590591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044590592, 1044590623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044590624, 1044591871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044591872, 1044592127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592128, 1044592143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592144, 1044592175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592176, 1044592191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592192, 1044592319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592320, 1044592639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592640, 1044592655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592656, 1044592831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044592832, 1044594047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044594048, 1044627967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044627968, 1044628479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044628480, 1044628991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044628992, 1044629055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044629056, 1044629503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044629504, 1044629759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044629760, 1044630015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044630016, 1044630783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044630784, 1044631551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044631552, 1044631871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044631872, 1044631951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044631952, 1044631967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044631968, 1044632063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044632064, 1044633855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044633856, 1044634111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044634112, 1044634367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044634368, 1044634623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044634624, 1044634879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044634880, 1044635135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044635136, 1044635391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044635392, 1044636159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044636160, 1044638207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638208, 1044638223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638224, 1044638239, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638240, 1044638271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638272, 1044638335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638336, 1044638463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638464, 1044638719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638720, 1044638975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044638976, 1044639231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044639232, 1044639743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044639744, 1044643327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044643328, 1044643839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044643840, 1044652031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044652032, 1044660223, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044660224, 1044664895, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044664896, 1044664959, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044664960, 1044668415, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044668416, 1044676607, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044676608, 1044684799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044684800, 1044692991, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044692992, 1044701183, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044701184, 1044709375, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044709376, 1044717567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044717568, 1044742143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044742144, 1044750335, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044750336, 1044758527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044758528, 1044774911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044774912, 1044775359, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044775360, 1044775367, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044775368, 1044776175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044776176, 1044776191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044776192, 1044840447, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044840448, 1044905983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044905984, 1044908031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044908032, 1044909055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044909056, 1044914175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044914176, 1044916735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044916736, 1044917247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917248, 1044917279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917280, 1044917295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917296, 1044917311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917312, 1044917343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917344, 1044917359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917360, 1044917503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917504, 1044917759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917760, 1044917823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044917824, 1044918271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044918272, 1044918287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044918288, 1044919295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044919296, 1044920191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044920192, 1044920319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044920320, 1044921343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044921344, 1044922367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044922368, 1044930559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044930560, 1044930823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044930824, 1044930943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044930944, 1044931103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044931104, 1044931107, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044931108, 1044931263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044931264, 1044931295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044931296, 1044931463, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044931464, 1044931471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044931472, 1044932131, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932132, 1044932191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932192, 1044932399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932400, 1044932407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932408, 1044932503, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932504, 1044932543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932544, 1044932675, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932676, 1044932679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932680, 1044932703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932704, 1044932707, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932708, 1044932807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932808, 1044932815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044932816, 1044933843, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044933844, 1044933847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044933848, 1044934311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044934312, 1044934319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044934320, 1044935331, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935332, 1044935343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935344, 1044935351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935352, 1044935359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935360, 1044935391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935392, 1044935423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935424, 1044935487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935488, 1044935679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044935680, 1044936123, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044936124, 1044936127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044936128, 1044936447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044936448, 1044936511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044936512, 1044937183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044937184, 1044937187, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044937188, 1044938519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044938520, 1044938527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044938528, 1044938623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044938624, 1044938655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044938656, 1044938695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044938696, 1044955135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044955136, 1044963327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044963328, 1044971519, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044971520, 1044979711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044979712, 1044986495, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044986496, 1044986623, N'EE', N'Estonia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044986624, 1044987903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1044987904, 1045004287, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045004288, 1045004671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045004672, 1045004751, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045004752, 1045018207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045018208, 1045018231, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045018232, 1045020671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045020672, 1045037055, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045037056, 1045119231, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045119232, 1045119743, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045119744, 1045135359, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045135360, 1045138447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045138448, 1045138463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045138464, 1045168127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045168128, 1045233663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045233664, 1045241855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045241856, 1045250047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045250048, 1045266431, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045266432, 1045274623, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045274624, 1045282815, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045282816, 1045299199, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045299200, 1045302271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045302272, 1045303295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045303296, 1045305855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045305856, 1045307391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045307392, 1045315583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045315584, 1045319679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045323776, 1045364735, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045364736, 1045430271, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045430272, 1045436911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045436912, 1045436919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045436920, 1045446655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045446656, 1045446911, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045446912, 1045447167, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447168, 1045447199, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447200, 1045447223, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447224, 1045447231, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447232, 1045447239, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447240, 1045447295, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447296, 1045447391, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447392, 1045447399, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447400, 1045447423, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447424, 1045447455, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447456, 1045447471, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447472, 1045447559, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447560, 1045447679, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447680, 1045447967, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045447968, 1045447999, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448000, 1045448015, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448016, 1045448031, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448032, 1045448039, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448040, 1045448047, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448048, 1045448079, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448080, 1045448103, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448104, 1045448111, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448112, 1045448159, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448160, 1045448199, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448200, 1045448207, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448208, 1045448231, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448232, 1045448239, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448240, 1045448263, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448264, 1045448271, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448272, 1045448287, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448288, 1045448303, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448304, 1045448311, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448312, 1045448319, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448320, 1045448343, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448344, 1045448351, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448352, 1045448383, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448384, 1045448399, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448400, 1045448407, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448408, 1045448415, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448416, 1045448439, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448440, 1045448703, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448704, 1045448767, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448768, 1045448831, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448832, 1045448959, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045448960, 1045449471, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045449472, 1045449983, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045449984, 1045450751, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045450752, 1045451263, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045451264, 1045451775, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045451776, 1045452031, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452032, 1045452063, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452064, 1045452095, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452096, 1045452111, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452112, 1045452123, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452124, 1045452127, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452128, 1045452159, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452160, 1045452175, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452176, 1045452183, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452184, 1045452255, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452256, 1045452275, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452276, 1045452799, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045452800, 1045453055, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045453056, 1045454847, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045454848, 1045460735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045460736, 1045460991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045460992, 1045461503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045461504, 1045461519, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045461520, 1045461535, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045461536, 1045461599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045461600, 1045461631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045461632, 1045462015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045462016, 1045463039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045463040, 1045471231, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045471232, 1045479423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045479424, 1045487615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045487616, 1045495807, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045495808, 1045692415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045692416, 1045700607, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045700608, 1045708799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045708800, 1045716991, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045716992, 1045725183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045725184, 1045733375, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045733376, 1045741567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045741568, 1045742763, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045742764, 1045742767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045742768, 1045742975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045742976, 1045743103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045743104, 1045743191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045743192, 1045743199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045743200, 1045743247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045743248, 1045743263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045743264, 1045745631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045745632, 1045745647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045745648, 1045745768, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045745769, 1045745879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045745880, 1045745919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045745920, 1045745943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045745944, 1045746079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746080, 1045746175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746176, 1045746431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746432, 1045746443, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746444, 1045746447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746448, 1045746463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746464, 1045746495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746496, 1045746527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746528, 1045746623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746624, 1045746671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045746672, 1045747199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045747200, 1045747455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045747456, 1045747743, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045747744, 1045747775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045747776, 1045748287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045748288, 1045757951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045757952, 1045790719, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045790720, 1045798911, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045798912, 1045807103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045807104, 1045823487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045823488, 1045889023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045889024, 1045921791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045921792, 1045954559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045954560, 1045987327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1045987328, 1046020095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046020096, 1046028287, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046028288, 1046036479, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046036480, 1046052863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046052864, 1046061055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046061056, 1046069247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046069248, 1046085631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046085632, 1046151167, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046151168, 1046216703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046216704, 1046220959, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046220960, 1046220975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046220976, 1046229111, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046229112, 1046229119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046229120, 1046282239, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046282240, 1046290431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046290432, 1046315007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046315008, 1046315519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046315520, 1046316031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046316032, 1046316543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046316544, 1046317055, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046317056, 1046317567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046317568, 1046318079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046318080, 1046318591, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046318592, 1046319103, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046319104, 1046323199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046323200, 1046327151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046327152, 1046327155, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046327156, 1046331383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046331384, 1046331391, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046331392, 1046331903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046331904, 1046332159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046332160, 1046332415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046332416, 1046339583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046339584, 1046340095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046340096, 1046340607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046340608, 1046340863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046340864, 1046341151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046341152, 1046341631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046341632, 1046342143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046342144, 1046342655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046342656, 1046343423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046343424, 1046343935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046343936, 1046347775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046347776, 1046349839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046349840, 1046349847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046349848, 1046352831, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046352832, 1046352847, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046352848, 1046366959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046366960, 1046366975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046366976, 1046366999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046367000, 1046367007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046367008, 1046385103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046385104, 1046385111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046385112, 1046389759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046389760, 1046390783, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046390784, 1046413311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046413312, 1046446079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046446080, 1046479511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479512, 1046479550, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479551, 1046479687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479688, 1046479743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479744, 1046479895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479896, 1046479903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479904, 1046479935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479936, 1046479951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046479952, 1046480475, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046480476, 1046480479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046480480, 1046480543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046480544, 1046480895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046480896, 1046481175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481176, 1046481183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481184, 1046481327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481328, 1046481407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481408, 1046481471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481472, 1046481927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481928, 1046481963, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481964, 1046481967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046481968, 1046482207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046482208, 1046482239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046482240, 1046482335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046482336, 1046482943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046482944, 1046483231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046483232, 1046483471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046483472, 1046483967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046483968, 1046483983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046483984, 1046484351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046484352, 1046484479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046484480, 1046484511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046484512, 1046484607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046484608, 1046484623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046484624, 1046484991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046484992, 1046485023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485024, 1046485031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485032, 1046485127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485128, 1046485135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485136, 1046485159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485160, 1046485167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485168, 1046485279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485280, 1046485287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485288, 1046485367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485368, 1046485375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485376, 1046485495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485496, 1046485543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485544, 1046485631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485632, 1046485639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485640, 1046485647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485648, 1046485663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485664, 1046485759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485760, 1046485791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485792, 1046485823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485824, 1046485855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485856, 1046485991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046485992, 1046485999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046486000, 1046486375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046486376, 1046486383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046486384, 1046486487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046486488, 1046486495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046486496, 1046491391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491392, 1046491399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491400, 1046491423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491424, 1046491431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491432, 1046491591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491592, 1046491599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491600, 1046491711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491712, 1046491727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491728, 1046491743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491744, 1046491775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491776, 1046491839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046491840, 1046492159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492160, 1046492247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492248, 1046492255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492256, 1046492319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492320, 1046492327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492328, 1046492415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492416, 1046492447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492448, 1046492503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492504, 1046492511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492512, 1046492543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492544, 1046492559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492560, 1046492615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492616, 1046492623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492624, 1046492655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492656, 1046492663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492664, 1046492687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492688, 1046492695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492696, 1046492911, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492912, 1046492967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046492968, 1046493071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493072, 1046493087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493088, 1046493095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493096, 1046493103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493104, 1046493175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493176, 1046493183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493184, 1046493391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493392, 1046493471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493472, 1046493479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493480, 1046493511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493512, 1046493519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493520, 1046493535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493536, 1046493551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493552, 1046493575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493576, 1046493583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493584, 1046493695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493696, 1046493951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493952, 1046493983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046493984, 1046494031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494032, 1046494039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494040, 1046494087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494088, 1046494095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494096, 1046494327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494328, 1046494335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494336, 1046494607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494608, 1046494615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494616, 1046494623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494624, 1046494751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494752, 1046494759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494760, 1046494767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494768, 1046494799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494800, 1046494807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494808, 1046494815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494816, 1046494823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494824, 1046494831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494832, 1046494839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494840, 1046494975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046494976, 1046495007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495008, 1046495015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495016, 1046495023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495024, 1046495031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495032, 1046495047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495048, 1046495063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495064, 1046495071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495072, 1046495079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495080, 1046495087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495088, 1046495103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495104, 1046495127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495128, 1046495223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495224, 1046495231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495232, 1046495351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495352, 1046495359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495360, 1046495407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495408, 1046495415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495416, 1046495439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495440, 1046495447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495448, 1046495487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495488, 1046495519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495520, 1046495543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495544, 1046495551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495552, 1046495567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495568, 1046495575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495576, 1046495631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495632, 1046495639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495640, 1046495647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495648, 1046495663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495664, 1046495703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495704, 1046495719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495720, 1046495879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495880, 1046495895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046495896, 1046495999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496000, 1046496047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496048, 1046496127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496128, 1046496135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496136, 1046496151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496152, 1046496159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496160, 1046496191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496192, 1046496215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496216, 1046496231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496232, 1046496239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046496240, 1046497463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497464, 1046497567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497568, 1046497663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497664, 1046497671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497672, 1046497759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497760, 1046497775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497776, 1046497815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497816, 1046497823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497824, 1046497903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497904, 1046497911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046497912, 1046498047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498048, 1046498079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498080, 1046498103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498104, 1046498111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498112, 1046498159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498160, 1046498167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498168, 1046498175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498176, 1046498183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498184, 1046498207, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498208, 1046498215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498216, 1046498239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498240, 1046498255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498256, 1046498263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498264, 1046498271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498272, 1046498279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498280, 1046498295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498296, 1046498359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498360, 1046498367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498368, 1046498455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498456, 1046498591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498592, 1046498607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498608, 1046498615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498616, 1046498631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498632, 1046498639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498640, 1046498655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498656, 1046498663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498664, 1046498679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498680, 1046498687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498688, 1046498719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498720, 1046498727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498728, 1046498819, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046498820, 1046499327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046499328, 1046502847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046502848, 1046502855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046502856, 1046502863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046502864, 1046502951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046502952, 1046502967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046502968, 1046502975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046502976, 1046503015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503016, 1046503023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503024, 1046503135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503136, 1046503143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503144, 1046503167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503168, 1046503207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503208, 1046503303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503304, 1046503319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503320, 1046503327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503328, 1046503351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503352, 1046503615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503616, 1046503679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503680, 1046503807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503808, 1046503935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046503936, 1046504319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504320, 1046504487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504488, 1046504551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504552, 1046504559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504560, 1046504591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504592, 1046504615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504616, 1046504703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504704, 1046504735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504736, 1046504799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504800, 1046504807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504808, 1046504871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504872, 1046504879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504880, 1046504887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504888, 1046504903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504904, 1046504943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504944, 1046504951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504952, 1046504959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046504960, 1046504999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505000, 1046505031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505032, 1046505039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505040, 1046505055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505056, 1046505063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505064, 1046505183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505184, 1046505191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505192, 1046505215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505216, 1046505247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505248, 1046505255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505256, 1046505271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505272, 1046505415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505416, 1046505423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505424, 1046505431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505432, 1046505439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505440, 1046505463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505464, 1046505511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505512, 1046505551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505552, 1046505559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505560, 1046505583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505584, 1046505591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505592, 1046505615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505616, 1046505631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505632, 1046505663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505664, 1046505671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505672, 1046505679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505680, 1046505687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505688, 1046505695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505696, 1046505703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505704, 1046505727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505728, 1046505759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505760, 1046505807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505808, 1046505823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505824, 1046505847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505848, 1046505879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505880, 1046505895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505896, 1046505903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505904, 1046505959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046505960, 1046506015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506016, 1046506039, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506040, 1046506055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506056, 1046506087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506088, 1046506095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506096, 1046506119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506120, 1046506135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506136, 1046506239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506240, 1046506271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506272, 1046506295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506296, 1046506303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506304, 1046506327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506328, 1046506351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506352, 1046506375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506376, 1046506383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506384, 1046506391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506392, 1046506407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506408, 1046506415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506416, 1046506423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506424, 1046506439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506440, 1046506447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506448, 1046506479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506480, 1046506487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506488, 1046506495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506496, 1046506535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506536, 1046506575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506576, 1046506591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506592, 1046506599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506600, 1046506607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506608, 1046506623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506624, 1046506639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506640, 1046506647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506648, 1046506655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506656, 1046506671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506672, 1046506679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506680, 1046506687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506688, 1046506743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506744, 1046506751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506752, 1046506783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506784, 1046506791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506792, 1046506807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506808, 1046506831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506832, 1046506839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506840, 1046506927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506928, 1046506935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506936, 1046506951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506952, 1046506959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506960, 1046506991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046506992, 1046507039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507040, 1046507047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507048, 1046507055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507056, 1046507071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507072, 1046507111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507112, 1046507135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507136, 1046507151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507152, 1046507159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507160, 1046507175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507176, 1046507183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507184, 1046507519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046507520, 1046511615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511616, 1046511647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511648, 1046511695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511696, 1046511719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511720, 1046511727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511728, 1046511815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511816, 1046511847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511848, 1046511863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511864, 1046511871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511872, 1046511903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511904, 1046511919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511920, 1046511927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511928, 1046511935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511936, 1046511967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511968, 1046511975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046511976, 1046512167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512168, 1046512175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512176, 1046512199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512200, 1046512215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512216, 1046512287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512288, 1046512303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512304, 1046512311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512312, 1046512327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512328, 1046512335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512336, 1046512383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512384, 1046512415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512416, 1046512423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512424, 1046512431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512432, 1046512447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512448, 1046512455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512456, 1046512535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512536, 1046512679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512680, 1046512687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512688, 1046512735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512736, 1046512751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512752, 1046512759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512760, 1046512847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512848, 1046512879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512880, 1046512895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512896, 1046512927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512928, 1046512943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512944, 1046512967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512968, 1046512983, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512984, 1046512991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046512992, 1046513023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513024, 1046513031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513032, 1046513039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513040, 1046513047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513048, 1046513055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513056, 1046513063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513064, 1046513079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513080, 1046513111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513112, 1046513127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513128, 1046513263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513264, 1046513271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513272, 1046513287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513288, 1046513295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513296, 1046513303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513304, 1046513327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513328, 1046513343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513344, 1046513367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513368, 1046513375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513376, 1046513391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513392, 1046513439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513440, 1046513455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513456, 1046513759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513760, 1046513767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513768, 1046513783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513784, 1046513791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513792, 1046513799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513800, 1046513831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513832, 1046513847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513848, 1046513863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513864, 1046513871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513872, 1046513879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513880, 1046513895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513896, 1046513911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046513912, 1046514207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046514208, 1046514223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046514224, 1046514239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046514240, 1046514247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046514248, 1046514255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046514256, 1046514279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046514280, 1046524159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046524160, 1046524191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046524192, 1046524287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046524288, 1046524355, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046524356, 1046524415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046524416, 1046525183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046525184, 1046525215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046525216, 1046525247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046525248, 1046525311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046525312, 1046525343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046525344, 1046525439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046525440, 1046525695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046525696, 1046526591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046526592, 1046526599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046526600, 1046526631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046526632, 1046526635, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046526636, 1046526719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046526720, 1046526991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046526992, 1046526995, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046526996, 1046527487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046527488, 1046527743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046527744, 1046527999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528000, 1046528255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528256, 1046528295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528296, 1046528319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528320, 1046528335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528336, 1046528351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528352, 1046528383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528384, 1046528391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528392, 1046528399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528400, 1046528447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528448, 1046528455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528456, 1046528459, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528460, 1046528463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528464, 1046528471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528472, 1046528495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528496, 1046528499, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528500, 1046528503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528504, 1046528511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528512, 1046528527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528528, 1046528543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528544, 1046528559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528560, 1046528575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528576, 1046528587, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528588, 1046528599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528600, 1046528603, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528604, 1046528607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528608, 1046528639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528640, 1046528671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528672, 1046528703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046528704, 1046529279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046529280, 1046529535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046529536, 1046530047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530048, 1046530687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530688, 1046530815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530816, 1046530879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530880, 1046530943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530944, 1046530947, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530948, 1046530967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530968, 1046530975, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046530976, 1046531007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531008, 1046531087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531088, 1046531095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531096, 1046531103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531104, 1046531111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531112, 1046531127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531128, 1046531167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531168, 1046531183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531184, 1046531839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046531840, 1046532095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046532096, 1046534015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046534016, 1046534047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046534048, 1046534143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046534144, 1046534655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046534656, 1046534783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046534784, 1046534815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046534816, 1046534911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046534912, 1046535311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535312, 1046535359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535360, 1046535423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535424, 1046535487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535488, 1046535615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535616, 1046535619, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535620, 1046535623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535624, 1046535631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535632, 1046535935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046535936, 1046536007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536008, 1046536015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536016, 1046536023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536024, 1046536039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536040, 1046536063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536064, 1046536151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536152, 1046536159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536160, 1046536175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536176, 1046536187, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536188, 1046536199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536200, 1046536211, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536212, 1046536215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536216, 1046536255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536256, 1046536271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536272, 1046536279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536280, 1046536283, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536284, 1046536287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536288, 1046536295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536296, 1046536319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536320, 1046536351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536352, 1046536391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536392, 1046536399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536400, 1046536423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536424, 1046536439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536440, 1046536607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536608, 1046536667, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536668, 1046536671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046536672, 1046537023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046537024, 1046537055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046537056, 1046537071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046537072, 1046537087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046537088, 1046537151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046537152, 1046537215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046537216, 1046538239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538240, 1046538255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538256, 1046538303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538304, 1046538367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538368, 1046538455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538456, 1046538463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538464, 1046538495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538496, 1046538751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046538752, 1046539519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046539520, 1046540031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046540032, 1046540287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046540288, 1046540543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046540544, 1046541055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541056, 1046541311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541312, 1046541439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541440, 1046541503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541504, 1046541567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541568, 1046541631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541632, 1046541711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541712, 1046541727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541728, 1046541759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541760, 1046541767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541768, 1046541787, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541788, 1046541807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046541808, 1046542591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046542592, 1046542847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046542848, 1046543231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046543232, 1046543263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046543264, 1046543295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046543296, 1046543327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046543328, 1046543351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046543352, 1046543359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046543360, 1046543871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046543872, 1046544127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046544128, 1046544383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046544384, 1046560767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046560768, 1046561471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561472, 1046561535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561536, 1046561575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561576, 1046561583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561584, 1046561599, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561600, 1046561631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561632, 1046561663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561664, 1046561791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046561792, 1046562303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046562304, 1046562559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046562560, 1046562911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046562912, 1046562919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046562920, 1046562923, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046562924, 1046562927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046562928, 1046563007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046563008, 1046563071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046563072, 1046563775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046563776, 1046563839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046563840, 1046564383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046564384, 1046564391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046564392, 1046564427, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046564428, 1046564431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046564432, 1046564567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046564568, 1046564607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046564608, 1046565167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046565168, 1046565183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046565184, 1046565551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046565552, 1046565567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046565568, 1046566655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046566656, 1046566911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046566912, 1046567427, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046567428, 1046567679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046567680, 1046568191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046568192, 1046568447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046568448, 1046569215, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569216, 1046569219, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569220, 1046569223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569224, 1046569231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569232, 1046569291, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569292, 1046569295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569296, 1046569335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569336, 1046569339, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569340, 1046569375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569376, 1046569379, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569380, 1046569775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569776, 1046569791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046569792, 1046570207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046570208, 1046570231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046570232, 1046571039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571040, 1046571043, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571044, 1046571111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571112, 1046571119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571120, 1046571167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571168, 1046571175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571176, 1046571255, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571256, 1046571263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046571264, 1046572351, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046572352, 1046572367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046572368, 1046572687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046572688, 1046572695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046572696, 1046572791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046572792, 1046572799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046572800, 1046574631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046574632, 1046574719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046574720, 1046574735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046574736, 1046574751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046574752, 1046574783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046574784, 1046574847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046574848, 1046575263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046575264, 1046575279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046575280, 1046576127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046576128, 1046576383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046576384, 1046585343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046585344, 1046609919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046609920, 1046675455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046675456, 1046708223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046708224, 1046740991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046740992, 1046757375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046757376, 1046765567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046765568, 1046773759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046773760, 1046781951, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046781952, 1046790143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046790144, 1046798335, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046798336, 1046806527, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046806528, 1046814719, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046814720, 1046822911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046822912, 1046847487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046847488, 1046855679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046855680, 1046872063, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046872064, 1046880559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046880560, 1046880567, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046880568, 1046904831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046904832, 1046937599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1046937600, 1047003135, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047003136, 1047068671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047068672, 1047085055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047085056, 1047101439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047101440, 1047109631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047109632, 1047117823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047117824, 1047134207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047134208, 1047199743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047199744, 1047265279, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047265280, 1047273471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047273472, 1047281663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047281664, 1047289855, N'TR', N'Turkey') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047289856, 1047295359, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047295360, 1047295375, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047295376, 1047298047, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047298048, 1047300095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047300096, 1047300415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047300416, 1047306239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047306240, 1047314431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047314432, 1047322623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047322624, 1047330815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047330816, 1047339007, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047339008, 1047347199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047347200, 1047364255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047364256, 1047364287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047364288, 1047365119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047365120, 1047365135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047365136, 1047371775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047371776, 1047379967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047379968, 1047396351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047396352, 1047461887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047461888, 1047494655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047494656, 1047527423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047527424, 1047535615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047535616, 1047551999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047552000, 1047560191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047560192, 1047560751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047560752, 1047560767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047560768, 1047561747, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047561748, 1047561751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047561752, 1047561887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047561888, 1047561891, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047561892, 1047563451, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047563452, 1047563455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047563456, 1047566455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047566456, 1047566459, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047566460, 1047566847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047566848, 1047566851, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047566852, 1047566855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047566856, 1047566863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047566864, 1047567103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567104, 1047567111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567112, 1047567163, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567164, 1047567167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567168, 1047567247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567248, 1047567251, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567252, 1047567315, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567316, 1047567319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567320, 1047567335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567336, 1047567343, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567344, 1047567451, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567452, 1047567455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567456, 1047567551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567552, 1047567555, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567556, 1047567647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567648, 1047567651, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567652, 1047567747, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567748, 1047567751, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567752, 1047567755, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567756, 1047567759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567760, 1047567871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567872, 1047567875, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567876, 1047567879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567880, 1047567935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567936, 1047567939, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047567940, 1047568047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047568048, 1047568055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047568056, 1047568159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047568160, 1047568163, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047568164, 1047568335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047568336, 1047568339, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047568340, 1047568383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047568384, 1047572991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047572992, 1047573503, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047573504, 1047576575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047576576, 1047584767, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047584768, 1047592959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047592960, 1047601151, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047601152, 1047625727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047625728, 1047633919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047633920, 1047642111, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047642112, 1047658495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047658496, 1047724031, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047724032, 1047725055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047725056, 1047732223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047732224, 1047732479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047732480, 1047734271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047734272, 1047734527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047734528, 1047736319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047736320, 1047736575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047736576, 1047740431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047740432, 1047740463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047740464, 1047740671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047740672, 1047740927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047740928, 1047781879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047781880, 1047781887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047781888, 1047782655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047782656, 1047782687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047782688, 1047782695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047782696, 1047782703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047782704, 1047786495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047786496, 1047786751, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047786752, 1047788543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047788544, 1047788799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047788800, 1047789407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047789408, 1047789423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047789424, 1047789503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047789504, 1047789535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047789536, 1047789567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047789568, 1047806031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047806032, 1047806047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047806048, 1047822335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047822336, 1047828255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047828256, 1047828271, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047828272, 1047834895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047834896, 1047834903, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047834904, 1047835135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047835136, 1047835391, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047835392, 1047838719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047838720, 1047846911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047846912, 1047855103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047855104, 1047863295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047863296, 1047871487, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047871488, 1047887871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047887872, 1047920639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047920640, 1047986175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047986176, 1047997439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047997440, 1047997503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1047997504, 1048012383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048012384, 1048012391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048012392, 1048051711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048051712, 1048117247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048117248, 1048125439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048125440, 1048133631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048133632, 1048158207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048158208, 1048166399, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048166400, 1048182783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048182784, 1048313855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048313856, 1048510463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048510464, 1048575999, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048576000, 1048584191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048584192, 1048584975, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048584976, 1048585087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048585088, 1048585295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048585296, 1048585343, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048585344, 1048585727, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048585728, 1048586239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048586240, 1048586303, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048586304, 1048586335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048586336, 1048586367, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048586368, 1048586399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048586400, 1048587007, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587008, 1048587103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587104, 1048587263, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587264, 1048587519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587520, 1048587711, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587712, 1048587775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587776, 1048587903, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587904, 1048587967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048587968, 1048587999, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048588000, 1048588031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048588032, 1048588543, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048588544, 1048588799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048588800, 1048588903, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048588904, 1048591615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048591616, 1048591935, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048591936, 1048592383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048592384, 1048600575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048600576, 1048608767, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048608768, 1048616959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048616960, 1048621055, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048621056, 1048625151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048625152, 1048633343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048633344, 1048641535, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048641536, 1048649727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048649728, 1048657919, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048657920, 1048674303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048674304, 1048682495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048682496, 1048690687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048690688, 1048707071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048707072, 1048772607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048772608, 1048838143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048838144, 1048838175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048838176, 1048838207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048838208, 1048838239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048838240, 1048841343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048841344, 1048841359, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048841360, 1048844287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048844288, 1048844303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048844304, 1048844319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048844320, 1048844351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048844352, 1048844383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048844384, 1048887295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048887296, 1048903679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048903680, 1048911871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048911872, 1048920063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048920064, 1048936447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048936448, 1048944639, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048944640, 1048952831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048952832, 1048953407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048953408, 1048953439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048953440, 1048954967, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048954968, 1048954975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048954976, 1048969215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048969216, 1048973823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048973824, 1048975359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048975360, 1048976295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976296, 1048976296, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976297, 1048976302, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976303, 1048976303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976304, 1048976319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976320, 1048976383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976384, 1048976447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976448, 1048976511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976512, 1048976639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976640, 1048976895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048976896, 1048978943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048978944, 1048979071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048979072, 1048980527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048980528, 1048980567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048980568, 1048980735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048980736, 1048980967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048980968, 1048980975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048980976, 1048980991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048980992, 1048981823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048981824, 1048982015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982016, 1048982607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982608, 1048982655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982656, 1048982663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982664, 1048982687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982688, 1048982719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982720, 1048982720, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982721, 1048982782, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982783, 1048982784, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982785, 1048982814, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982815, 1048982823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982824, 1048982943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982944, 1048982959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048982960, 1048983039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048983040, 1048983167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048983168, 1048983679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048983680, 1048983807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048983808, 1048984127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048984128, 1048984191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048984192, 1048984575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048984576, 1048984831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048984832, 1048985167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048985168, 1048985215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048985216, 1048985375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048985376, 1048985599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1048985600, 1049002015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049002016, 1049002175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049002176, 1049002239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049002240, 1049002367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049002368, 1049002751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049002752, 1049004287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049004288, 1049004291, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049004292, 1049004543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049004544, 1049006463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049006464, 1049006503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049006504, 1049006511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049006512, 1049006591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049006592, 1049007111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049007112, 1049007119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049007120, 1049007167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049007168, 1049007615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049007616, 1049009535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049009536, 1049009663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049009664, 1049011711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049011712, 1049012223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049012224, 1049012479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049012480, 1049012735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049012736, 1049014015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049014016, 1049014271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049014272, 1049016703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049016704, 1049016711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049016712, 1049016715, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049016716, 1049017983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049017984, 1049018047, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049018048, 1049020127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049020128, 1049020135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049020136, 1049020447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049020448, 1049020463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049020464, 1049020471, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049020472, 1049023231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049023232, 1049023487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049023488, 1049026559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049026560, 1049026815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049026816, 1049031679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049031680, 1049032191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032192, 1049032255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032256, 1049032319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032320, 1049032383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032384, 1049032399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032400, 1049032623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032624, 1049032631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032632, 1049032695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032696, 1049032703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049032704, 1049033215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049033216, 1049034751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049034752, 1049067519, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049067520, 1049100287, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049100288, 1049231359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049231360, 1049296895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049296896, 1049362431, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049362432, 1049362943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049362944, 1049362959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049362960, 1049363071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049363072, 1049363135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049363136, 1049363967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049363968, 1049364223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049364224, 1049365711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049365712, 1049365719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049365720, 1049365727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049365728, 1049365751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049365752, 1049365887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049365888, 1049365951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049365952, 1049366015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049366016, 1049366271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049366272, 1049366335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049366336, 1049366399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049366400, 1049366527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049366528, 1049368575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049368576, 1049369599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049369600, 1049369935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049369936, 1049369983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049369984, 1049370111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049370112, 1049370175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049370176, 1049370255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049370256, 1049370623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049370624, 1049378815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049378816, 1049395199, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049395200, 1049405055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405056, 1049405183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405184, 1049405247, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405248, 1049405311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405312, 1049405375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405376, 1049405439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405440, 1049405567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405568, 1049405631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405632, 1049405695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405696, 1049405759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405760, 1049405823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405824, 1049405887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405888, 1049405951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049405952, 1049407615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049407616, 1049407999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049408000, 1049409023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049409024, 1049409279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049409280, 1049411583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049411584, 1049419775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049419776, 1049427967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049427968, 1049436159, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049436160, 1049444351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049444352, 1049460735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049460736, 1049468927, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049468928, 1049477119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049477120, 1049493503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049493504, 1049518079, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049518080, 1049518095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049518096, 1049547295, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049547296, 1049547327, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049547328, 1049559039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049559040, 1049653095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049653096, 1049653103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049653104, 1049698303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049698304, 1049699071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049699072, 1049699327, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049699328, 1049699839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049699840, 1049700607, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049700608, 1049700863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049700864, 1049701119, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049701120, 1049701375, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049701376, 1049701887, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049701888, 1049701951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049701952, 1049702143, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049702144, 1049702399, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049702400, 1049703423, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049703424, 1049704959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049704960, 1049705471, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049705472, 1049706495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049706496, 1049707007, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049707008, 1049707519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049707520, 1049707775, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049707776, 1049708031, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049708032, 1049708543, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049708544, 1049710079, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049710080, 1049711103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049711104, 1049711359, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049711360, 1049711615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049711616, 1049712127, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049712128, 1049712383, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049712384, 1049712511, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049712512, 1049712639, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049712640, 1049713055, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049713056, 1049713087, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049713088, 1049713151, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049713152, 1049713663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049713664, 1049713791, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049713792, 1049713919, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049713920, 1049714687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049714688, 1049715711, N'IR', N'Iran, Islamic Republic of') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049715712, 1049716735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049716736, 1049717759, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049717760, 1049718015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049718016, 1049718271, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049718272, 1049718783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049718784, 1049722879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049722880, 1049731071, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049731072, 1049739263, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049739264, 1049755647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049755648, 1049761791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049761792, 1049762047, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049762048, 1049762831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049762832, 1049762835, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049762836, 1049763055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049763056, 1049763063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049763064, 1049763327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049763328, 1049763583, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049763584, 1049764967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049764968, 1049764975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049764976, 1049765951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049765952, 1049765983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049765984, 1049766473, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049766474, 1049766479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049766480, 1049766911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049766912, 1049767167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049767168, 1049768175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049768176, 1049768191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049768192, 1049771903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049771904, 1049771967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049771968, 1049772927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049772928, 1049773055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049773056, 1049774591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049774592, 1049774847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049774848, 1049775047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049775048, 1049775055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049775056, 1049775103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049775104, 1049775119, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049775120, 1049776055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049776056, 1049776063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049776064, 1049776695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049776696, 1049776703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049776704, 1049776711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049776712, 1049776719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049776720, 1049777023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049777024, 1049777039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049777040, 1049777247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049777248, 1049777255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049777256, 1049777951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049777952, 1049777959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049777960, 1049778111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049778112, 1049778143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049778144, 1049778495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049778496, 1049778523, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049778524, 1049778531, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049778532, 1049778991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049778992, 1049778999, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049779000, 1049779969, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049779970, 1049780094, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049780095, 1049780991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049780992, 1049781247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049781248, 1049784999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049785000, 1049785007, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049785008, 1049811535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049811536, 1049811551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049811552, 1049821183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049821184, 1049886719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049886720, 1049894911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049894912, 1049903103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049903104, 1049911295, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049911296, 1049919487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049919488, 1049927679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049927680, 1049930239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049930240, 1049930367, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049930368, 1049935871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049935872, 1049944063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049944064, 1049952255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049952256, 1049960447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049960448, 1049968639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049968640, 1049985023, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1049985024, 1050017791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050017792, 1050083327, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050083328, 1050148863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050148864, 1050157055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050157056, 1050165247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050165248, 1050173439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050173440, 1050189823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050189824, 1050198015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050198016, 1050206207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050206208, 1050214399, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050214400, 1050238047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050238048, 1050238055, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050238056, 1050244935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050244936, 1050244943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050244944, 1050320231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050320232, 1050320239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050320240, 1050330023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050330024, 1050330031, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050330032, 1050340607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050340608, 1050340639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050340640, 1050450711, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050450712, 1050450719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050450720, 1050502559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050502560, 1050502567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050502568, 1050505215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050505216, 1050505247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050505248, 1050515647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050515648, 1050515663, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050515664, 1050522407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050522408, 1050522415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050522416, 1050526207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050526208, 1050526223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050526224, 1050527455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050527456, 1050527471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050527472, 1050616655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050616656, 1050616671, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050616672, 1050619503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050619504, 1050619511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050619512, 1050621407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050621408, 1050621439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050621440, 1050625823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050625824, 1050625831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050625832, 1050625959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050625960, 1050625967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050625968, 1050634431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050634432, 1050634439, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050634440, 1050647431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050647432, 1050647439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050647440, 1050664911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050664912, 1050664919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050664920, 1050672479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050672480, 1050672487, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050672488, 1050673151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050673152, 1050675921, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050675922, 1050675922, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050675923, 1050676470, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050676471, 1050676471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050676472, 1050677210, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050677211, 1050677211, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050677212, 1050696111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050696112, 1050696115, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050696116, 1050704661, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050704662, 1050704662, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050704663, 1050731146, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050731147, 1050731147, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050731148, 1050763476, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050763477, 1050763477, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050763478, 1050768551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050768552, 1050768558, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050768559, 1050804223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050804224, 1050869759, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050869760, 1050935295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050935296, 1050940415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050940416, 1050940431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050940432, 1050968063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1050968064, 1051000831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051000832, 1051009023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051009024, 1051017215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051017216, 1051033599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051033600, 1051049983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051049984, 1051066367, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051066368, 1051084287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051084288, 1051084799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051084800, 1051102207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051102208, 1051102559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051102560, 1051102567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051102568, 1051102695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051102696, 1051102703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051102704, 1051102879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051102880, 1051102887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051102888, 1051103007, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051103008, 1051103015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051103016, 1051103231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051103232, 1051115519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051115520, 1051123711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051123712, 1051124479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051124480, 1051124607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051124608, 1051124799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051124800, 1051124815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051124816, 1051124895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051124896, 1051124911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051124912, 1051125247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125248, 1051125263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125264, 1051125279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125280, 1051125343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125344, 1051125351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125352, 1051125375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125376, 1051125391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125392, 1051125415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125416, 1051125423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125424, 1051125439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125440, 1051125447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125448, 1051125639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125640, 1051125647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125648, 1051125759, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051125760, 1051131903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051131904, 1051197439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051197440, 1051213823, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051213824, 1051230207, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051230208, 1051238399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051238400, 1051246591, N'GE', N'Georgia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051246592, 1051254783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051254784, 1051262975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051262976, 1051271167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051271168, 1051279359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051279360, 1051295743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051295744, 1051303935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051303936, 1051312127, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051312128, 1051328511, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051328512, 1051460095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051460096, 1051460351, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051460352, 1051460639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051460640, 1051460647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051460648, 1051525119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051525120, 1051533311, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051533312, 1051541503, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051541504, 1051557887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051557888, 1051566079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051566080, 1051574271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051574272, 1051574543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051574544, 1051574551, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051574552, 1051574623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051574624, 1051574655, N'GM', N'Gambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051574656, 1051575879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051575880, 1051575883, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051575884, 1051575903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051575904, 1051575911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051575912, 1051575999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051576000, 1051576015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051576016, 1051576903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051576904, 1051576911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051576912, 1051576943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051576944, 1051576959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051576960, 1051577503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577504, 1051577519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577520, 1051577535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577536, 1051577567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577568, 1051577575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577576, 1051577583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577584, 1051577587, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577588, 1051577591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577592, 1051577599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577600, 1051577855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051577856, 1051578111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578112, 1051578143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578144, 1051578175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578176, 1051578239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578240, 1051578263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578264, 1051578271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578272, 1051578279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578280, 1051578287, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578288, 1051578295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578296, 1051578303, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578304, 1051578335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578336, 1051578343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578344, 1051578351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578352, 1051578359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578360, 1051578363, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578364, 1051578367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051578368, 1051580479, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051580480, 1051584511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051584512, 1051585663, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051585664, 1051585919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051585920, 1051586047, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051586048, 1051586175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051586176, 1051586303, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051586304, 1051590655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051590656, 1051702527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051702528, 1051702783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051702784, 1051721727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051721728, 1051729919, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051729920, 1051738111, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051738112, 1051754495, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051754496, 1051762687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051762688, 1051770879, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051770880, 1051779071, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051779072, 1051787263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051787264, 1051795455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051795456, 1051803647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051803648, 1051820031, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051820032, 1051852799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051852800, 1051918335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051918336, 1051918847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051918848, 1051919359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051919360, 1051941119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051941120, 1051941631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051941632, 1051941887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051941888, 1051942143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051942144, 1051942911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051942912, 1051951103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051951104, 1051954175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051954176, 1051956223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051956224, 1051983871, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051983872, 1051991551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051991552, 1051991807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051991808, 1051991951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051991952, 1051991967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051991968, 1051991999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051992000, 1051992063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051992064, 1051994623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051994624, 1051995391, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051995392, 1051996159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051996160, 1051996287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051996288, 1051996319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051996320, 1051996331, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051996332, 1051996351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051996352, 1051996879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051996880, 1051996927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051996928, 1051997439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051997440, 1051997695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051997696, 1051997711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051997712, 1051997727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051997728, 1051997951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051997952, 1051997983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051997984, 1051998247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051998248, 1051998255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051998256, 1051998687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051998688, 1051998695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051998696, 1051998719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051998720, 1051998975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051998976, 1051999039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999040, 1051999043, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999044, 1051999135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999136, 1051999151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999152, 1051999167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999168, 1051999359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999360, 1051999487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999488, 1051999743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1051999744, 1051999999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000000, 1052000063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000064, 1052000095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000096, 1052000111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000112, 1052000127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000128, 1052000159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000160, 1052000191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000192, 1052000511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000512, 1052000519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000520, 1052000527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000528, 1052000535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000536, 1052000539, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000540, 1052000575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000576, 1052000623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000624, 1052000631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052000632, 1052002335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052002336, 1052002351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052002352, 1052002431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052002432, 1052002439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052002440, 1052002523, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052002524, 1052002527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052002528, 1052002543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052002544, 1052003327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003328, 1052003359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003360, 1052003383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003384, 1052003455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003456, 1052003479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003480, 1052003503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003504, 1052003551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003552, 1052003839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003840, 1052003967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052003968, 1052003999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004000, 1052004671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004672, 1052004783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004784, 1052004815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004816, 1052004831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004832, 1052004895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004896, 1052004927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004928, 1052004943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004944, 1052004959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052004960, 1052005119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052005120, 1052005151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052005152, 1052005247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052005248, 1052005631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052005632, 1052005887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052005888, 1052005911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052005912, 1052005951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052005952, 1052006015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006016, 1052006047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006048, 1052006079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006080, 1052006527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006528, 1052006559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006560, 1052006575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006576, 1052006607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006608, 1052006623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006624, 1052006655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006656, 1052006943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006944, 1052006959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006960, 1052006967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006968, 1052006983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052006984, 1052007007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007008, 1052007015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007016, 1052007071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007072, 1052007103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007104, 1052007431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007432, 1052007439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007440, 1052007455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007456, 1052007487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007488, 1052007519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007520, 1052007535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007536, 1052007775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007776, 1052007791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007792, 1052007935, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052007936, 1052008223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008224, 1052008479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008480, 1052008495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008496, 1052008515, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008516, 1052008527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008528, 1052008543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008544, 1052008583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008584, 1052008591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008592, 1052008623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008624, 1052008639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052008640, 1052009087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009088, 1052009471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009472, 1052009487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009488, 1052009503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009504, 1052009535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009536, 1052009599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009600, 1052009607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009608, 1052009615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009616, 1052009623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009624, 1052009727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052009728, 1052010239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010240, 1052010463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010464, 1052010559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010560, 1052010607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010608, 1052010655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010656, 1052010739, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010740, 1052010743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010744, 1052010751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052010752, 1052011135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052011136, 1052011263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052011264, 1052012335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052012336, 1052012375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052012376, 1052012383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052012384, 1052012399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052012400, 1052012447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052012448, 1052012511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052012512, 1052013055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013056, 1052013059, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013060, 1052013063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013064, 1052013071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013072, 1052013103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013104, 1052013119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013120, 1052013127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013128, 1052013143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013144, 1052013151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013152, 1052013215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013216, 1052013263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013264, 1052013311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013312, 1052013567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013568, 1052013695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013696, 1052013823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013824, 1052013831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013832, 1052013855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013856, 1052013871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013872, 1052013951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013952, 1052013959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013960, 1052013963, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052013964, 1052014007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052014008, 1052014303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052014304, 1052014591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052014592, 1052014623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052014624, 1052015367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015368, 1052015375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015376, 1052015423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015424, 1052015519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015520, 1052015551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015552, 1052015615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015616, 1052015631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015632, 1052015647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015648, 1052015663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015664, 1052015679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015680, 1052015695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015696, 1052015743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052015744, 1052015999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016000, 1052016159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016160, 1052016207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016208, 1052016223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016224, 1052016255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016256, 1052016323, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016324, 1052016351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016352, 1052016407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016408, 1052016447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016448, 1052016463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016464, 1052016479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016480, 1052016671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016672, 1052016679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016680, 1052016687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016688, 1052016767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016768, 1052016799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016800, 1052016895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052016896, 1052017151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017152, 1052017215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017216, 1052017247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017248, 1052017263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017264, 1052017343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017344, 1052017471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017472, 1052017567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017568, 1052017599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017600, 1052017663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052017664, 1052018167, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052018168, 1052018431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052018432, 1052018719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052018720, 1052018767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052018768, 1052019199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052019200, 1052019455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052019456, 1052019735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052019736, 1052019775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052019776, 1052019871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052019872, 1052020047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052020048, 1052020063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052020064, 1052020095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052020096, 1052020672, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052020673, 1052020702, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052020703, 1052020703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052020704, 1052041391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041392, 1052041407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041408, 1052041423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041424, 1052041431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041432, 1052041599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041600, 1052041655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041656, 1052041686, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041687, 1052041727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041728, 1052041863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052041864, 1052042303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042304, 1052042311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042312, 1052042367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042368, 1052042431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042432, 1052042463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042464, 1052042559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042560, 1052042567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042568, 1052042575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042576, 1052042583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042584, 1052042703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042704, 1052042719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042720, 1052042751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042752, 1052042815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042816, 1052042863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042864, 1052042879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052042880, 1052043039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043040, 1052043055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043056, 1052043063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043064, 1052043071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043072, 1052043103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043104, 1052043111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043112, 1052043127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043128, 1052043175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043176, 1052043183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043184, 1052043199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043200, 1052043263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043264, 1052043527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043528, 1052043535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043536, 1052043551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043552, 1052043575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043576, 1052043583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043584, 1052043651, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043652, 1052043663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043664, 1052043679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043680, 1052043759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043760, 1052043775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052043776, 1052044287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044288, 1052044399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044400, 1052044415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044416, 1052044447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044448, 1052044511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044512, 1052044527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044528, 1052044799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044800, 1052044927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052044928, 1052045023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052045024, 1052046135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052046136, 1052046143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052046144, 1052046207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052046208, 1052046335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052046336, 1052046719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052046720, 1052047103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052047104, 1052047135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052047136, 1052047359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052047360, 1052047871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052047872, 1052049151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052049152, 1052049183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052049184, 1052049407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052049408, 1052057599, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052057600, 1052065791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052065792, 1052082175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052082176, 1052090367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052090368, 1052098559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052098560, 1052114943, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052114944, 1052180479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052180480, 1052213247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052213248, 1052246015, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052246016, 1052247039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247040, 1052247295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247296, 1052247359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247360, 1052247391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247392, 1052247407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247408, 1052247415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247416, 1052247423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247424, 1052247551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052247552, 1052248095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052248096, 1052248127, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052248128, 1052248135, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052248136, 1052248143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052248144, 1052248159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052248160, 1052249375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052249376, 1052249407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052249408, 1052249471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052249472, 1052249503, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052249504, 1052250655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052250656, 1052250687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052250688, 1052250719, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052250720, 1052250735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052250736, 1052250751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052250752, 1052252863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052252864, 1052252879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052252880, 1052252895, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052252896, 1052252927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052252928, 1052254207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052254208, 1052255255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052255256, 1052255263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052255264, 1052255871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052255872, 1052255935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052255936, 1052257279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052257280, 1052257791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052257792, 1052258303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052258304, 1052260623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052260624, 1052260631, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052260632, 1052260639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052260640, 1052260735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052260736, 1052260863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052260864, 1052260895, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052260896, 1052261055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052261056, 1052261119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052261120, 1052262399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052262400, 1052263423, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052263424, 1052263935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052263936, 1052264447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052264448, 1052264639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052264640, 1052264703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052264704, 1052265471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052265472, 1052265519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052265520, 1052265535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052265536, 1052265599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052265600, 1052265983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052265984, 1052266239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052266240, 1052266495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052266496, 1052268543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052268544, 1052268607, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052268608, 1052268671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052268672, 1052268703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052268704, 1052268719, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052268720, 1052268735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052268736, 1052268799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052268800, 1052270591, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052270592, 1052271871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052271872, 1052272127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052272128, 1052272543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052272544, 1052272575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052272576, 1052272639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052272640, 1052274175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052274176, 1052274687, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052274688, 1052274943, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052274944, 1052275199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052275200, 1052275711, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052275712, 1052276735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052276736, 1052278207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278208, 1052278271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278272, 1052278783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278784, 1052278823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278824, 1052278831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278832, 1052278847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278848, 1052278863, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278864, 1052278879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052278880, 1052286975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052286976, 1052287487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052287488, 1052288255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052288256, 1052288287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052288288, 1052288295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052288296, 1052288303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052288304, 1052288319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052288320, 1052288383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052288384, 1052288511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052288512, 1052289023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052289024, 1052289151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052289152, 1052289183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052289184, 1052289215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052289216, 1052289279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052289280, 1052289535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052289536, 1052290047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290048, 1052290063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290064, 1052290303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290304, 1052290367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290368, 1052290399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290400, 1052290431, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290432, 1052290559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290560, 1052290575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290576, 1052290591, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290592, 1052290639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290640, 1052290655, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290656, 1052290687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290688, 1052290815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290816, 1052290831, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052290832, 1052291327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052291328, 1052291583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052291584, 1052291679, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052291680, 1052291687, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052291688, 1052291695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052291696, 1052291711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052291712, 1052292095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052292096, 1052299263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052299264, 1052299775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052299776, 1052303359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052303360, 1052307455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052307456, 1052309247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052309248, 1052309503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052309504, 1052310527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052310528, 1052310783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052310784, 1052311039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311040, 1052311551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311552, 1052311615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311616, 1052311679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311680, 1052311871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311872, 1052311895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311896, 1052311903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311904, 1052311935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311936, 1052311967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052311968, 1052311999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312000, 1052312063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312064, 1052312767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312768, 1052312831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312832, 1052312895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312896, 1052312903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312904, 1052312911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312912, 1052312927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052312928, 1052313087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052313088, 1052314751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052314752, 1052314815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052314816, 1052314823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052314824, 1052314831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052314832, 1052314847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052314848, 1052315071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052315072, 1052315103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052315104, 1052315135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052315136, 1052315551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052315552, 1052315583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052315584, 1052315647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052315648, 1052316319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052316320, 1052316335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052316336, 1052316767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052316768, 1052316799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052316800, 1052317599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052317600, 1052317607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052317608, 1052317615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052317616, 1052317631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052317632, 1052317663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052317664, 1052318047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052318048, 1052318079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052318080, 1052318207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052318208, 1052318719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052318720, 1052319231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052319232, 1052319743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052319744, 1052319999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052320000, 1052320079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052320080, 1052320087, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052320088, 1052320095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052320096, 1052320127, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052320128, 1052320255, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052320256, 1052322239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052322240, 1052322303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052322304, 1052323871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052323872, 1052323903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052323904, 1052324927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052324928, 1052324943, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052324944, 1052324959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052324960, 1052324991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052324992, 1052325191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325192, 1052325199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325200, 1052325215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325216, 1052325247, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325248, 1052325311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325312, 1052325375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325376, 1052325567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325568, 1052325631, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052325632, 1052327935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052327936, 1052328223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052328224, 1052328255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052328256, 1052328319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052328320, 1052328447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052328448, 1052328639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052328640, 1052328671, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052328672, 1052328703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052328704, 1052329983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052329984, 1052330239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052330240, 1052331167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331168, 1052331183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331184, 1052331199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331200, 1052331263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331264, 1052331615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331616, 1052331647, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331648, 1052331711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331712, 1052331743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052331744, 1052332031, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052332032, 1052333103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052333104, 1052333119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052333120, 1052333183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052333184, 1052333311, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052333312, 1052334751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052334752, 1052334759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052334760, 1052334767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052334768, 1052334815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052334816, 1052334847, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052334848, 1052335423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052335424, 1052335455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052335456, 1052335519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052335520, 1052335535, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052335536, 1052335551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052335552, 1052335615, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052335616, 1052336127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052336128, 1052336255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052336256, 1052336383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052336384, 1052337343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052337344, 1052337375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052337376, 1052337759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052337760, 1052337887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052337888, 1052337903, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052337904, 1052337911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052337912, 1052337919, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052337920, 1052340111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340112, 1052340127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340128, 1052340135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340136, 1052340223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340224, 1052340527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340528, 1052340543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340544, 1052340575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340576, 1052340607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340608, 1052340671, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340672, 1052340703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340704, 1052340719, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340720, 1052340735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340736, 1052340767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340768, 1052340799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340800, 1052340863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052340864, 1052341247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052341248, 1052341503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052341504, 1052342271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342272, 1052342303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342304, 1052342335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342336, 1052342463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342464, 1052342471, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342472, 1052342479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342480, 1052342495, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342496, 1052342527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052342528, 1052343647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052343648, 1052343655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052343656, 1052343663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052343664, 1052343679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052343680, 1052344319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052344320, 1052344863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052344864, 1052344895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052344896, 1052344959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052344960, 1052345087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345088, 1052345135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345136, 1052345151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345152, 1052345247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345248, 1052345279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345280, 1052345343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345344, 1052345503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345504, 1052345535, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345536, 1052345551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345552, 1052345567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345568, 1052345631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345632, 1052345663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345664, 1052345695, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345696, 1052345727, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345728, 1052345855, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052345856, 1052346903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052346904, 1052346911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052346912, 1052346943, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052346944, 1052347007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052347008, 1052347135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052347136, 1052347391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052347392, 1052348415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052348416, 1052348799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052348800, 1052348831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052348832, 1052348863, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052348864, 1052348879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052348880, 1052348895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052348896, 1052348927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052348928, 1052349119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052349120, 1052349151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052349152, 1052349343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052349344, 1052349375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052349376, 1052349407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052349408, 1052349439, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052349440, 1052352559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352560, 1052352591, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352592, 1052352607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352608, 1052352639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352640, 1052352703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352704, 1052352767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352768, 1052352927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352928, 1052352959, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352960, 1052352991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052352992, 1052353023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052353024, 1052353279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052353280, 1052354111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052354112, 1052354175, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052354176, 1052354559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052354560, 1052356607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052356608, 1052356703, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052356704, 1052356735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052356736, 1052356799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052356800, 1052356863, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052356864, 1052358479, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052358480, 1052358495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052358496, 1052358511, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052358512, 1052358527, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052358528, 1052358655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052358656, 1052359839, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052359840, 1052359871, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052359872, 1052359935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052359936, 1052360735, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052360736, 1052360743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052360744, 1052360767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052360768, 1052360783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052360784, 1052360831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052360832, 1052360959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052360960, 1052360991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052360992, 1052361023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361024, 1052361039, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361040, 1052361055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361056, 1052361087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361088, 1052361151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361152, 1052361215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361216, 1052361471, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361472, 1052361647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361648, 1052361655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361656, 1052361663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361664, 1052361695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361696, 1052361727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361728, 1052361919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361920, 1052361951, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361952, 1052361967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361968, 1052361983, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052361984, 1052362239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052362240, 1052362751, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052362752, 1052362783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052362784, 1052362815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052362816, 1052362879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052362880, 1052363039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052363040, 1052363071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052363072, 1052363135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052363136, 1052363263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052363264, 1052364543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052364544, 1052364671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052364672, 1052364687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052364688, 1052364695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052364696, 1052364703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052364704, 1052364799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052364800, 1052366207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052366208, 1052366271, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052366272, 1052366335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052366336, 1052366655, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052366656, 1052366719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052366720, 1052367871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052367872, 1052368895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052368896, 1052369023, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369024, 1052369039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369040, 1052369055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369056, 1052369087, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369088, 1052369151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369152, 1052369407, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369408, 1052369663, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369664, 1052369855, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369856, 1052369887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369888, 1052369919, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052369920, 1052370175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052370176, 1052370431, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052370432, 1052370559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052370560, 1052370623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052370624, 1052370687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052370688, 1052370943, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052370944, 1052372255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052372256, 1052372287, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052372288, 1052372351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052372352, 1052374015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052374016, 1052375039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052375040, 1052375711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052375712, 1052375807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052375808, 1052376831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052376832, 1052377087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377088, 1052377535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377536, 1052377599, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377600, 1052377743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377744, 1052377759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377760, 1052377791, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377792, 1052377855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377856, 1052377871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377872, 1052377887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377888, 1052377919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377920, 1052377951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377952, 1052377983, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052377984, 1052378047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052378048, 1052378079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052378080, 1052378111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052378112, 1052378983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052378984, 1052378991, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052378992, 1052379031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379032, 1052379039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379040, 1052379103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379104, 1052379135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379136, 1052379791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379792, 1052379799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379800, 1052379807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379808, 1052379839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379840, 1052379903, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052379904, 1052380063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052380064, 1052380127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052380128, 1052380159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052380160, 1052382623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052382624, 1052382655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052382656, 1052382719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052382720, 1052382975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052382976, 1052383999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052384000, 1052384255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052384256, 1052385279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052385280, 1052385535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052385536, 1052385615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052385616, 1052385631, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052385632, 1052385695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052385696, 1052385791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052385792, 1052388863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052388864, 1052389119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052389120, 1052390431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052390432, 1052390447, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052390448, 1052390455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052390456, 1052390463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052390464, 1052393471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052393472, 1052393599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052393600, 1052393695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052393696, 1052394271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052394272, 1052394303, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052394304, 1052394367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052394368, 1052395263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052395264, 1052395679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052395680, 1052395743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052395744, 1052395775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052395776, 1052396031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052396032, 1052396543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052396544, 1052396607, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052396608, 1052396671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052396672, 1052396799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052396800, 1052396863, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052396864, 1052396927, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052396928, 1052397439, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052397440, 1052397567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052397568, 1052399039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052399040, 1052399103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052399104, 1052399903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052399904, 1052399919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052399920, 1052399927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052399928, 1052399935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052399936, 1052399999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052400000, 1052400127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052400128, 1052401151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401152, 1052401279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401280, 1052401311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401312, 1052401343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401344, 1052401407, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401408, 1052401599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401600, 1052401631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401632, 1052401663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052401664, 1052402047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052402048, 1052402175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052402176, 1052402271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052402272, 1052402303, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052402304, 1052402367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052402368, 1052403359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403360, 1052403391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403392, 1052403407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403408, 1052403415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403416, 1052403423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403424, 1052403455, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403456, 1052403727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403728, 1052403743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403744, 1052403775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403776, 1052403839, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403840, 1052403967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052403968, 1052404383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404384, 1052404399, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404400, 1052404447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404448, 1052404479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404480, 1052404767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404768, 1052404783, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404784, 1052404799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404800, 1052404863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404864, 1052404991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052404992, 1052405759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052405760, 1052407519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407520, 1052407535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407536, 1052407551, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407552, 1052407839, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407840, 1052407871, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407872, 1052407887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407888, 1052407903, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407904, 1052407935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052407936, 1052408159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052408160, 1052408383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052408384, 1052408447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052408448, 1052408511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052408512, 1052408575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052408576, 1052408831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052408832, 1052409855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052409856, 1052409863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052409864, 1052409871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052409872, 1052409951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052409952, 1052409983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052409984, 1052410047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052410048, 1052410111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052410112, 1052411135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052411136, 1052412327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052412328, 1052412335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052412336, 1052412343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052412344, 1052412351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052412352, 1052412415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052412416, 1052412831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052412832, 1052412863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052412864, 1052413951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052413952, 1052414335, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052414336, 1052414463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052414464, 1052414975, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052414976, 1052415999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052416000, 1052416575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052416576, 1052416639, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052416640, 1052416671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052416672, 1052416703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052416704, 1052416735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052416736, 1052416767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052416768, 1052417071, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417072, 1052417087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417088, 1052417119, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417120, 1052417151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417152, 1052417279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417280, 1052417359, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417360, 1052417367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417368, 1052417535, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052417536, 1052418047, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052418048, 1052419583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052419584, 1052420031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420032, 1052420063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420064, 1052420095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420096, 1052420735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420736, 1052420767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420768, 1052420783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420784, 1052420799, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420800, 1052420863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052420864, 1052422143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052422144, 1052422847, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052422848, 1052422863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052422864, 1052422879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052422880, 1052423199, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423200, 1052423231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423232, 1052423295, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423296, 1052423303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423304, 1052423311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423312, 1052423359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423360, 1052423423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423424, 1052423967, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052423968, 1052423999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052424000, 1052424799, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052424800, 1052424815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052424816, 1052424823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052424824, 1052424831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052424832, 1052424959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052424960, 1052425151, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052425152, 1052425215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052425216, 1052426239, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052426240, 1052426319, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052426320, 1052426327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052426328, 1052426495, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052426496, 1052426511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052426512, 1052426527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052426528, 1052427263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052427264, 1052427839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052427840, 1052427855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052427856, 1052427871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052427872, 1052427903, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052427904, 1052427967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052427968, 1052428031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052428032, 1052428287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052428288, 1052428479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052428480, 1052428543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052428544, 1052429407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052429408, 1052429439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052429440, 1052429567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052429568, 1052429759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052429760, 1052429823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052429824, 1052430335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052430336, 1052430407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052430408, 1052430415, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052430416, 1052430431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052430432, 1052430463, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052430464, 1052430527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052430528, 1052430591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052430592, 1052433407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052433408, 1052433719, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052433720, 1052433727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052433728, 1052433919, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052433920, 1052434431, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052434432, 1052434751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052434752, 1052434783, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052434784, 1052435455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052435456, 1052435647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052435648, 1052435679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052435680, 1052436479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052436480, 1052437023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437024, 1052437055, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437056, 1052437119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437120, 1052437135, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437136, 1052437151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437152, 1052437183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437184, 1052437247, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437248, 1052437759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052437760, 1052438015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052438016, 1052438399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052438400, 1052438527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052438528, 1052439503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052439504, 1052439519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052439520, 1052439551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052439552, 1052440575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052440576, 1052441343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052441344, 1052441599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052441600, 1052442623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052442624, 1052443647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052443648, 1052446207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052446208, 1052446719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052446720, 1052447743, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052447744, 1052447871, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052447872, 1052447999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052448000, 1052448127, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052448128, 1052448255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052448256, 1052450815, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052450816, 1052451839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052451840, 1052452159, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052452160, 1052452223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052452224, 1052452351, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052452352, 1052452831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052452832, 1052452847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052452848, 1052452863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052452864, 1052452991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052452992, 1052452999, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052453000, 1052453119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052453120, 1052453375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052453376, 1052453887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052453888, 1052454911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052454912, 1052454943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052454944, 1052454959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052454960, 1052454975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052454976, 1052455359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052455360, 1052455423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052455424, 1052455935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052455936, 1052456447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052456448, 1052456959, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052456960, 1052457983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052457984, 1052458367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052458368, 1052458431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052458432, 1052458495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052458496, 1052458847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052458848, 1052458863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052458864, 1052458871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052458872, 1052458879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052458880, 1052460031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052460032, 1052460127, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052460128, 1052460223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052460224, 1052460287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052460288, 1052460543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052460544, 1052460799, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052460800, 1052461055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052461056, 1052461295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052461296, 1052461311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052461312, 1052461951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052461952, 1052461967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052461968, 1052463103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052463104, 1052463615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052463616, 1052464639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052464640, 1052464927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052464928, 1052464959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052464960, 1052465087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052465088, 1052465151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052465152, 1052465375, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052465376, 1052465407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052465408, 1052465663, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052465664, 1052466175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052466176, 1052466431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052466432, 1052468223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052468224, 1052469247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052469248, 1052470271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052470272, 1052470783, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052470784, 1052471007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052471008, 1052471039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052471040, 1052471295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052471296, 1052472511, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052472512, 1052472575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052472576, 1052475231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052475232, 1052475239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052475240, 1052475255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052475256, 1052475263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052475264, 1052475391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052475392, 1052476383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052476384, 1052476415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052476416, 1052479039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052479040, 1052479055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052479056, 1052479487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052479488, 1052479743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052479744, 1052479999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052480000, 1052483583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052483584, 1052483999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052484000, 1052484031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052484032, 1052485279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052485280, 1052485311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052485312, 1052485631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052485632, 1052486655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052486656, 1052486911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052486912, 1052486975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052486976, 1052487039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052487040, 1052487167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052487168, 1052487423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052487424, 1052487679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052487680, 1052488703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052488704, 1052489727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052489728, 1052490239, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052490240, 1052490751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052490752, 1052491679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052491680, 1052491687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052491688, 1052491775, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052491776, 1052493567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052493568, 1052493695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052493696, 1052494335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052494336, 1052494591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052494592, 1052495439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052495440, 1052495487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052495488, 1052495551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052495552, 1052495583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052495584, 1052495871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052495872, 1052495879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052495880, 1052496127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052496128, 1052497919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052497920, 1052498431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052498432, 1052498495, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052498496, 1052498943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052498944, 1052499455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052499456, 1052499967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052499968, 1052500191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052500192, 1052500207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052500208, 1052500319, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052500320, 1052500479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052500480, 1052500991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052500992, 1052501023, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052501024, 1052501031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052501032, 1052501039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052501040, 1052501119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052501120, 1052501247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052501248, 1052501503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052501504, 1052502015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052502016, 1052502783, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052502784, 1052502815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052502816, 1052502847, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052502848, 1052503039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052503040, 1052504319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052504320, 1052504351, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052504352, 1052504383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052504384, 1052507583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052507584, 1052507647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052507648, 1052507775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052507776, 1052507903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052507904, 1052602495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052602496, 1052602623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052602624, 1052644095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052644096, 1052644351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052644352, 1052647167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052647168, 1052647423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052647424, 1052661759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052661760, 1052662271, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052662272, 1052665343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052665344, 1052665599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052665600, 1052684575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052684576, 1052684607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052684608, 1052770303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052778496, 1052786687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052786688, 1052795327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052795328, 1052795331, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052795332, 1052803071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052803072, 1052806655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052806656, 1052807167, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052807168, 1052811263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052811264, 1052819455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052819456, 1052827647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052827648, 1052835839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052835840, 1052844031, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052844032, 1052852223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052852224, 1052868607, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052868608, 1052876799, N'CS', N'Serbia and Montenegro') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052876800, 1052884991, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052884992, 1052901375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1052901376, 1053032447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053032448, 1053097983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053097984, 1053106175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053106176, 1053114367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053114368, 1053130751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053130752, 1053138943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053138944, 1053147135, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053147136, 1053163519, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053163520, 1053294591, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053294592, 1053294847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053294848, 1053295103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053295104, 1053295391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053295392, 1053295471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053295472, 1053295615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053295616, 1053296639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053296640, 1053296959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053296960, 1053296991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053296992, 1053297031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053297032, 1053297039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053297040, 1053297055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053297056, 1053297087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053297088, 1053297151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053297152, 1053298175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053298176, 1053299199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053299200, 1053299711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053299712, 1053300479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053300480, 1053300735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053300736, 1053300991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053300992, 1053301087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301088, 1053301119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301120, 1053301183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301184, 1053301215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301216, 1053301343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301344, 1053301351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301352, 1053301503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301504, 1053301759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053301760, 1053302055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302056, 1053302063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302064, 1053302159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302160, 1053302175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302176, 1053302271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302272, 1053302287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302288, 1053302703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302704, 1053302711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302712, 1053302783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053302784, 1053305087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053305088, 1053305951, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053305952, 1053306111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053306112, 1053306879, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053306880, 1053307935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053307936, 1053308543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053308544, 1053308671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053308672, 1053308927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053308928, 1053308991, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053308992, 1053309023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053309024, 1053309055, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053309056, 1053309183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053309184, 1053309951, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053309952, 1053311231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053311232, 1053311359, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053311360, 1053311999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053312000, 1053312911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053312912, 1053312927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053312928, 1053312959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053312960, 1053313023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053313024, 1053314047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053314048, 1053315071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053315072, 1053316767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053316768, 1053316799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053316800, 1053317119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053317120, 1053317247, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053317248, 1053317263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053317264, 1053317279, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053317280, 1053317375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053317376, 1053317631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053317632, 1053318143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318144, 1053318655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318656, 1053318935, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318936, 1053318943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318944, 1053318951, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318952, 1053318959, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318960, 1053318967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318968, 1053318991, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053318992, 1053319007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053319008, 1053319031, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053319032, 1053319039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053319040, 1053319167, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053319168, 1053319423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053319424, 1053320191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053320192, 1053320223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053320224, 1053320447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053320448, 1053326335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053326336, 1053326399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053326400, 1053326447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053326448, 1053326567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053326568, 1053326847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053326848, 1053327103, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053327104, 1053327359, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053327360, 1053327615, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053327616, 1053327871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053327872, 1053328831, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053328832, 1053328895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053328896, 1053329143, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053329144, 1053329151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053329152, 1053329279, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053329280, 1053329407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053329408, 1053329439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053329440, 1053329471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053329472, 1053329663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053329664, 1053330431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053330432, 1053330687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053330688, 1053331455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053331456, 1053331503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053331504, 1053331519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053331520, 1053331703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053331704, 1053331711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053331712, 1053331967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053331968, 1053332223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053332224, 1053332415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053332416, 1053332991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053332992, 1053334015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053334016, 1053334223, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053334224, 1053334239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053334240, 1053334527, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053334528, 1053334783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053334784, 1053335551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053335552, 1053336831, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053336832, 1053337087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053337088, 1053337183, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053337184, 1053337215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053337216, 1053337279, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053337280, 1053337599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053337600, 1053337631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053337632, 1053338111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053338112, 1053338623, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053338624, 1053338927, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053338928, 1053338943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053338944, 1053338983, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053338984, 1053338991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053338992, 1053339007, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053339008, 1053339135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053339136, 1053339551, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053339552, 1053339583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053339584, 1053339647, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053339648, 1053340159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053340160, 1053340415, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053340416, 1053340543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053340544, 1053340671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053340672, 1053341695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053341696, 1053343743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053343744, 1053344255, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053344256, 1053344511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053344512, 1053344767, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053344768, 1053345279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053345280, 1053345375, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053345376, 1053345407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053345408, 1053345471, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053345472, 1053345535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053345536, 1053345559, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053345560, 1053348607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053348608, 1053348639, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053348640, 1053348647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053348648, 1053348655, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053348656, 1053348735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053348736, 1053348863, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053348864, 1053349119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053349120, 1053349631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053349632, 1053349919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053349920, 1053350383, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053350384, 1053350399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053350400, 1053350527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053350528, 1053350655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053350656, 1053350911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053350912, 1053351935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053351936, 1053352039, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053352040, 1053352191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053352192, 1053352447, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053352448, 1053352959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053352960, 1053353031, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353032, 1053353087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353088, 1053353215, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353216, 1053353223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353224, 1053353263, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353264, 1053353279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353280, 1053353375, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353376, 1053353983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053353984, 1053354879, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053354880, 1053354911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053354912, 1053355007, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053355008, 1053360127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053360128, 1053368319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053368320, 1053376511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053376512, 1053392895, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053392896, 1053401087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053401088, 1053409279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053409280, 1053425663, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053425664, 1053556735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053556736, 1053564927, N'FI', N'Finland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053564928, 1053573119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053573120, 1053581311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053581312, 1053589503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053589504, 1053597695, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053597696, 1053605887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053605888, 1053614079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053614080, 1053622271, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053622272, 1053630463, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053630464, 1053638655, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053638656, 1053655039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053655040, 1053663231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053663232, 1053671423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053671424, 1053687807, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053687808, 1053702635, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053702636, 1053702639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053702640, 1053753343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053753344, 1053818879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053818880, 1053819391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053819392, 1053819423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053819424, 1053819439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053819440, 1053819519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053819520, 1053819563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053819564, 1053819583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053819584, 1053819647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053819648, 1053820159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053820160, 1053820927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053820928, 1053823999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053824000, 1053824023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053824024, 1053826559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053826560, 1053827327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053827328, 1053830655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053830656, 1053830911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053830912, 1053831167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053831168, 1053831423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053831424, 1053834943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053834944, 1053834975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053834976, 1053835263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053835264, 1053835775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053835776, 1053836287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053836288, 1053837311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053837312, 1053837439, N'FK', N'Falkland Islands (Malvinas)') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053837440, 1053837823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053837824, 1053838335, N'FK', N'Falkland Islands (Malvinas)') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053838336, 1053838591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053838592, 1053840399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053840400, 1053840415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053840416, 1053840447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053840448, 1053840511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053840512, 1053843199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053843200, 1053843207, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053843208, 1053843711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053843712, 1053843967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053843968, 1053844223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053844224, 1053844479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053844480, 1053844991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053844992, 1053845503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053845504, 1053845727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053845728, 1053845735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053845736, 1053846015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053846016, 1053846527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053846528, 1053846783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053846784, 1053847551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053847552, 1053849599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053849600, 1053850367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053850368, 1053850623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053850624, 1053851647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053851648, 1053851903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053851904, 1053851919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053851920, 1053852031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053852032, 1053852047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053852048, 1053852095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053852096, 1053852103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053852104, 1053852111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053852112, 1053852127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053852128, 1053852159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053852160, 1053853695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053853696, 1053854207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053854208, 1053859839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053859840, 1053860863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053860864, 1053862847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053862848, 1053862879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053862880, 1053863167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053863168, 1053864959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053864960, 1053865215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053865216, 1053865727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053865728, 1053865759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053865760, 1053865983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053865984, 1053866239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866240, 1053866495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866496, 1053866799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866800, 1053866807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866808, 1053866823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866824, 1053866831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866832, 1053866847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866848, 1053866871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866872, 1053866879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053866880, 1053867007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053867008, 1053867775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053867776, 1053867975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053867976, 1053867999, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053868000, 1053868007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053868008, 1053868015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053868016, 1053868031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053868032, 1053868415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053868416, 1053868799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053868800, 1053869567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053869568, 1053870079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053870080, 1053870335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053870336, 1053870591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053870592, 1053870847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053870848, 1053871359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053871360, 1053871615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053871616, 1053871871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053871872, 1053872383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053872384, 1053872447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053872448, 1053872895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053872896, 1053873663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053873664, 1053876223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053876224, 1053876991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053876992, 1053877247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053877248, 1053878271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053878272, 1053878783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053878784, 1053879047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053879048, 1053879055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053879056, 1053879071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053879072, 1053879103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053879104, 1053879295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053879296, 1053882111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053882112, 1053882367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053882368, 1053882879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053882880, 1053883391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053883392, 1053884415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053884416, 1053892607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053892608, 1053894735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053894736, 1053894743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053894744, 1053894751, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053894752, 1053894783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053894784, 1053894815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053894816, 1053894831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053894832, 1053894847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053894848, 1053895423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053895424, 1053895679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053895680, 1053895935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053895936, 1053896087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053896088, 1053896095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053896096, 1053896127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053896128, 1053896447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053896448, 1053896703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053896704, 1053900799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053900800, 1053917183, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053917184, 1053925375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053925376, 1053933567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053933568, 1053949951, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053949952, 1053984415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053984416, 1053984447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053984448, 1053984895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053984896, 1053985023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1053985024, 1054015487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054015488, 1054089215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054089216, 1054097407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054097408, 1054100575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054100576, 1054100607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054100608, 1054101343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054101344, 1054101375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054101376, 1054105599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054105600, 1054113791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054113792, 1054121983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054121984, 1054130175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054130176, 1054138367, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054138368, 1054146559, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054146560, 1054179327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054179328, 1054187519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054187520, 1054195711, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054195712, 1054212095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054212096, 1054213383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054213384, 1054213391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054213392, 1054237183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054237184, 1054237439, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054237440, 1054277631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054277632, 1054343167, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054343168, 1054351359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054351360, 1054359551, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054359552, 1054367743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054367744, 1054375935, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054375936, 1054384127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054384128, 1054400511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054400512, 1054408703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054408704, 1054416895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054416896, 1054425087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054425088, 1054441471, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054441472, 1054449663, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054449664, 1054457855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054457856, 1054474239, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054474240, 1054539775, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054539776, 1054605311, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054605312, 1054613503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054613504, 1054629887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054629888, 1054638079, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054638080, 1054646271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054646272, 1054654463, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054654464, 1054662655, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054662656, 1054670847, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054670848, 1054671103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671104, 1054671167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671168, 1054671231, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671232, 1054671371, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671372, 1054671375, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671376, 1054671415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671416, 1054671423, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671424, 1054671431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671432, 1054671439, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054671440, 1054672127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672128, 1054672143, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672144, 1054672159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672160, 1054672175, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672176, 1054672255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672256, 1054672287, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672288, 1054672319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672320, 1054672335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672336, 1054672367, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672368, 1054672383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672384, 1054672447, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672448, 1054672719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672720, 1054672727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672728, 1054672735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672736, 1054672767, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672768, 1054672775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672776, 1054672783, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672784, 1054672791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672792, 1054672807, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054672808, 1054673663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054673664, 1054673727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054673728, 1054673855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054673856, 1054674047, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674048, 1054674079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674080, 1054674111, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674112, 1054674455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674456, 1054674471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674472, 1054674479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674480, 1054674495, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674496, 1054674503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674504, 1054674511, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674512, 1054674527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674528, 1054674687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054674688, 1054675199, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054675200, 1054675455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054675456, 1054675711, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054675712, 1054675967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054675968, 1054676223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054676224, 1054679039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054679040, 1054687231, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054687232, 1054703615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054703616, 1054719999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054720000, 1054867455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054867456, 1054943231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054943232, 1054943487, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054943488, 1054949519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054949520, 1054949527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054949528, 1054949807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054949808, 1054949815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054949816, 1054963255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054963256, 1054963263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054963264, 1054969031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054969032, 1054969039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1054969040, 1055129599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055129600, 1055195135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055195136, 1055196159, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055196160, 1055197823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055197824, 1055197919, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055197920, 1055198463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055198464, 1055198975, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055198976, 1055199103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055199104, 1055199359, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055199360, 1055199375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055199376, 1055199463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055199464, 1055199487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055199488, 1055201023, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055201024, 1055203327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055203328, 1055203359, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055203360, 1055203839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055203840, 1055204095, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055204096, 1055204863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055204864, 1055205375, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055205376, 1055205631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055205632, 1055205887, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055205888, 1055206655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055206656, 1055207423, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055207424, 1055207679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055207680, 1055209471, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055209472, 1055209727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055209728, 1055210239, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055210240, 1055210495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055210496, 1055210751, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055210752, 1055211263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055211264, 1055211519, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055211520, 1055219711, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055219712, 1055221503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055221504, 1055221631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055221632, 1055223807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055223808, 1055223839, N'LU', N'Luxembourg') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055223840, 1055223871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055223872, 1055223999, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055224000, 1055224063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055224064, 1055224463, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055224464, 1055224575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055224576, 1055224607, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055224608, 1055224831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055224832, 1055224911, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055224912, 1055225855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055225856, 1055226111, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226112, 1055226175, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226176, 1055226191, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226192, 1055226207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226208, 1055226239, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226240, 1055226255, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226256, 1055226263, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226264, 1055226271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226272, 1055226367, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226368, 1055226399, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055226400, 1055227903, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055227904, 1055231999, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055232000, 1055234079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055234080, 1055234127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055234128, 1055236095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055236096, 1055241983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055241984, 1055242239, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055242240, 1055252479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055252480, 1055252735, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055252736, 1055252991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055252992, 1055256447, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055256448, 1055256463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055256464, 1055256575, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055256576, 1055260671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055260672, 1055326207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055326208, 1055334399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055334400, 1055334655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055334656, 1055339519, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055339520, 1055339647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055339648, 1055342591, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055342592, 1055358975, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055358976, 1055367167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055367168, 1055375359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055375360, 1055391743, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055391744, 1055457279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055457280, 1055465471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055465472, 1055467575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055467576, 1055467579, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055467580, 1055469055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055469056, 1055469059, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055469060, 1055469063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055469064, 1055469067, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055469068, 1055469071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055469072, 1055471615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055471616, 1055472127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055472128, 1055472383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055472384, 1055472639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055472640, 1055473663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055473664, 1055490047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055490048, 1055522815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055522816, 1055588351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055588352, 1055653887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055653888, 1055681055, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055681056, 1055681071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055681072, 1055772395, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055772396, 1055772399, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055772400, 1055784959, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055784960, 1055850495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055850496, 1055916031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055924224, 1055932415, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055932416, 1055940607, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055940608, 1055948799, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055948800, 1055956991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055956992, 1055965183, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055965184, 1055973375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055973376, 1055981567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055981568, 1055989759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055989760, 1055995135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055995136, 1055995263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055995264, 1055997951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1055997952, 1056014335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056014336, 1056022527, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056022528, 1056030719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056030720, 1056047103, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056047104, 1056178175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056178176, 1056194559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056194560, 1056210943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056210944, 1056219135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056219136, 1056227327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056227328, 1056243711, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056243712, 1056251903, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056251904, 1056260095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056260096, 1056276479, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056276480, 1056374783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056374784, 1056440319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056440320, 1056473087, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056473088, 1056505087, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056505088, 1056505107, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056505108, 1056505115, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056505116, 1056505119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056505120, 1056505343, N'FI', N'Finland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056505344, 1056505599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056505600, 1056505855, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056505856, 1056514047, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056514048, 1056522239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056522240, 1056538623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056538624, 1056546815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056546816, 1056555007, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056555008, 1056571391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056571392, 1056669695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056669696, 1056702463, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056702464, 1056874559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874560, 1056874567, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874568, 1056874599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874600, 1056874607, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874608, 1056874639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874640, 1056874679, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874680, 1056874751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874752, 1056874783, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874784, 1056874919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874920, 1056874927, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874928, 1056874991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056874992, 1056875007, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875008, 1056875071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875072, 1056875103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875104, 1056875111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875112, 1056875135, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875136, 1056875151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875152, 1056875167, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875168, 1056875263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875264, 1056875311, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875312, 1056875615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875616, 1056875623, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875624, 1056875639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875640, 1056875671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056875672, 1056876031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056876032, 1056876047, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056876048, 1056964607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1056964608, 1061227007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061227008, 1061227263, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061227264, 1061227774, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061227775, 1061227775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061227776, 1061477887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061477888, 1061478143, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061478144, 1061478399, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061478400, 1061479423, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061479424, 1061484031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061484032, 1061485567, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061485568, 1061518015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061518016, 1061518047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061518048, 1061558271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061558272, 1061559295, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061559296, 1061588735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061588736, 1061588991, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061588992, 1061633567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061633568, 1061633575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061633576, 1061709343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061709344, 1061709375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061709376, 1061738495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061738496, 1061738751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061738752, 1061748991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061748992, 1061749247, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061749248, 1061762047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061762048, 1061762303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061762304, 1061776479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061776480, 1061776639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061776640, 1061783551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061783552, 1061785087, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061785088, 1061833855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061833856, 1061833983, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061833984, 1061847711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061847712, 1061847743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061847744, 1061853695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061853696, 1061854207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061854208, 1061939711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061939712, 1061940223, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1061940224, 1062000319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062000320, 1062000383, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062000384, 1062069247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062069248, 1062070271, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062070272, 1062105519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062105520, 1062105535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062105536, 1062166991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062166992, 1062167007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062167008, 1062217983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062217984, 1062218111, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062218112, 1062219519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062219520, 1062219775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062219776, 1062222975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062222976, 1062223039, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062223040, 1062244311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062244312, 1062244319, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062244320, 1062378767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062378768, 1062378783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062378784, 1062429695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062429696, 1062430207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062430208, 1062486271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062486272, 1062486527, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062486528, 1062497791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062497792, 1062498303, N'FM', N'Micronesia, Federated States of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062498304, 1062499303, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062499304, 1062499311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062499312, 1062518783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062518784, 1062519039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062519040, 1062530047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062530048, 1062531071, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062531072, 1062545919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062545920, 1062546431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062546432, 1062597375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062597376, 1062597631, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062597632, 1062602239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062602240, 1062602495, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062602496, 1062700695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062700696, 1062700703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062700704, 1062724543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062724544, 1062724575, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062724576, 1062725103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062725104, 1062725111, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062725112, 1062731839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062731840, 1062731847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062731848, 1062871551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062871552, 1062872319, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062872320, 1062884351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062884352, 1062884863, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1062884864, 1063335422, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063335423, 1063335423, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063335424, 1063390207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063390208, 1063390463, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063390464, 1063560575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063560576, 1063560607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063560608, 1063560687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063560688, 1063560703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063560704, 1063561215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063561216, 1063561247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063561248, 1063561263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063561264, 1063561295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063561296, 1063561327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063561328, 1063561343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063561344, 1063567359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063567360, 1063575551, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063575552, 1063579999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063580000, 1063580015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063580016, 1063587631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063587632, 1063587647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063587648, 1063588463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063588464, 1063588479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063588480, 1063598511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063598512, 1063598527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063598528, 1063598847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063598848, 1063598863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063598864, 1063690239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063690240, 1063690495, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063690496, 1063747583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063747584, 1063747839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063747840, 1063748095, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063748096, 1063748607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063748608, 1063749119, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063749120, 1063749375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063749376, 1063749631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063749632, 1063749887, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063749888, 1063750143, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063750144, 1063750399, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063750400, 1063750463, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063750464, 1063750527, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063750528, 1063750543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063750544, 1063750559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063750560, 1063750655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063750656, 1063751679, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063751680, 1063803367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063803368, 1063803375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063803376, 1063833823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063833824, 1063833855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063833856, 1063895039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063895040, 1063899135, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1063899136, 1064064127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064064128, 1064064191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064064192, 1064124927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064124928, 1064125695, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064125696, 1064125951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064125952, 1064126207, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064126208, 1064126719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064126720, 1064126975, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064126976, 1064127487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064127488, 1064127999, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064128000, 1064133535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064133536, 1064133567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064133568, 1064170751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170752, 1064170799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170800, 1064170807, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170808, 1064170823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170824, 1064170831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170832, 1064170871, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170872, 1064170879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170880, 1064170911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170912, 1064170919, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170920, 1064170927, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170928, 1064170943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170944, 1064170991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064170992, 1064170999, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171000, 1064171007, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171008, 1064171135, N'LB', N'Lebanon') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171136, 1064171263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171264, 1064171551, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171552, 1064171559, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171560, 1064171575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171576, 1064171583, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171584, 1064171607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171608, 1064171615, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171616, 1064171631, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171632, 1064171647, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171648, 1064171775, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171776, 1064171799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171800, 1064171815, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171816, 1064171823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171824, 1064171839, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171840, 1064171855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171856, 1064171871, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171872, 1064171903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171904, 1064171911, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171912, 1064171919, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171920, 1064171927, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171928, 1064171935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171936, 1064171967, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064171968, 1064172031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064172032, 1064178687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064178688, 1064178815, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064178816, 1064189439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064189440, 1064189503, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064189504, 1064211839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064211840, 1064211967, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064211968, 1064221951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064221952, 1064222207, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064222208, 1064231023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064231024, 1064231039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064231040, 1064232359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064232360, 1064232367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064232368, 1064402687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064402688, 1064402751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064402752, 1064445183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064445184, 1064445439, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064445440, 1064527871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064527872, 1064528383, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064528384, 1064650751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064650752, 1064651775, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064651776, 1064751487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064751488, 1064751551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064751552, 1064973055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064973056, 1064973183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1064973184, 1065034087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065034088, 1065034103, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065034104, 1065519359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065519360, 1065519487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065519488, 1065549823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065615360, 1065806947, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065806948, 1065806957, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065806958, 1065811967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065811968, 1065820159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065820160, 1065824255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065828352, 1065906175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065906176, 1065908223, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065908224, 1065957407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065957408, 1065957439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1065957440, 1066339007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066339008, 1066339023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066339024, 1066404607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066404608, 1066404863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066404864, 1066529919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066529920, 1066530047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066530048, 1066548767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066548768, 1066548783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066548784, 1066575199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066575200, 1066575207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066575208, 1066576959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066576960, 1066576991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066576992, 1066584063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066584064, 1066586111, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066586112, 1066604927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066604928, 1066604959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066604960, 1066627335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066627336, 1066627343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066627344, 1066733247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066733248, 1066733279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066733280, 1066736447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066736448, 1066736479, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066736480, 1066828063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066828064, 1066828127, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066828128, 1066828255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066828256, 1066828287, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066828288, 1066829311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066829312, 1066829567, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066829568, 1066830079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830080, 1066830111, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830112, 1066830119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830120, 1066830127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830128, 1066830207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830208, 1066830271, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830272, 1066830287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830288, 1066830303, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830304, 1066830311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830312, 1066830319, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830320, 1066830335, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830336, 1066830591, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830592, 1066830783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830784, 1066830807, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830808, 1066830815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830816, 1066830847, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830848, 1066830972, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830973, 1066830983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066830984, 1066830999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066831000, 1066831039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066831040, 1066831087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066831088, 1066831199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066831200, 1066831231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066831232, 1066832527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066832528, 1066832543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066832544, 1066898783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066898784, 1066898815, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1066898816, 1067452671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067452672, 1067452927, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067452928, 1067473471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067473472, 1067473535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067473536, 1067474751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067474752, 1067474767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067474768, 1067481855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067481856, 1067482111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067482112, 1067503615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067503616, 1067503743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067503744, 1067532287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067532288, 1067532799, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067532800, 1067537959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067537960, 1067537967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067537968, 1067552511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067552512, 1067552767, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067552768, 1067562495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067562496, 1067562751, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067562752, 1067590111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067590112, 1067590143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067590144, 1067593983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067593984, 1067594239, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067594240, 1067617791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067617792, 1067618047, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067618048, 1067618111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067618112, 1067618175, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067618176, 1067621375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067621376, 1067621631, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067621632, 1067625967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067625968, 1067625983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067625984, 1067653255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067653256, 1067653263, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067653264, 1067693055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067693056, 1067693567, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067693568, 1067712543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067712544, 1067712575, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067712576, 1067726847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067726848, 1067727359, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067727360, 1067727367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067727368, 1067736831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067736832, 1067737087, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067737088, 1067762815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067762816, 1067762831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067762832, 1067780607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067780608, 1067780863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067780864, 1067824895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067824896, 1067825151, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067825152, 1067826239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067826240, 1067826247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067826248, 1067838463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067838464, 1067838591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067838592, 1067856575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067856576, 1067856607, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067856608, 1067863807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067863808, 1067863935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067863936, 1067894071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067894072, 1067894079, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067894080, 1067908295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067908296, 1067908303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067908304, 1067914655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067914656, 1067914751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067914752, 1067916031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067916032, 1067916287, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067916288, 1067918879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067918880, 1067918887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067918888, 1067923231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067923232, 1067923239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067923240, 1067934911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067934912, 1067934927, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067934928, 1067934935, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067934936, 1067954751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067954752, 1067954783, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067954784, 1067977895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067977896, 1067977903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067977904, 1067978751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067978752, 1067979007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067979008, 1067989247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067989248, 1067989503, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067989504, 1067998463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067998464, 1067998719, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1067998720, 1068004351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068004352, 1068004607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068004608, 1068017663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068017664, 1068018175, N'YE', N'Yemen') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068018176, 1068070887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068070888, 1068070895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068070896, 1068083455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068083456, 1068083711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068083712, 1068096415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068096416, 1068096447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068096448, 1068119407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068119408, 1068119423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068119424, 1068167439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068167440, 1068167447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068167448, 1068171951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068171952, 1068171967, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068171968, 1068175871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068175872, 1068176383, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068176384, 1068179487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068179488, 1068179503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068179504, 1068198879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068198880, 1068198911, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068198912, 1068199935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068199936, 1068204031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068204032, 1068230655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068230656, 1068230911, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068230912, 1068239935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068239936, 1068239999, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068240000, 1068284735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068284736, 1068284743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068284744, 1068326911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068326912, 1068327167, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068327168, 1068346367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068346368, 1068346879, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068346880, 1068362863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068362864, 1068362879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068362880, 1068419071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068419072, 1068421119, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068421120, 1068425983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068425984, 1068426239, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068426240, 1068462079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068462080, 1068462335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068462336, 1068478591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068478592, 1068478607, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068478608, 1068480159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068480160, 1068480191, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068480192, 1068480431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068480432, 1068480447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068480448, 1068481023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068481024, 1068481535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068481536, 1068491263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068491264, 1068491519, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1068491520, 1070499559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070499560, 1070499567, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070499568, 1070729471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070729472, 1070729727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070729728, 1070742511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070742512, 1070742519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070742520, 1070742527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070742528, 1070743039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070743040, 1070743167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070743168, 1070743183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070743184, 1070766079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070766080, 1070766335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070766336, 1070805559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070805560, 1070805567, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1070805568, 1071100159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071100160, 1071100415, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071100416, 1071100927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071100928, 1071101951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071101952, 1071120383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071120384, 1071194015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071194016, 1071194079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071194080, 1071263743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071263744, 1071263999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071264000, 1071265791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071265792, 1071266047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071266048, 1071275775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071275776, 1071276031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071276032, 1071286015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071286016, 1071286271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071286272, 1071308799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071308800, 1071308815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071308816, 1071308879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071308880, 1071308895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071308896, 1071309407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071309408, 1071309439, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071309440, 1071309471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071309472, 1071309503, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071309504, 1071309695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071309696, 1071309727, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071309728, 1071355647, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071355648, 1071355903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071355904, 1071362079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071362080, 1071362111, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071362112, 1071362207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071362208, 1071362239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071362240, 1071362335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071362336, 1071362399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071362400, 1071363839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071363840, 1071364095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071364096, 1071389823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071389824, 1071389951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071389952, 1071391231, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071391232, 1071391487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071391488, 1071391583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071391584, 1071391615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071391616, 1071393023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071393024, 1071393279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071393280, 1071644671, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1071644672, 1072437567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072437568, 1072437631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072437632, 1072512951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072512952, 1072512959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072512960, 1072680623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072680624, 1072680631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072680632, 1072697639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072697640, 1072697647, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072697648, 1072707327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072707328, 1072707583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072707584, 1072727039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072727040, 1072727047, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072727048, 1072727215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072727216, 1072727223, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072727224, 1072735871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072735872, 1072735999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072736000, 1072777631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072777632, 1072777647, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072777648, 1072922623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072922624, 1072922879, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072922880, 1072923135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072923136, 1072923391, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072923392, 1072923647, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072923648, 1072924159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072924160, 1072924671, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072924672, 1072924927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072924928, 1072925695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072925696, 1072926207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926208, 1072926463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926464, 1072926471, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926472, 1072926527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926528, 1072926591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926592, 1072926655, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926656, 1072926719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926720, 1072926975, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072926976, 1072927231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072927232, 1072927487, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072927488, 1072927999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928000, 1072928047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928048, 1072928063, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928064, 1072928095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928096, 1072928127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928128, 1072928255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928256, 1072928271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928272, 1072928303, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928304, 1072928319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928320, 1072928383, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928384, 1072928447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928448, 1072928511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928512, 1072928767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072928768, 1072929279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072929280, 1072929535, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072929536, 1072930047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072930048, 1072930303, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072930304, 1072931071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072931072, 1072931327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072931328, 1072931583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072931584, 1072931839, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072931840, 1072932095, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072932096, 1072932351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072932352, 1072932863, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072932864, 1072933887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072933888, 1072934143, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072934144, 1072934655, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072934656, 1072934783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072934784, 1072934847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072934848, 1072934879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072934880, 1072934911, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072934912, 1072934975, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072934976, 1072935135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072935136, 1072935159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072935160, 1072935167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072935168, 1072935679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072935680, 1072935807, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072935808, 1072935871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072935872, 1072935935, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072935936, 1072936063, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072936064, 1072936191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072936192, 1072936447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072936448, 1072936959, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072936960, 1072937215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072937216, 1072937471, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072937472, 1072937727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072937728, 1072937983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072937984, 1072938239, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072938240, 1072938495, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072938496, 1072938751, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072938752, 1072939007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072939008, 1072955391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1072955392, 1073022975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073022976, 1073025791, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073025792, 1073026303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073026304, 1073026431, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073026432, 1073026559, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073026560, 1073027071, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073027072, 1073028351, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073028352, 1073029119, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073029120, 1073031167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073031168, 1073031231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073031232, 1073031263, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073031264, 1073031423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073031424, 1073031935, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073031936, 1073032703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073032704, 1073033215, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073033216, 1073035263, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073035264, 1073036287, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073036288, 1073036543, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073036544, 1073037055, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073037056, 1073037311, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073037312, 1073037823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073037824, 1073039359, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073039360, 1073041407, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073041408, 1073043455, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073043456, 1073045503, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073045504, 1073047551, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073047552, 1073049599, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073049600, 1073053695, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073053696, 1073096191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073096192, 1073097471, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073097472, 1073098751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073102848, 1073284079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073284080, 1073284087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073284088, 1073295359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073299456, 1073373183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073373184, 1073381375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073381376, 1073381399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073381400, 1073381463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073381464, 1073381471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073381472, 1073382303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382304, 1073382335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382336, 1073382399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382400, 1073382687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382688, 1073382695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382696, 1073382815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382816, 1073382847, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382848, 1073382855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382856, 1073382863, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382864, 1073382879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382880, 1073382911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382912, 1073382959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382960, 1073382975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073382976, 1073383519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073383520, 1073383551, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073383552, 1073383727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073383728, 1073383735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073383736, 1073383839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073383840, 1073383871, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073383872, 1073384191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384192, 1073384223, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384224, 1073384231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384232, 1073384239, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384240, 1073384255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384256, 1073384287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384288, 1073384295, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384296, 1073384511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384512, 1073384575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384576, 1073384607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384608, 1073384639, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384640, 1073384711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384712, 1073384719, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384720, 1073384775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384776, 1073384783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073384784, 1073385087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073385088, 1073385095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073385096, 1073385151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073385152, 1073385183, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073385184, 1073385279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073385280, 1073385311, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073385312, 1073393911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073393912, 1073393919, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073393920, 1073394191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394192, 1073394207, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394208, 1073394239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394240, 1073394247, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394248, 1073394255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394256, 1073394271, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394272, 1073394279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394280, 1073394287, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394288, 1073394295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394296, 1073394303, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394304, 1073394311, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394312, 1073394439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394440, 1073394463, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394464, 1073394495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394496, 1073394503, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394504, 1073394543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394544, 1073394559, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394560, 1073394591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394592, 1073394623, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394624, 1073394719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394720, 1073394751, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394752, 1073394767, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394768, 1073394799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394800, 1073394807, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073394808, 1073395391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073395392, 1073395399, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073395400, 1073395407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073395408, 1073395423, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073395424, 1073395967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073395968, 1073395999, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396000, 1073396191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396192, 1073396207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396208, 1073396215, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396216, 1073396751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396752, 1073396831, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396832, 1073396863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396864, 1073396895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396896, 1073396911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396912, 1073396919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396920, 1073396927, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396928, 1073396935, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396936, 1073396959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396960, 1073396991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073396992, 1073397247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073397248, 1073397311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073397312, 1073435583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073435584, 1073435647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073435648, 1073438207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073438208, 1073438463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073438464, 1073620375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073620376, 1073620383, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1073620384, 1074020351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074020352, 1074028543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074028544, 1074118655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074118656, 1074120703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074120704, 1074120719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074120720, 1074120959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074120960, 1074121215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074121216, 1074122415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074122416, 1074122431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074122432, 1074125055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074125056, 1074125311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074125312, 1074128511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074128512, 1074128575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074128576, 1074130943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074130944, 1074131199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074131200, 1074135039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074135040, 1074184191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074184192, 1074188287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074192384, 1074193920, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074193921, 1074193983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074193984, 1074194303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074194304, 1074194367, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074194368, 1074194687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074194688, 1074194943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074194944, 1074233343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074233344, 1074241535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074241536, 1074262015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074262016, 1074266111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074266112, 1074397183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074397184, 1074528255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074528256, 1074733055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074733056, 1074737151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074737152, 1074745343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074745344, 1074757631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074757632, 1074765823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074765824, 1074855935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074868224, 1074871583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074871584, 1074871679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074871680, 1074937855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074937856, 1074946047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074946048, 1074956799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074956800, 1074957055, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074957056, 1074962431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074962432, 1074970623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1074970624, 1075191807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075216384, 1075235391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075235392, 1075235407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075235408, 1075421183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075421184, 1075429375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075429376, 1075433471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075445760, 1075478527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075478528, 1075479103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075479104, 1075479111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075479112, 1075479135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075479136, 1075479151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075479152, 1075479279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075479280, 1075479295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075479296, 1075480463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075480464, 1075480479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075480480, 1075480975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075480976, 1075480991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075480992, 1075482047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075482048, 1075482079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075482080, 1075484047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075484048, 1075484063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075484064, 1075492095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075492096, 1075492103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075492104, 1075494911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075494912, 1075513151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075513152, 1075513183, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075513184, 1075523583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075527680, 1075532663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075532664, 1075532673, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075532674, 1075576831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075576832, 1075576967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075576968, 1075576975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075576976, 1075576991, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075576992, 1075577023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577024, 1075577087, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577088, 1075577103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577104, 1075577311, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577312, 1075577599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577600, 1075577775, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577776, 1075577791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577792, 1075577855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075577856, 1075578111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075578112, 1075578623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075578624, 1075578879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075578880, 1075578935, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075578936, 1075578943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075578944, 1075579055, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075579056, 1075579059, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075579060, 1075581495, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075581496, 1075581499, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075581500, 1075582615, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075582616, 1075582623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075582624, 1075583119, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583120, 1075583123, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583124, 1075583147, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583148, 1075583151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583152, 1075583503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583504, 1075583519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583520, 1075583903, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583904, 1075583911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075583912, 1075584071, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075584072, 1075584095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075584096, 1075584695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075584696, 1075584711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075584712, 1075585023, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075585024, 1075609599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075609600, 1075613695, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075613696, 1075838975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075855360, 1075871743, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075871744, 1075970047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075970048, 1075972095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075972096, 1075976695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075976696, 1075976703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075976704, 1075976960, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075976961, 1075977024, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075977025, 1075977087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075977088, 1075977199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075977200, 1075977215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075977216, 1075978239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075978240, 1075978751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075978752, 1075978815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075978816, 1075979007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075979008, 1075979071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075979072, 1075979199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075979200, 1075979327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075979328, 1075979455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075979456, 1075979519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075979520, 1075979967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075979968, 1075980031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075980032, 1075980575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075980576, 1075980591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075980592, 1075981471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075981472, 1075981487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075981488, 1075981535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075981536, 1075981567, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075981568, 1075981823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075981824, 1075982335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982336, 1075982591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982592, 1075982595, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982596, 1075982718, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982719, 1075982735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982736, 1075982751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982752, 1075982783, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982784, 1075982815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982816, 1075982831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982832, 1075982847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075982848, 1075984383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075984384, 1075984639, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075984640, 1075984823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075984824, 1075984831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075984832, 1075985663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075985664, 1075989247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075989248, 1075989311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075989312, 1075989359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075989360, 1075989375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075989376, 1075989791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075989792, 1075989823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075989824, 1075990527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075990528, 1075990655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075990656, 1075990671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075990672, 1075991551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075991552, 1075991583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075991584, 1075991647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075991648, 1075991663, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075991664, 1075992319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075992320, 1075992447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075992448, 1075993087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075993088, 1075993103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075993104, 1075994623, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075994624, 1075994879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075994880, 1075995135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075995136, 1075995326, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075995327, 1075995343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075995344, 1075995503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075995504, 1075995519, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075995520, 1075995567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075995568, 1075995583, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075995584, 1075996671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075996672, 1075996735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075996736, 1075996767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075996768, 1075996799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075996800, 1075997087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997088, 1075997103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997104, 1075997119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997120, 1075997183, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997184, 1075997519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997520, 1075997535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997536, 1075997695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997696, 1075997823, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997824, 1075997951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075997952, 1075998047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1075998048, 1075999999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076000000, 1076000255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076000256, 1076000767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076000768, 1076002047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076002048, 1076002559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076002560, 1076002815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076002816, 1076002823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076002824, 1076002831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076002832, 1076002879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076002880, 1076002975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076002976, 1076003519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076003520, 1076003535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076003536, 1076003551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076003552, 1076004367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076004368, 1076004423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076004424, 1076004431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076004432, 1076004559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076004560, 1076004575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076004576, 1076004863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076004864, 1076005119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076005120, 1076005631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076005632, 1076005887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076005888, 1076006079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076006080, 1076006111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076006112, 1076006399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076006400, 1076007167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076007168, 1076007199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076007200, 1076007247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076007248, 1076007295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076007296, 1076007359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076007360, 1076007423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076007424, 1076007679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076007680, 1076008191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076008192, 1076008255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076008256, 1076008319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076008320, 1076008383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076008384, 1076008447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076008448, 1076008959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076008960, 1076009215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076009216, 1076009343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076009344, 1076009535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076009536, 1076009599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076009600, 1076027392, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027393, 1076027423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027424, 1076027455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027456, 1076027647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027648, 1076027648, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027649, 1076027791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027792, 1076027809, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027810, 1076027903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027904, 1076027919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027920, 1076027935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076027936, 1076027999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028000, 1076028031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028032, 1076028111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028112, 1076028143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028144, 1076028159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028160, 1076028415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028416, 1076028447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028448, 1076028479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028480, 1076028543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028544, 1076028927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076028928, 1076029183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029184, 1076029311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029312, 1076029343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029344, 1076029359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029360, 1076029375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029376, 1076029407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029408, 1076029415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029416, 1076029439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029440, 1076029951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076029952, 1076030207, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076030208, 1076030223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076030224, 1076030239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076030240, 1076030255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076030256, 1076030263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076030264, 1076030311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076030312, 1076030975, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076030976, 1076031487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076031488, 1076031743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076031744, 1076031999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076032000, 1076032255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076032256, 1076032511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076032512, 1076033695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076033696, 1076033727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076033728, 1076033903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076033904, 1076033919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076033920, 1076036247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036248, 1076036255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036256, 1076036351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036352, 1076036605, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036606, 1076036735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036736, 1076036751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036752, 1076036791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036792, 1076036799, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076036800, 1076037439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076037440, 1076037447, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076037448, 1076043775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076043776, 1076043839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076043840, 1076043871, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076043872, 1076044095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044096, 1076044127, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044128, 1076044175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044176, 1076044183, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044184, 1076044191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044192, 1076044551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044552, 1076044567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044568, 1076044703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044704, 1076044735, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076044736, 1076047527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076047528, 1076047535, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076047536, 1076047551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076047552, 1076047583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076047584, 1076047967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076047968, 1076047975, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076047976, 1076048639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076048640, 1076048671, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076048672, 1076048703, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076048704, 1076048735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076048736, 1076048767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076048768, 1076048831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076048832, 1076048863, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076048864, 1076049151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076049152, 1076049407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076049408, 1076049439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076049440, 1076049471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076049472, 1076049503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076049504, 1076049919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076049920, 1076050175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076050176, 1076076543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076076544, 1076077311, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076077312, 1076077567, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076077568, 1076078335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076078336, 1076078591, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076078592, 1076078847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076078848, 1076079103, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076079104, 1076079615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076079616, 1076080127, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076080128, 1076183039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183040, 1076183071, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183072, 1076183103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183104, 1076183263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183264, 1076183295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183296, 1076183423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183424, 1076183455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183456, 1076183807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076183808, 1076184063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184064, 1076184127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184128, 1076184159, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184160, 1076184191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184192, 1076184223, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184224, 1076184255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184256, 1076184287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184288, 1076184319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184320, 1076184575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184576, 1076184703, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184704, 1076184959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184960, 1076184991, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076184992, 1076185023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185024, 1076185055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185056, 1076185215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185216, 1076185343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185344, 1076185439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185440, 1076185471, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185472, 1076185599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185600, 1076185855, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076185856, 1076186303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186304, 1076186335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186336, 1076186367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186368, 1076186623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186624, 1076186655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186656, 1076186751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186752, 1076186783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186784, 1076186879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076186880, 1076187135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076187136, 1076187391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076187392, 1076187647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076187648, 1076187679, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076187680, 1076187871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076187872, 1076187903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076187904, 1076188159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076188160, 1076188287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076188288, 1076188415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076188416, 1076188671, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076188672, 1076189215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189216, 1076189279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189280, 1076189311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189312, 1076189343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189344, 1076189407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189408, 1076189439, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189440, 1076189695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189696, 1076189983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076189984, 1076190047, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190048, 1076190079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190080, 1076190143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190144, 1076190175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190176, 1076190207, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190208, 1076190463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190464, 1076190527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190528, 1076190591, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190592, 1076190815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190816, 1076190847, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190848, 1076190911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190912, 1076190943, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076190944, 1076192255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076192256, 1076192383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076192384, 1076192767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076192768, 1076192831, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076192832, 1076192895, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076192896, 1076193023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076193024, 1076193055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076193056, 1076193087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076193088, 1076193151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076193152, 1076193183, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076193184, 1076193247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076193248, 1076193279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076193280, 1076194367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194368, 1076194399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194400, 1076194431, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194432, 1076194463, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194464, 1076194495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194496, 1076194527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194528, 1076194559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194560, 1076194815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076194816, 1076195071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195072, 1076195327, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195328, 1076195551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195552, 1076195583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195584, 1076195871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195872, 1076195903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195904, 1076195935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195936, 1076195967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076195968, 1076195999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196000, 1076196063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196064, 1076196095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196096, 1076196383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196384, 1076196479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196480, 1076196511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196512, 1076196543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196544, 1076196641, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196642, 1076196671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076196672, 1076197119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076197120, 1076197375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076197376, 1076197631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076197632, 1076197663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076197664, 1076198655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076198656, 1076198911, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076198912, 1076199167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076199168, 1076199423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076199424, 1076281695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076281696, 1076281727, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076281728, 1076282143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282144, 1076282175, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282176, 1076282239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282240, 1076282271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282272, 1076282495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282496, 1076282527, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282528, 1076282687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282688, 1076282719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282720, 1076282751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282752, 1076282847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282848, 1076282879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076282880, 1076283135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076283136, 1076283167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076283168, 1076283199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076283200, 1076283231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076283232, 1076283647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076283648, 1076283903, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076283904, 1076284191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076284192, 1076284223, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076284224, 1076284255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076284256, 1076284287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076284288, 1076284927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076284928, 1076284959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076284960, 1076284991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076284992, 1076285151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285152, 1076285183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285184, 1076285215, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285216, 1076285247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285248, 1076285343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285344, 1076285375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285376, 1076285535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285536, 1076285567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285568, 1076285599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285600, 1076285631, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076285632, 1076286047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286048, 1076286079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286080, 1076286431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286432, 1076286463, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286464, 1076286559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286560, 1076286591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286592, 1076286719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286720, 1076286751, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286752, 1076286815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286816, 1076286847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286848, 1076286911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286912, 1076286943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286944, 1076286975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076286976, 1076287615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076287616, 1076287647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076287648, 1076287743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076287744, 1076287999, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288000, 1076288127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288128, 1076288159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288160, 1076288415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288416, 1076288447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288448, 1076288479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288480, 1076288511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288512, 1076288735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288736, 1076288767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288768, 1076288895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288896, 1076288927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076288928, 1076289087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076289088, 1076289119, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076289120, 1076289215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076289216, 1076289247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076289248, 1076289279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076289280, 1076289535, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076289536, 1076289983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076289984, 1076290047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290048, 1076290271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290272, 1076290303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290304, 1076290559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290560, 1076290591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290592, 1076290655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290656, 1076290687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290688, 1076290751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290752, 1076290783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290784, 1076290815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076290816, 1076291103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291104, 1076291135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291136, 1076291167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291168, 1076291199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291200, 1076291231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291232, 1076291263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291264, 1076291359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291360, 1076291391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291392, 1076291423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291424, 1076291551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291552, 1076291583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291584, 1076291647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291648, 1076291679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076291680, 1076292063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292064, 1076292095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292096, 1076292319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292320, 1076292351, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292352, 1076292415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292416, 1076292447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292448, 1076292543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292544, 1076292575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292576, 1076292607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292608, 1076292639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292640, 1076292863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076292864, 1076293119, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076293120, 1076293279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076293280, 1076293311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076293312, 1076294335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294336, 1076294367, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294368, 1076294431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294432, 1076294463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294464, 1076294559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294560, 1076294623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294624, 1076294655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294656, 1076294687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294688, 1076294895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294896, 1076294927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076294928, 1076296031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296032, 1076296063, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296064, 1076296159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296160, 1076296191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296192, 1076296447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296448, 1076296703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296704, 1076296735, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296736, 1076296959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076296960, 1076297215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076297216, 1076298535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298536, 1076298543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298544, 1076298559, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298560, 1076298567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298568, 1076298575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298576, 1076298607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298608, 1076298615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298616, 1076298623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298624, 1076298671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298672, 1076298687, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298688, 1076298695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298696, 1076298703, N'MH', N'Marshall Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298704, 1076298735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298736, 1076298743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298744, 1076298775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298776, 1076298783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298784, 1076298791, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298792, 1076298823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298824, 1076298831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298832, 1076298919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298920, 1076298927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298928, 1076298975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298976, 1076298983, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298984, 1076298991, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076298992, 1076298999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299000, 1076299007, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299008, 1076299023, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299024, 1076299095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299096, 1076299103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299104, 1076299127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299128, 1076299135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299136, 1076299159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299160, 1076299167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299168, 1076299175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299176, 1076299183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299184, 1076299271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299272, 1076299279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299280, 1076299287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299288, 1076299295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299296, 1076299303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299304, 1076299311, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299312, 1076299399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299400, 1076299407, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299408, 1076299415, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299416, 1076299423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299424, 1076299439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299440, 1076299471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299472, 1076299479, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299480, 1076299487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299488, 1076299503, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299504, 1076299519, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299520, 1076299551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299552, 1076299583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299584, 1076299679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299680, 1076299687, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299688, 1076299703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299704, 1076299711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299712, 1076299727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299728, 1076299735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299736, 1076299767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299768, 1076299775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299776, 1076299823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299824, 1076299831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299832, 1076299847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299848, 1076299855, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299856, 1076299863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299864, 1076299871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299872, 1076299943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299944, 1076299951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299952, 1076299959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299960, 1076299975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299976, 1076299983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076299984, 1076300015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300016, 1076300031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300032, 1076300047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300048, 1076300055, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300056, 1076300071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300072, 1076300079, N'CK', N'Cook Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300080, 1076300095, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300096, 1076300111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300112, 1076300119, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300120, 1076300175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300176, 1076300191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300192, 1076300207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300208, 1076300223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300224, 1076300231, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300232, 1076300255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300256, 1076300271, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300272, 1076300279, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300280, 1076300287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300288, 1076300295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300296, 1076300303, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300304, 1076300311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300312, 1076300319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300320, 1076300335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300336, 1076300343, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300344, 1076300383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300384, 1076300391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300392, 1076300399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300400, 1076300447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300448, 1076300455, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300456, 1076300463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300464, 1076300471, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300472, 1076300479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300480, 1076300487, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300488, 1076300511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300512, 1076300519, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300520, 1076300527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300528, 1076300799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300800, 1076300807, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300808, 1076300847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300848, 1076300855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300856, 1076300903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300904, 1076300911, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300912, 1076300919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300920, 1076300927, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300928, 1076300991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076300992, 1076301007, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301008, 1076301015, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301016, 1076301023, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301024, 1076301047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301048, 1076301055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301056, 1076301087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301088, 1076301095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301096, 1076301143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301144, 1076301151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301152, 1076301159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301160, 1076301167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301168, 1076301175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301176, 1076301183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301184, 1076301191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301192, 1076301199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301200, 1076301207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301208, 1076301263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301264, 1076301271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301272, 1076301279, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301280, 1076301823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301824, 1076301831, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301832, 1076301871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301872, 1076301879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301880, 1076301895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301896, 1076301903, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301904, 1076301927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301928, 1076301935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301936, 1076301951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076301952, 1076302015, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302016, 1076302031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302032, 1076302039, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302040, 1076302359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302360, 1076302367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302368, 1076302407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302408, 1076302415, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302416, 1076302439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302440, 1076302447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302448, 1076302503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302504, 1076302511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302512, 1076302519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302520, 1076302527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302528, 1076302639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302640, 1076302655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302656, 1076302719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302720, 1076302735, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302736, 1076302751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302752, 1076302759, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302760, 1076302783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302784, 1076302799, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302800, 1076302807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302808, 1076302815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302816, 1076302839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302840, 1076302847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302848, 1076302855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302856, 1076302895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302896, 1076302919, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302920, 1076302959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302960, 1076302975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302976, 1076302983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302984, 1076302991, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076302992, 1076303031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303032, 1076303039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303040, 1076303079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303080, 1076303087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303088, 1076303167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303168, 1076303183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303184, 1076303215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303216, 1076303223, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303224, 1076303271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303272, 1076303287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303288, 1076303319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303320, 1076303327, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303328, 1076303335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303336, 1076303359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303360, 1076303391, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303392, 1076303439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303440, 1076303455, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303456, 1076303495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303496, 1076303511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303512, 1076303519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303520, 1076303527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303528, 1076303535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303536, 1076303551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303552, 1076303559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303560, 1076303567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303568, 1076303599, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303600, 1076303615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303616, 1076303623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303624, 1076303631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303632, 1076303639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303640, 1076303647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303648, 1076303655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303656, 1076303663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303664, 1076303679, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303680, 1076303695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303696, 1076303703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303704, 1076303711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303712, 1076303719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303720, 1076303727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303728, 1076303735, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303736, 1076303767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303768, 1076303775, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303776, 1076303791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303792, 1076303831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303832, 1076303839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303840, 1076303983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303984, 1076303991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076303992, 1076303999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304000, 1076304031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304032, 1076304039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304040, 1076304047, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304048, 1076304063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304064, 1076304071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304072, 1076304079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304080, 1076304087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304088, 1076304127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304128, 1076304135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304136, 1076304151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304152, 1076304159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304160, 1076304191, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304192, 1076304215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304216, 1076304223, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304224, 1076304255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304256, 1076304383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304384, 1076304391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304392, 1076304407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304408, 1076304415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304416, 1076304439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304440, 1076304447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304448, 1076304487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304488, 1076304495, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304496, 1076304567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304568, 1076304575, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304576, 1076304583, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304584, 1076304591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304592, 1076304607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304608, 1076304615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304616, 1076304623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304624, 1076304631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304632, 1076304639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304640, 1076304647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304648, 1076304655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304656, 1076304663, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304664, 1076304687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304688, 1076304695, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304696, 1076304751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304752, 1076304759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304760, 1076304823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304824, 1076304831, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304832, 1076304839, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304840, 1076304895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304896, 1076304911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304912, 1076304919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304920, 1076304927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304928, 1076304943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304944, 1076304951, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304952, 1076304959, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304960, 1076304991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076304992, 1076304999, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305000, 1076305007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305008, 1076305015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305016, 1076305023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305024, 1076305039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305040, 1076305055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305056, 1076305079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305080, 1076305087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305088, 1076305111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305112, 1076305167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305168, 1076305175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305176, 1076305191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305192, 1076305207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305208, 1076305215, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305216, 1076305231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305232, 1076305239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305240, 1076305247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305248, 1076305255, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305256, 1076305263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305264, 1076305271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305272, 1076305303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305304, 1076305311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076305312, 1076338687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076338688, 1076346879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076346880, 1076387839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076387840, 1076396031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076396032, 1076404223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076404224, 1076406015, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076406016, 1076406271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076406272, 1076408063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076408064, 1076408319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076408320, 1076412415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076412416, 1076424703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076424704, 1076428799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076428800, 1076543487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076543488, 1076559871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076559872, 1076696655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076696656, 1076696663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076696664, 1076697503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076697504, 1076697519, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076697520, 1076697567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076697568, 1076697583, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076697584, 1076698565, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076698566, 1076698580, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076698581, 1076704376, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076704377, 1076704405, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076704406, 1076704743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076704744, 1076704751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076704752, 1076705191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076705192, 1076705199, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076705200, 1076705215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076705216, 1076705247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076705248, 1076705719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076705720, 1076705729, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076705730, 1076707087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076707088, 1076707103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076707104, 1076707119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076707120, 1076707311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076707312, 1076707319, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076707320, 1076756479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076756480, 1076760575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076763392, 1076763647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076764672, 1076768767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076772864, 1076781344, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076781345, 1076781412, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076781413, 1076783872, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076783873, 1076784127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076784128, 1076850687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076850688, 1076850943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076850944, 1076985855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1076985856, 1077002239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002240, 1077002255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002256, 1077002271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002272, 1077002343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002344, 1077002351, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002352, 1077002359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002360, 1077002367, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002368, 1077002399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002400, 1077002407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002408, 1077002495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002496, 1077002503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002504, 1077002543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002544, 1077002551, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002552, 1077002559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002560, 1077002575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002576, 1077002583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002584, 1077002591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002592, 1077002599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002600, 1077002607, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002608, 1077002823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002824, 1077002831, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002832, 1077002847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002848, 1077002855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002856, 1077002863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002864, 1077002911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002912, 1077002927, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002928, 1077002935, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002936, 1077002943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002944, 1077002991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077002992, 1077002999, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003000, 1077003023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003024, 1077003039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003040, 1077003047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003048, 1077003079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003080, 1077003087, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003088, 1077003119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003120, 1077003127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003128, 1077003199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003200, 1077003231, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003232, 1077003431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003432, 1077003439, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003440, 1077003511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003512, 1077003519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003520, 1077003687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003688, 1077003695, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003696, 1077003711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003712, 1077003727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003728, 1077003735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003736, 1077003783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003784, 1077003791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003792, 1077003807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003808, 1077003815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003816, 1077003895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003896, 1077003903, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003904, 1077003919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003920, 1077003927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003928, 1077003959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003960, 1077003967, N'BH', N'Bahrain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003968, 1077003991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077003992, 1077003999, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004000, 1077004119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004120, 1077004127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004128, 1077004143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004144, 1077004159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004160, 1077004199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004200, 1077004207, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004208, 1077004239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004240, 1077004247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004248, 1077004255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004256, 1077004263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004264, 1077004303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004304, 1077004319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004320, 1077004327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004328, 1077004335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004336, 1077004343, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004344, 1077004351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004352, 1077004367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004368, 1077004375, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004376, 1077004431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004432, 1077004439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004440, 1077004511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004512, 1077004527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004528, 1077004543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004544, 1077004559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004560, 1077004583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004584, 1077004591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004592, 1077004687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004688, 1077004695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004696, 1077004703, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004704, 1077004735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004736, 1077004743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004744, 1077004751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004752, 1077004759, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004760, 1077004767, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004768, 1077004783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004784, 1077004791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004792, 1077004799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004800, 1077004815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004816, 1077004847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004848, 1077004863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004864, 1077004871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004872, 1077004879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077004880, 1077005119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005120, 1077005151, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005152, 1077005295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005296, 1077005303, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005304, 1077005383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005384, 1077005391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005392, 1077005423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005424, 1077005439, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005440, 1077005487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005488, 1077005503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005504, 1077005535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005536, 1077005543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005544, 1077005551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005552, 1077005559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005560, 1077005631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005632, 1077005695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005696, 1077005767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005768, 1077005839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005840, 1077005895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005896, 1077005903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005904, 1077005911, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005912, 1077005943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005944, 1077005951, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077005952, 1077006023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006024, 1077006031, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006032, 1077006039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006040, 1077006047, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006048, 1077006055, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006056, 1077006071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006072, 1077006079, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006080, 1077006159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006160, 1077006167, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006168, 1077006407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006408, 1077006415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006416, 1077006463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006464, 1077006471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006472, 1077006623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006624, 1077006631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006632, 1077006639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006640, 1077006647, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006648, 1077006719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006720, 1077006735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006736, 1077006743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006744, 1077006751, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006752, 1077006847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006848, 1077006863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006864, 1077006879, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006880, 1077006887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006888, 1077006895, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006896, 1077006911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006912, 1077006927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006928, 1077006935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006936, 1077006943, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006944, 1077006959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006960, 1077006967, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006968, 1077006991, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077006992, 1077006999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007000, 1077007007, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007008, 1077007063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007064, 1077007071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007072, 1077007087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007088, 1077007103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007104, 1077007111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007112, 1077007119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007120, 1077007167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007168, 1077007191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007192, 1077007199, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007200, 1077007215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007216, 1077007247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007248, 1077007255, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007256, 1077007287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007288, 1077007295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007296, 1077007303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007304, 1077007311, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007312, 1077007935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007936, 1077007943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007944, 1077007967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007968, 1077007983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077007984, 1077008047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077008048, 1077008063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077008064, 1077008127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077008128, 1077008383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077008384, 1077008735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077008736, 1077008751, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077008752, 1077010431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077010432, 1077010439, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077010440, 1077010567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077010568, 1077010575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077010576, 1077011247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011248, 1077011255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011256, 1077011263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011264, 1077011271, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011272, 1077011287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011288, 1077011295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011296, 1077011311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011312, 1077011319, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011320, 1077011327, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011328, 1077011599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011600, 1077011607, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011608, 1077011615, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011616, 1077011767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011768, 1077011775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011776, 1077011807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011808, 1077011823, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011824, 1077011831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077011832, 1077012031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012032, 1077012039, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012040, 1077012063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012064, 1077012079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012080, 1077012111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012112, 1077012127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012128, 1077012143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012144, 1077012159, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012160, 1077012167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012168, 1077012295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012296, 1077012303, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012304, 1077012311, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012312, 1077012383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012384, 1077012415, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012416, 1077012455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012456, 1077012463, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012464, 1077012495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012496, 1077012511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012512, 1077012559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012560, 1077012567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012568, 1077012575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012576, 1077012583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077012584, 1077013247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013248, 1077013255, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013256, 1077013263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013264, 1077013279, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013280, 1077013343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013344, 1077013351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013352, 1077013359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013360, 1077013375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013376, 1077013391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013392, 1077013399, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013400, 1077013407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013408, 1077013415, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013416, 1077013431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013432, 1077013439, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013440, 1077013511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013512, 1077013519, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013520, 1077013551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013552, 1077013559, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013560, 1077013567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013568, 1077013647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013648, 1077013663, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013664, 1077013671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013672, 1077013679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013680, 1077013695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013696, 1077013703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013704, 1077013735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013736, 1077013743, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013744, 1077013759, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077013760, 1077014111, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014112, 1077014127, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014128, 1077014151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014152, 1077014159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014160, 1077014167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014168, 1077014175, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014176, 1077014303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014304, 1077014311, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014312, 1077014407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014408, 1077014415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014416, 1077014527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014528, 1077014535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014536, 1077014567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014568, 1077014575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014576, 1077014607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014608, 1077014623, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014624, 1077014631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014632, 1077014639, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014640, 1077014647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014648, 1077014703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014704, 1077014711, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014712, 1077014743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014744, 1077014767, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077014768, 1077015551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015552, 1077015559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015560, 1077015623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015624, 1077015631, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015632, 1077015647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015648, 1077015679, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015680, 1077015687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015688, 1077015695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015696, 1077015759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015760, 1077015775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015776, 1077015807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015808, 1077015831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015832, 1077015847, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015848, 1077015871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015872, 1077015879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015880, 1077015919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015920, 1077015935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077015936, 1077017327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017328, 1077017335, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017336, 1077017343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017344, 1077017351, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017352, 1077017359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017360, 1077017439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017440, 1077017455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017456, 1077017631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017632, 1077017647, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077017648, 1077444607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077444608, 1077452799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077452800, 1077460991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077460992, 1077469183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077469184, 1077477375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077477376, 1077506047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077506048, 1077510143, N'LS', N'Lesotho') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077510144, 1077567487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077567488, 1077571583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077571584, 1077628959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077628960, 1077628991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077628992, 1077630015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077630016, 1077630047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077630048, 1077630719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077630720, 1077631231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077631232, 1077632159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077632160, 1077632191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077632192, 1077641215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077641216, 1077657599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1077657600, 1078280447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280448, 1078280575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280576, 1078280591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280592, 1078280639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280640, 1078280671, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280672, 1078280695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280696, 1078280959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280960, 1078280960, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078280961, 1078281279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281280, 1078281295, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281296, 1078281511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281512, 1078281519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281520, 1078281599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281600, 1078281679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281680, 1078281711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281712, 1078281743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281744, 1078281759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281760, 1078281791, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078281792, 1078282119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078282120, 1078282223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078282224, 1078282238, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078282239, 1078282239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078282240, 1078283015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283016, 1078283023, N'BV', N'Bouvet Island') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283024, 1078283103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283104, 1078283135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283136, 1078283263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283264, 1078283264, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283265, 1078283551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283552, 1078283554, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283555, 1078283570, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283571, 1078283583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078283584, 1078284031, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078284032, 1078284159, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078284160, 1078284255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078284256, 1078284287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078284288, 1078284799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078284800, 1078285311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078285312, 1078285631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078285632, 1078285647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078285648, 1078285919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078285920, 1078285923, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078285924, 1078286015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286016, 1078286079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286080, 1078286111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286112, 1078286115, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286116, 1078286559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286560, 1078286575, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286576, 1078286591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286592, 1078286655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286656, 1078286719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286720, 1078286847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078286848, 1078287023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287024, 1078287039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287040, 1078287071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287072, 1078287103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287104, 1078287231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287232, 1078287247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287248, 1078287311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287312, 1078287343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078287344, 1078288383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078288384, 1078452223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078456320, 1078460415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078460416, 1078517759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078517760, 1078525951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078525952, 1078600639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078600640, 1078600647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078600648, 1078612687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078612688, 1078612703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078612704, 1078615679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078615680, 1078615711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078615712, 1078653183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078653184, 1078653439, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078653440, 1078709503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078709504, 1078710015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078710016, 1078722559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078722560, 1078730127, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078730128, 1078730135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078730136, 1078734847, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078734848, 1078737919, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078737920, 1078738943, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078738944, 1078739455, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078739456, 1078739967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078739968, 1078740991, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078740992, 1078743039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078743040, 1078746111, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078746112, 1078747135, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078747136, 1078749183, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078749184, 1078750231, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078750232, 1078750239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078750240, 1078751231, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078751232, 1078753279, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078753280, 1078755327, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078755328, 1078757119, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078757120, 1078757375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078757376, 1078767615, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078767616, 1078768639, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078768640, 1078769663, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078769664, 1078771711, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078771712, 1078773759, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078773760, 1078775807, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078775808, 1078777855, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078777856, 1078780927, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078780928, 1078791215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791216, 1078791223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791224, 1078791255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791256, 1078791263, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791264, 1078791303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791304, 1078791311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791312, 1078791319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791320, 1078791343, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791344, 1078791391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791392, 1078791407, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791408, 1078791439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791440, 1078791447, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791448, 1078791471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791472, 1078791487, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791488, 1078791503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791504, 1078791519, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791520, 1078791711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791712, 1078791727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078791728, 1078792015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792016, 1078792031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792032, 1078792095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792096, 1078792111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792112, 1078792127, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792128, 1078792175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792176, 1078792191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792192, 1078792511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792512, 1078792543, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078792544, 1078793119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078793120, 1078793151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078793152, 1078793535, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078793536, 1078793599, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078793600, 1078793663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078793664, 1078793727, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078793728, 1078794495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078794496, 1078794559, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078794560, 1078794591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078794592, 1078794623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078794624, 1078795159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795160, 1078795167, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795168, 1078795255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795256, 1078795263, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795264, 1078795767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795768, 1078795775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795776, 1078795783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795784, 1078795807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795808, 1078795815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795816, 1078795823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795824, 1078795831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795832, 1078795887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795888, 1078795895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795896, 1078795903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795904, 1078795911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078795912, 1078797399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797400, 1078797407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797408, 1078797591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797592, 1078797599, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797600, 1078797703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797704, 1078797711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797712, 1078797791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797792, 1078797815, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797816, 1078797823, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797824, 1078797991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078797992, 1078797999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798000, 1078798071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798072, 1078798079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798080, 1078798111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798112, 1078798119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798120, 1078798151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798152, 1078798159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798160, 1078798183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798184, 1078798191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798192, 1078798199, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798200, 1078798207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798208, 1078798215, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798216, 1078798223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798224, 1078798231, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798232, 1078798279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798280, 1078798287, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798288, 1078798447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798448, 1078798455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798456, 1078798575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798576, 1078798591, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798592, 1078798687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798688, 1078798703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798704, 1078798911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798912, 1078798927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078798928, 1078799039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799040, 1078799055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799056, 1078799071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799072, 1078799087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799088, 1078799263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799264, 1078799295, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799296, 1078799423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799424, 1078799455, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799456, 1078799551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799552, 1078799583, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799584, 1078799679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799680, 1078799743, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078799744, 1078799999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800000, 1078800031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800032, 1078800191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800192, 1078800223, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800224, 1078800287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800288, 1078800319, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800320, 1078800799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800800, 1078800831, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078800832, 1078801327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078801328, 1078801343, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078801344, 1078808991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078808992, 1078809023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078809024, 1078809647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078809648, 1078809663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078809664, 1078814135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078814136, 1078814143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078814144, 1078814399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078814400, 1078814415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1078814416, 1079320575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079320576, 1079320671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079320672, 1079320703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079320704, 1079320719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079320720, 1079320735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079320736, 1079320823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079320824, 1079320831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079320832, 1079321087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079321088, 1079321103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079321104, 1079321199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079321200, 1079321207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079321208, 1079321215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079321216, 1079321231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079321232, 1079322703, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079322704, 1079322719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079322720, 1079322815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079322816, 1079322839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079322840, 1079322847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079322848, 1079322863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079322864, 1079323231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323232, 1079323247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323248, 1079323263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323264, 1079323279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323280, 1079323311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323312, 1079323327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323328, 1079323415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323416, 1079323423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323424, 1079323583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323584, 1079323599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323600, 1079323615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323616, 1079323647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079323648, 1079328767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079328768, 1079377919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079377920, 1079378943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079378944, 1079379199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079379200, 1079380991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079380992, 1079381247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079381248, 1079381503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079381504, 1079381567, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079381568, 1079381599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079381600, 1079382015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079382016, 1079383039, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079383040, 1079383295, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079383296, 1079383551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079383552, 1079383807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079383808, 1079384063, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079384064, 1079384319, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079384320, 1079384575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079384576, 1079385087, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079385088, 1079385343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079385344, 1079385599, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079385600, 1079385855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079385856, 1079386111, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079386112, 1079386623, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079386624, 1079386879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079386880, 1079387135, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079387136, 1079387647, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079387648, 1079389695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079389696, 1079389951, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079389952, 1079391231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079391232, 1079391487, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079391488, 1079391743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079391744, 1079392255, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079392256, 1079393279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079393280, 1079393791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079393792, 1079394079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079394080, 1079394111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079394112, 1079394175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079394176, 1079394191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079394192, 1079394239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079394240, 1079394303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079394304, 1079395327, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079395328, 1079395839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079395840, 1079396095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079396096, 1079396351, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079396352, 1079397375, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079397376, 1079397631, N'MH', N'Marshall Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079397632, 1079397887, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079397888, 1079398143, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079398144, 1079400703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079400704, 1079400895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079400896, 1079403519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079403520, 1079403775, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079403776, 1079404031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079404032, 1079405023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079405024, 1079405407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079405408, 1079405439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079405440, 1079405567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079405568, 1079407103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079407104, 1079407359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079407360, 1079407615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079407616, 1079408127, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079408128, 1079408383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079408384, 1079408415, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079408416, 1079408431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079408432, 1079408447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079408448, 1079409407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079409408, 1079409919, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079409920, 1079412223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079412224, 1079413247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079413248, 1079414271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079414272, 1079414783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079414784, 1079415039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079415040, 1079415295, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079415296, 1079415807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079415808, 1079416319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079416320, 1079417855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079417856, 1079418879, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079418880, 1079420927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079420928, 1079422463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079422464, 1079423487, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079423488, 1079425535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079425536, 1079425551, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079425552, 1079427071, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079427072, 1079427327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079427328, 1079427583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079427584, 1079428095, N'PW', N'Palau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079428096, 1079431679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079431680, 1079432191, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079432192, 1079435263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079435264, 1079435775, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079435776, 1079436799, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079436800, 1079437055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079437056, 1079439103, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079439104, 1079439359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079439360, 1079441407, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079441408, 1079443199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079443200, 1079443231, N'PW', N'Palau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079443232, 1079443327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079443328, 1079443455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079443456, 1079468799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079468800, 1079469055, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079469056, 1079476223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079476224, 1079508991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079508992, 1079547647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079547648, 1079547679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079547680, 1079554047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079558144, 1079566335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079566336, 1079570431, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079574528, 1079664639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079664640, 1079668735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079668736, 1079857151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079861248, 1079865343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079869440, 1079925919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079925920, 1079925951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079925952, 1079926015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926016, 1079926047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926048, 1079926079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926080, 1079926111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926112, 1079926159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926160, 1079926175, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926176, 1079926191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926192, 1079926207, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926208, 1079926247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926248, 1079926271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079926272, 1079932287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079932288, 1079932351, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079932352, 1079943999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079944000, 1079944031, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079944032, 1079944295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079944296, 1079944303, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079944304, 1079944383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079944384, 1079944415, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079944416, 1079946143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079946144, 1079946151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079946152, 1079950319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079950320, 1079950327, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079950328, 1079953567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079953568, 1079953599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1079953600, 1080021999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080022000, 1080022015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080022016, 1080033279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080033280, 1080295423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080295424, 1080722827, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080722828, 1080722837, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080722838, 1080722993, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080722994, 1080723003, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723004, 1080723113, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723114, 1080723123, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723124, 1080723229, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723230, 1080723239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723240, 1080723259, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723260, 1080723269, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723270, 1080723359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723360, 1080723369, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723370, 1080723565, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723566, 1080723575, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080723576, 1080724519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080724520, 1080724539, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080724540, 1080724875, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080724876, 1080724885, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080724886, 1080725041, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725042, 1080725051, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725052, 1080725081, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725082, 1080725091, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725092, 1080725171, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725172, 1080725181, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725182, 1080725277, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725278, 1080725287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725288, 1080725297, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725298, 1080725467, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725468, 1080725477, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725478, 1080725563, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725564, 1080725573, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725574, 1080725713, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725714, 1080725723, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725724, 1080725929, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725930, 1080725939, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080725940, 1080726185, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080726186, 1080726195, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080726196, 1080726607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080726608, 1080726617, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080726618, 1080727129, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727130, 1080727139, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727140, 1080727159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727160, 1080727169, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727170, 1080727189, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727190, 1080727199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727200, 1080727741, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727742, 1080727761, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727762, 1080727781, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727782, 1080727801, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080727802, 1080728625, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080728626, 1080728655, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080728656, 1080728775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080728776, 1080728805, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080728806, 1080728881, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080728882, 1080728891, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080728892, 1080729127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729128, 1080729137, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729138, 1080729147, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729148, 1080729157, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729158, 1080729177, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729178, 1080729187, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729188, 1080729217, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729218, 1080729237, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729238, 1080729287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729288, 1080729297, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729298, 1080729629, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729630, 1080729639, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729640, 1080729649, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080729650, 1080732319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080732320, 1080732351, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080732352, 1080733193, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080733194, 1080733203, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080733204, 1080733213, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080733214, 1080733233, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080733234, 1080733243, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080733244, 1080739007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080739008, 1080739023, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080739024, 1080739899, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080739900, 1080739909, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080739910, 1080740235, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080740236, 1080740255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080740256, 1080740265, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080740266, 1080740305, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080740306, 1080740315, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080740316, 1080740551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080740552, 1080740561, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080740562, 1080741189, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741190, 1080741199, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741200, 1080741269, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741270, 1080741279, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741280, 1080741289, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741290, 1080741495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741496, 1080741505, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741506, 1080741605, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741606, 1080741615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741616, 1080741671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741672, 1080741681, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080741682, 1080744211, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080744212, 1080744221, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080744222, 1080744511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080744512, 1080744575, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080744576, 1080746691, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080746692, 1080746723, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080746724, 1080747333, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747334, 1080747343, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747344, 1080747353, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747354, 1080747503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747504, 1080747513, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747514, 1080747539, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747540, 1080747559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747560, 1080747875, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747876, 1080747885, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747886, 1080747915, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747916, 1080747925, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747926, 1080747955, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747956, 1080747965, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747966, 1080747975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080747976, 1080748005, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080748006, 1080748063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080748064, 1080748095, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080748096, 1080749823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080749824, 1080749951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080749952, 1080750601, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080750602, 1080750611, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080750612, 1080820871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080820872, 1080820879, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080820880, 1080950783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080950784, 1080953343, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080953344, 1080953855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080953856, 1080955903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080955904, 1080957183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080957184, 1080958207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080958208, 1080958463, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080958464, 1080958719, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080958720, 1080958975, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080958976, 1080963839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080963840, 1080964095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080964096, 1080969471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080969472, 1080969727, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080969728, 1080972575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080972576, 1080972607, N'ID', N'Indonesia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080972608, 1080988671, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080988672, 1080989183, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080989184, 1080999935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1080999936, 1081016319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081016320, 1081212927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081212928, 1081278463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081278464, 1081368607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081368608, 1081368615, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081368616, 1081377055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377056, 1081377071, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377072, 1081377079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377080, 1081377087, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377088, 1081377119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377120, 1081377135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377136, 1081377191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377192, 1081377199, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377200, 1081377279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377280, 1081377535, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377536, 1081377663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377664, 1081377791, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081377792, 1081378303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378304, 1081378367, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378368, 1081378375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378376, 1081378383, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378384, 1081378399, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378400, 1081378495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378496, 1081378575, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378576, 1081378591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378592, 1081378607, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378608, 1081378623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378624, 1081378655, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081378656, 1081379327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081379328, 1081379583, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081379584, 1081385215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081385216, 1081385543, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081385544, 1081385727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081385728, 1081385983, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081385984, 1081387519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081387520, 1081388031, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081388032, 1081388127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081388128, 1081388143, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081388144, 1081388543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081388544, 1081388799, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081388800, 1081391103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081391104, 1081393151, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393152, 1081393407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393408, 1081393783, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393784, 1081393799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393800, 1081393807, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393808, 1081393831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393832, 1081393839, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393840, 1081393847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393848, 1081393855, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393856, 1081393887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393888, 1081393903, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393904, 1081393919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081393920, 1081397247, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081397248, 1081397759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081397760, 1081398783, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081398784, 1081399295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081399296, 1081401343, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401344, 1081401351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401352, 1081401407, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401408, 1081401423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401424, 1081401535, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401536, 1081401567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401568, 1081401735, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401736, 1081401743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401744, 1081401775, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401776, 1081401791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081401792, 1081402367, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081402368, 1081402895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081402896, 1081402927, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081402928, 1081402943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081402944, 1081403007, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403008, 1081403055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403056, 1081403103, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403104, 1081403135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403136, 1081403519, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403520, 1081403535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403536, 1081403551, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403552, 1081403647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403648, 1081403655, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403656, 1081403695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403696, 1081403775, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403776, 1081403839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403840, 1081403871, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403872, 1081403887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403888, 1081403967, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081403968, 1081403999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081404000, 1081404159, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081404160, 1081409791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081409792, 1081410047, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081410048, 1081410559, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081410560, 1081411583, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081411584, 1081413119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413120, 1081413375, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413376, 1081413407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413408, 1081413447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413448, 1081413527, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413528, 1081413535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413536, 1081413567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413568, 1081413575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413576, 1081413583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081413584, 1081416447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081416448, 1081416703, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081416704, 1081417727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081417728, 1081418751, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081418752, 1081419135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419136, 1081419199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419200, 1081419231, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419232, 1081419263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419264, 1081419391, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419392, 1081419423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419424, 1081419439, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419440, 1081419487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419488, 1081419519, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419520, 1081419775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081419776, 1081420287, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081420288, 1081421823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081421824, 1081423871, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081423872, 1081442303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442304, 1081442311, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442312, 1081442319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442320, 1081442335, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442336, 1081442463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442464, 1081442495, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442496, 1081442911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442912, 1081442927, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442928, 1081442959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442960, 1081442967, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081442968, 1081443327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081443328, 1081444863, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081444864, 1081445375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081445376, 1081450495, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081450496, 1081460735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081460736, 1081462783, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081462784, 1081466879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081466880, 1081467391, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081467392, 1081470463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081470464, 1081470975, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081470976, 1081473023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081473024, 1081474815, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081474816, 1081565183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081565184, 1081573375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081573376, 1081581615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581616, 1081581623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581624, 1081581671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581672, 1081581687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581688, 1081581695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581696, 1081581703, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581704, 1081581743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581744, 1081581759, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581760, 1081581767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581768, 1081581775, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581776, 1081581823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581824, 1081581975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581976, 1081581983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081581984, 1081582015, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582016, 1081582079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582080, 1081582087, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582088, 1081582151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582152, 1081582159, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582160, 1081582167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582168, 1081582175, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582176, 1081582183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582184, 1081582199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582200, 1081582223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582224, 1081582231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582232, 1081582335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582336, 1081582343, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582344, 1081582535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582536, 1081582559, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582560, 1081582567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582568, 1081582591, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582592, 1081582599, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582600, 1081582679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582680, 1081582687, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582688, 1081582695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582696, 1081582703, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582704, 1081582711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582712, 1081582719, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582720, 1081582775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582776, 1081582783, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582784, 1081582903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582904, 1081582911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582912, 1081582991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081582992, 1081582999, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583000, 1081583007, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583008, 1081583055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583056, 1081583071, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583072, 1081583103, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583104, 1081583215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583216, 1081583231, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583232, 1081583551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583552, 1081583567, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583568, 1081583743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583744, 1081583767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583768, 1081583807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583808, 1081583815, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583816, 1081583887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583888, 1081583911, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583912, 1081583919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081583920, 1081583999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584000, 1081584007, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584008, 1081584079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584080, 1081584087, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584088, 1081584127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584128, 1081584151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584152, 1081584167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584168, 1081584191, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584192, 1081584199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584200, 1081584223, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584224, 1081584271, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584272, 1081584463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584464, 1081584487, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584488, 1081584511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584512, 1081584519, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584520, 1081584543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584544, 1081584575, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584576, 1081584599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584600, 1081584639, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081584640, 1081803287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081803288, 1081803295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081803296, 1081803895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081803896, 1081803903, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081803904, 1081832663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081832664, 1081832671, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081832672, 1081859999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081860000, 1081860007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081860008, 1081862639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081862640, 1081862647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081862648, 1081872647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081872648, 1081872655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081872656, 1081872663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081872664, 1081872671, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081872672, 1081878559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081878560, 1081878575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081878576, 1081911823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081911824, 1081911831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081911832, 1081911935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081911936, 1081911951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081911952, 1081912575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081912576, 1081912639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081912640, 1081927135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081927136, 1081927143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081927144, 1081953279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081953280, 1081954303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081954304, 1081955327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081955328, 1081955583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081955584, 1081955839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081955840, 1081956095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081956096, 1081966871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081966872, 1081966879, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1081966880, 1082064895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082089472, 1082091999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082092000, 1082092007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082092008, 1082096383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082096384, 1082096415, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082096416, 1082097055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082097056, 1082097071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082097072, 1082434239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082434240, 1082434255, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082434256, 1082679743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082679744, 1082679807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082679808, 1082679936, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082679937, 1082680576, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082680577, 1082680703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082680704, 1082681087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082681088, 1082681342, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082681343, 1082681343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082681344, 1082681471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082681472, 1082682623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082682624, 1082682878, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082682879, 1082683391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082687488, 1082885311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082885312, 1082885343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082885344, 1082885855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082885856, 1082885887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082885888, 1082886655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082886656, 1082886719, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082886720, 1082982399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1082982400, 1083015167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083015168, 1083417727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083417728, 1083417791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083417792, 1083418591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083418592, 1083418623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083418624, 1083421695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083421696, 1083421759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083421760, 1083437055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083437056, 1083441151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083441152, 1083486911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083486912, 1083486943, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083486944, 1083566263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083566264, 1083566271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083566272, 1083604991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083637760, 1083686911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083686912, 1083703295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083703296, 1083738111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083738112, 1083740159, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083740160, 1083753215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083753216, 1083753471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083753472, 1083759615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083759616, 1083760639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1083760640, 1084067583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084067584, 1084067839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084067840, 1084111231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084111232, 1084111615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084111616, 1084126207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084126208, 1084126719, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084126720, 1084346871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084346872, 1084346879, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1084346880, 1085439999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085440000, 1085448191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085448192, 1085456383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085456384, 1085464575, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085464576, 1085538303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085538304, 1085603839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085603840, 1085669656, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085669657, 1085669664, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085669665, 1085669794, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085669795, 1085669803, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085669804, 1085669838, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085669839, 1085669847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085669848, 1085670216, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670217, 1085670225, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670226, 1085670279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670280, 1085670288, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670289, 1085670297, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670298, 1085670342, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670343, 1085670351, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670352, 1085670386, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670387, 1085670395, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670396, 1085670455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670456, 1085670463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670464, 1085670628, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670629, 1085670636, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670637, 1085670644, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085670645, 1085671328, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671329, 1085671336, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671337, 1085671354, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671355, 1085671363, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671364, 1085671380, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671381, 1085671389, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671390, 1085671688, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671689, 1085671696, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671697, 1085671712, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671713, 1085671720, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085671721, 1085672351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672352, 1085672359, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672360, 1085672391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672392, 1085672399, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672400, 1085672823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672824, 1085672831, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672832, 1085672840, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672841, 1085672848, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672849, 1085672873, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672874, 1085672881, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672882, 1085672960, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672961, 1085672969, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672970, 1085672978, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085672979, 1085677905, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085677906, 1085677913, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085677914, 1085677921, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085677922, 1085677939, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085677940, 1085677947, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085677948, 1085678408, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085678409, 1085678417, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085678418, 1085678865, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085678866, 1085678994, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085678995, 1085679027, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085679028, 1085679045, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085679046, 1085681695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681696, 1085681711, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681712, 1085681720, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681721, 1085681728, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681729, 1085681738, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681739, 1085681756, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681757, 1085681765, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681766, 1085681906, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681907, 1085681915, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681916, 1085681920, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085681921, 1085682174, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682175, 1085682258, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682259, 1085682267, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682268, 1085682284, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682285, 1085682293, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682294, 1085682331, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682332, 1085682339, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682340, 1085682374, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682375, 1085682382, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682383, 1085682863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682864, 1085682872, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682873, 1085682880, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682881, 1085682906, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682907, 1085682922, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085682923, 1085683728, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085683729, 1085683736, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085683737, 1085683744, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085683745, 1085683905, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085683906, 1085683914, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085683915, 1085684480, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085684481, 1085684734, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085684735, 1085685225, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685226, 1085685233, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685234, 1085685304, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685305, 1085685312, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685313, 1085685345, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685346, 1085685353, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685354, 1085685574, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685575, 1085685584, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685585, 1085685610, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685611, 1085685618, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685619, 1085685627, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685628, 1085685636, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685637, 1085685645, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685646, 1085685661, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685662, 1085685669, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685670, 1085685685, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085685686, 1085698199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085698200, 1085698207, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085698208, 1085734911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085800448, 1085915135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085915136, 1085923327, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085923328, 1085927423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085931520, 1085997055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1085997056, 1086013439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086013440, 1086358143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086358144, 1086358271, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086358272, 1086359231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086359232, 1086359295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086359296, 1086359615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086359616, 1086359647, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086359648, 1086421503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086421504, 1086422015, N'MP', N'Northern Mariana Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086422016, 1086910335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086910336, 1086910463, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086910464, 1086922751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086922752, 1086923263, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086923264, 1086930943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086930944, 1086935039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086939136, 1086940671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086940672, 1086940927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086940928, 1086940991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086940992, 1086941023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086941024, 1086941695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086941696, 1086941823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086941824, 1086942079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086942080, 1086942087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086942088, 1086942591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086942592, 1086942599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086942600, 1086942719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086942720, 1086943231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086943232, 1086943487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086943488, 1086944255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086944256, 1086944287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086944288, 1086945167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086945168, 1086945183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086945184, 1086946831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086946832, 1086946847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086946848, 1086947071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086947072, 1086947079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086947080, 1086951423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086955520, 1086971903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086971904, 1086975999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1086980096, 1087000575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087004672, 1087008767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087008768, 1087009279, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087009280, 1087011327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087011328, 1087011583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087011584, 1087715327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087715328, 1087717375, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087717376, 1087862783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087862784, 1087864831, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087864832, 1087898879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087898880, 1087898887, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087898888, 1087899391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087899392, 1087899399, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087899400, 1087910447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087910448, 1087910455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087910456, 1087915079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915080, 1087915087, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915088, 1087915519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915520, 1087915535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915536, 1087915583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915584, 1087915591, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915592, 1087915599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915600, 1087915607, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087915608, 1087918423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087918424, 1087918431, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087918432, 1087918503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087918504, 1087918519, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087918520, 1087920295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087920296, 1087920327, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087920328, 1087920335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087920336, 1087920343, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087920344, 1087920431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087920432, 1087920439, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087920440, 1087933103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087933104, 1087933111, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087933112, 1087935103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087935104, 1087935111, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087935112, 1087935215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087935216, 1087935223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087935224, 1087948391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087948392, 1087948399, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087948400, 1087948639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087948640, 1087948647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087948648, 1087948839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087948840, 1087948847, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087948848, 1087949735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087949736, 1087949743, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087949744, 1087950063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087950064, 1087950071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087950072, 1087950111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087950112, 1087950119, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087950120, 1087955767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087955768, 1087955775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087955776, 1087960127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087960128, 1087960135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087960136, 1087964431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964432, 1087964455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964456, 1087964463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964464, 1087964471, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964472, 1087964575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964576, 1087964583, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964584, 1087964599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964600, 1087964615, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087964616, 1087980759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087980760, 1087980783, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087980784, 1087991175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087991176, 1087991183, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087991184, 1087991207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087991208, 1087991215, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1087991216, 1088012447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088012448, 1088012455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088012456, 1088012727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088012728, 1088012735, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088012736, 1088012751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088012752, 1088012775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088012776, 1088014583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088014584, 1088014591, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088014592, 1088020031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088020032, 1088020039, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088020040, 1088020359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088020360, 1088020367, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088020368, 1088030663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088030664, 1088030671, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088030672, 1088031839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088031840, 1088031847, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088031848, 1088031943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088031944, 1088031951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088031952, 1088058847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088058848, 1088058855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088058856, 1088091583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088091584, 1088091591, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088091592, 1088093727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088093728, 1088093735, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088093736, 1088100967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088100968, 1088100975, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088100976, 1088101023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088101024, 1088101031, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088101032, 1088108351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088108352, 1088108359, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088108360, 1088117199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088117200, 1088117207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088117208, 1088120527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088120528, 1088120535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088120536, 1088146151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088146152, 1088146159, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088146160, 1088147815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088147816, 1088147823, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088147824, 1088152215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088152216, 1088152223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088152224, 1088424464, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088424465, 1088424478, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088424479, 1088450704, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088450705, 1088450718, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088450719, 1088451760, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088451761, 1088451774, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088451775, 1088452112, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088452113, 1088452126, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088452127, 1088452400, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088452401, 1088452414, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088452415, 1088453024, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453025, 1088453038, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453039, 1088453104, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453105, 1088453118, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453119, 1088453488, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453489, 1088453502, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453503, 1088453536, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453537, 1088453550, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453551, 1088453808, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453809, 1088453822, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453823, 1088453840, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453841, 1088453854, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453855, 1088453856, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453857, 1088453870, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088453871, 1088454448, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088454449, 1088454462, N'LB', N'Lebanon') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088454463, 1088473375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088473376, 1088473391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088473392, 1088473695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088473696, 1088473711, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088473712, 1088518415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088518416, 1088518431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088518432, 1088518479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088518480, 1088518495, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088518496, 1088518927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088518928, 1088519007, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088519008, 1088522671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088522672, 1088522687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088522688, 1088522735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088522736, 1088522751, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088522752, 1088523199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088523200, 1088523215, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088523216, 1088523439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088523440, 1088523487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088523488, 1088523807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088523808, 1088523823, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088523824, 1088524271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088524272, 1088524286, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088524287, 1088684031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088684032, 1088946175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088946176, 1088949919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088949920, 1088949935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1088949936, 1089146879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089150976, 1089154847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154848, 1089154855, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154856, 1089154876, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154877, 1089154884, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154885, 1089154915, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154916, 1089154932, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154933, 1089154940, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154941, 1089154956, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154957, 1089154968, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154969, 1089154977, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089154978, 1089155011, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089155012, 1089155031, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089155032, 1089156607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089156608, 1089156863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089156864, 1089167359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089167360, 1089171455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089175552, 1089191935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089191936, 1089192591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089192592, 1089192599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089192600, 1089196623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089196624, 1089196639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089196640, 1089200127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089200128, 1089200751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089200752, 1089200783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089200784, 1089203439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089203440, 1089203447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089203448, 1089204575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089204576, 1089204607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089204608, 1089205503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089205504, 1089205631, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089205632, 1089306623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089306624, 1089339391, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089339392, 1089389247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089389248, 1089389311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089389312, 1089389791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089389792, 1089389799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089389800, 1089393167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089393168, 1089393175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089393176, 1089393183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089393184, 1089393215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089393216, 1089482927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089482928, 1089482935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089482936, 1089486591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089486592, 1089486607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089486608, 1089488463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089488464, 1089488479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089488480, 1089492351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089492352, 1089492415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089492416, 1089493631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089493632, 1089493647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089493648, 1089495791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089495792, 1089495807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089495808, 1089503871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089503872, 1089503879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089503880, 1089526783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089526784, 1089527039, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089527040, 1089557551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089557552, 1089557559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089557560, 1089559151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089559152, 1089559159, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089559160, 1089559807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089559808, 1089559871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089559872, 1089576623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089576624, 1089576631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089576632, 1089579215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089579216, 1089579223, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089579224, 1089579519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089579520, 1089580031, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089580032, 1089581287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089581288, 1089581295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089581296, 1089593615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089593616, 1089593623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089593624, 1089593711, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089593712, 1089593727, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089593728, 1089594367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089594368, 1089594623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089594624, 1089595279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089595280, 1089595287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089595288, 1089596543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089596544, 1089596575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089596576, 1089598975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089598976, 1089599231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089599232, 1089607703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089607704, 1089607711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089607712, 1089615839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089615840, 1089615847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089615848, 1089626399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089626400, 1089626407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089626408, 1089626415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089626416, 1089626431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089626432, 1089631055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089631056, 1089631071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089631072, 1089644815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089644816, 1089644831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089644832, 1089672263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089672264, 1089672271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089672272, 1089674367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089674368, 1089674383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089674384, 1089676831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089676832, 1089676847, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089676848, 1089720959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089720960, 1089720967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089720968, 1089721023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721024, 1089721087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721088, 1089721503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721504, 1089721519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721520, 1089721527, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721528, 1089721679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721680, 1089721687, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721688, 1089721727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721728, 1089721791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089721792, 1089723823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089723824, 1089723831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089723832, 1089798143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089798144, 1089802239, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089802240, 1089910019, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089910020, 1089910031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089910032, 1089961983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089961984, 1089970175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1089978368, 1090048063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090048064, 1090048071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090048072, 1090207743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090207744, 1090220031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090220032, 1090355199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090355200, 1090363391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090363392, 1090367487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090371584, 1090387967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090387968, 1090396159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090396160, 1090424831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090424832, 1090428927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090428928, 1090445311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090445312, 1090448639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090448640, 1090448895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090448896, 1090453503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090453504, 1090497903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090497904, 1090497919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1090497920, 1091683357, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683358, 1091683367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683368, 1091683387, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683388, 1091683397, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683398, 1091683407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683408, 1091683417, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683418, 1091683437, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683438, 1091683447, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683448, 1091683593, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683594, 1091683603, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683604, 1091683613, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683614, 1091683653, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683654, 1091683869, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683870, 1091683889, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683890, 1091683909, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683910, 1091683919, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091683920, 1091684879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091684880, 1091684895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091684896, 1091685695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091685696, 1091685711, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091685712, 1091685759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091685760, 1091685887, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091685888, 1091687167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687168, 1091687183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687184, 1091687359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687360, 1091687391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687392, 1091687711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687712, 1091687727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687728, 1091687743, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687744, 1091687807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687808, 1091687839, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687840, 1091687871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091687872, 1091689255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091689256, 1091689265, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091689266, 1091689295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091689296, 1091689305, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091689306, 1091689335, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091689336, 1091689345, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091689346, 1091690495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091690496, 1091690511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091690512, 1091690527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091690528, 1091690751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091690752, 1091690815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091690816, 1091690943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091690944, 1091691007, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091691008, 1091691327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091691328, 1091691359, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091691360, 1091692347, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692348, 1091692357, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692358, 1091692447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692448, 1091692457, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692458, 1091692573, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692574, 1091692583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692584, 1091692643, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692644, 1091692653, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692654, 1091692703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692704, 1091692713, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692714, 1091692723, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692724, 1091692733, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091692734, 1091693095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091693096, 1091693135, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091693136, 1091694447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091694448, 1091694463, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091694464, 1091694877, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091694878, 1091694887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091694888, 1091694997, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091694998, 1091695007, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695008, 1091695017, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695018, 1091695057, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695058, 1091695067, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695068, 1091695123, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695124, 1091695163, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695164, 1091695213, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695214, 1091695223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695224, 1091695283, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695284, 1091695293, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695294, 1091695487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695488, 1091695551, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091695552, 1091756031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091756032, 1091764223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091764224, 1091960831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1091960832, 1092026367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092026368, 1092066589, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092066590, 1092066597, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092066598, 1092066647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092066648, 1092066659, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092066660, 1092067042, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092067043, 1092067050, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092067051, 1092075519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092075520, 1092091903, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092091904, 1092940607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092940608, 1092940639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1092940640, 1093017599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093017600, 1093021695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093025792, 1093033983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093033984, 1093052463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093052464, 1093052479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093052480, 1093052511, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093052512, 1093053567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093053568, 1093053583, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093053584, 1093055487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093055488, 1093055871, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093055872, 1093056095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093056096, 1093056111, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093056112, 1093058559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093058560, 1093066751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093066752, 1093074943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093074944, 1093091327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093091328, 1093107711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093107712, 1093109879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093109880, 1093109887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093109888, 1093109967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093109968, 1093109983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093109984, 1093110783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093110784, 1093110815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093110816, 1093110831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093110832, 1093110911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093110912, 1093111711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111712, 1093111727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111728, 1093111743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111744, 1093111759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111760, 1093111871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111872, 1093111903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111904, 1093111935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111936, 1093111951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093111952, 1093113855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093113856, 1093114367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093114368, 1093114623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093114624, 1093114655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093114656, 1093114679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093114680, 1093114687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093114688, 1093114719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093114720, 1093114751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093114752, 1093115647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093115648, 1093115775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093115776, 1093115839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093115840, 1093115903, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093115904, 1093117567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093117568, 1093117615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093117616, 1093117855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093117856, 1093117887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093117888, 1093118463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093118464, 1093118527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093118528, 1093118543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093118544, 1093118591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093118592, 1093118975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093118976, 1093118993, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093118994, 1093119006, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119007, 1093119039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119040, 1093119135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119136, 1093119167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119168, 1093119663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119664, 1093119679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119680, 1093119807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119808, 1093119839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119840, 1093119935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093119936, 1093119999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093120000, 1093120399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093120400, 1093120415, N'BV', N'Bouvet Island') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093120416, 1093120431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093120432, 1093120511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093120512, 1093120767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093120768, 1093121535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093121536, 1093122303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093122304, 1093122447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093122448, 1093122463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093122464, 1093123839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093123840, 1093123903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093123904, 1093123935, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093123936, 1093123983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093123984, 1093123999, N'BV', N'Bouvet Island') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093124000, 1093124159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093124160, 1093124287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093124288, 1093124351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093124352, 1093125631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093125632, 1093125759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093125760, 1093125775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093125776, 1093125871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093125872, 1093125887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093125888, 1093126143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093126144, 1093126655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093126656, 1093126801, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093126802, 1093126809, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093126810, 1093126911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093126912, 1093127167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127168, 1093127191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127192, 1093127199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127200, 1093127423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127424, 1093127455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127456, 1093127471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127472, 1093127487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127488, 1093127551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127552, 1093127615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127616, 1093127647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127648, 1093127663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127664, 1093127775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127776, 1093127791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093127792, 1093128191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093128192, 1093128703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093128704, 1093128959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093128960, 1093129215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093129216, 1093130239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093130240, 1093130307, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093130308, 1093130323, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093130324, 1093130366, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093130367, 1093130367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093130368, 1093130591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093130592, 1093130687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093130688, 1093131263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093131264, 1093131391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093131392, 1093131487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093131488, 1093132287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093132288, 1093132799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093132800, 1093133055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093133056, 1093133311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093133312, 1093133823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093133824, 1093134263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093134264, 1093134271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093134272, 1093135615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093135616, 1093135679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093135680, 1093135871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093135872, 1093136383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093136384, 1093136639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093136640, 1093136895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093136896, 1093137151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093137152, 1093137279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093137280, 1093138431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093138432, 1093138559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093138560, 1093138623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093138624, 1093138975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093138976, 1093139007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093139008, 1093139023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093139024, 1093139455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093139456, 1093139583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093139584, 1093139663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093139664, 1093139679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093139680, 1093139695, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093139696, 1093140479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093140480, 1093338895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093338896, 1093338903, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093338904, 1093685247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093689344, 1093861375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1093926912, 1094319583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094319584, 1094319599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094319600, 1094549687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549688, 1094549695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549696, 1094549783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549784, 1094549791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549792, 1094549799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549800, 1094549807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549808, 1094549815, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549816, 1094549863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549864, 1094549871, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549872, 1094549935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549936, 1094549943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549944, 1094549951, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094549952, 1094550215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550216, 1094550223, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550224, 1094550239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550240, 1094550487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550488, 1094550495, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550496, 1094550679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550680, 1094550695, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550696, 1094550799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550800, 1094550807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550808, 1094550823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550824, 1094550831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550832, 1094550847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550848, 1094550855, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550856, 1094550879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550880, 1094550887, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550888, 1094550895, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550896, 1094550911, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550912, 1094550919, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550920, 1094550967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550968, 1094550975, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550976, 1094550991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094550992, 1094550999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551000, 1094551207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551208, 1094551215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551216, 1094551231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551232, 1094551455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551456, 1094551471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551472, 1094551487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551488, 1094551495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551496, 1094551535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551536, 1094551551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094551552, 1094552175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552176, 1094552183, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552184, 1094552191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552192, 1094552199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552200, 1094552287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552288, 1094552311, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552312, 1094552319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552320, 1094552335, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552336, 1094552375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552376, 1094552383, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552384, 1094552527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552528, 1094552543, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552544, 1094552551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552552, 1094552559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094552560, 1094553855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094553856, 1094553863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094553864, 1094553927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094553928, 1094553935, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094553936, 1094553975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094553976, 1094553983, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094553984, 1094554879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094554880, 1094554887, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094554888, 1094554967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094554968, 1094554975, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094554976, 1094556703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094556704, 1094556719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094556720, 1094556783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094556784, 1094556799, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094556800, 1094557271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094557272, 1094557279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094557280, 1094557751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094557752, 1094557759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094557760, 1094558463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094558464, 1094558471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094558472, 1094558751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094558752, 1094558783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094558784, 1094559743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094559744, 1094559775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094559776, 1094559807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094559808, 1094559903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094559904, 1094559919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094559920, 1094559935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094559936, 1094559999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560000, 1094560103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560104, 1094560255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560256, 1094560263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560264, 1094560279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560280, 1094560287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560288, 1094560319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560320, 1094560335, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560336, 1094560447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560448, 1094560455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560456, 1094560895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094560896, 1094561023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561024, 1094561047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561048, 1094561055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561056, 1094561319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561320, 1094561327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561328, 1094561535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561536, 1094561639, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561640, 1094561663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561664, 1094561791, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561792, 1094561831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561832, 1094561839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561840, 1094561855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561856, 1094561919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094561920, 1094562431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562432, 1094562455, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562456, 1094562687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562688, 1094562719, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562720, 1094562799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562800, 1094562807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562808, 1094562879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562880, 1094562895, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562896, 1094562911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562912, 1094562927, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094562928, 1094565119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094565120, 1094565375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094565376, 1094565743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094565744, 1094565759, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094565760, 1094565807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094565808, 1094565815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094565816, 1094565887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094565888, 1094568046, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094568047, 1094568061, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094568062, 1094582271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094582272, 1094723095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094723096, 1094723111, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094723112, 1094727431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094727432, 1094727439, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094727440, 1094727639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094727640, 1094727647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094727648, 1094749503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094749504, 1094749511, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094749512, 1094759607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094759608, 1094759615, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094759616, 1094764519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094764520, 1094764527, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094764528, 1094780639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094780640, 1094780647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094780648, 1094795319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094795320, 1094795327, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094795328, 1094796063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094796064, 1094796071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094796072, 1094797743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094797744, 1094797751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094797752, 1094797815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094797816, 1094797823, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094797824, 1094801975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094801976, 1094801983, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094801984, 1094802127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094802128, 1094802135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094802136, 1094807487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094807488, 1094807495, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094807496, 1094810135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094810136, 1094810143, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094810144, 1094811023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094811024, 1094811031, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094811032, 1094811071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094811072, 1094811079, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094811080, 1094822247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094822248, 1094822255, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094822256, 1094822327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094822328, 1094822335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094822336, 1094822559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094822560, 1094822567, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094822568, 1094831479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094831480, 1094831487, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094831488, 1094833975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094833976, 1094833983, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094833984, 1094839703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094839704, 1094839711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094839712, 1094839783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094839784, 1094839791, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094839792, 1094839863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094839864, 1094839871, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094839872, 1094841111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094841112, 1094841119, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094841120, 1094841191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094841192, 1094841199, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094841200, 1094843271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094843272, 1094843279, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094843280, 1094846063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094846064, 1094846071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094846072, 1094850735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094850736, 1094850743, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094850744, 1094857095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094857096, 1094857103, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094857104, 1094861183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094861184, 1094861191, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094861192, 1094861791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094861792, 1094861799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094861800, 1094867079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094867080, 1094867087, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094867088, 1094869095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094869096, 1094869103, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094869104, 1094874215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094874216, 1094874223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094874224, 1094878639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094878640, 1094878647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094878648, 1094878991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094878992, 1094878999, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094879000, 1094879959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094879960, 1094879967, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094879968, 1094880455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094880456, 1094880463, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094880464, 1094881287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094881288, 1094881295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094881296, 1094881303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094881304, 1094881311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094881312, 1094886191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094886192, 1094886199, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094886200, 1094886303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094886304, 1094886311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094886312, 1094889087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094889088, 1094889095, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094889096, 1094892255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094892256, 1094892263, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094892264, 1094893127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094893128, 1094893135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094893136, 1094893287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094893288, 1094893295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094893296, 1094898847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094898848, 1094898855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094898856, 1094901903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094901904, 1094901919, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094901920, 1094901983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094901984, 1094901999, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094902000, 1094902007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094902008, 1094902015, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094902016, 1094904679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094904680, 1094904687, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094904688, 1094909871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094909872, 1094909879, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094909880, 1094909983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094909984, 1094909991, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094909992, 1094911023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094911024, 1094911031, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094911032, 1094912143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094912144, 1094912151, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094912152, 1094912239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094912240, 1094912247, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094912248, 1094912775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094912776, 1094912783, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094912784, 1094913039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094913040, 1094913047, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094913048, 1094913159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094913160, 1094913167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094913168, 1094917439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094917440, 1094917447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094917448, 1094917671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094917672, 1094917687, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094917688, 1094918327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094918328, 1094918335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094918336, 1094919783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094919784, 1094919791, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094919792, 1094919831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094919832, 1094919839, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094919840, 1094921751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094921752, 1094921759, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094921760, 1094921799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094921800, 1094921807, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094921808, 1094924183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094924184, 1094924191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094924192, 1094926399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094926400, 1094926407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094926408, 1094926527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094926528, 1094926535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094926536, 1094926743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094926744, 1094926751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094926752, 1094928727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094928728, 1094928735, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094928736, 1094933199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094933200, 1094933207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094933208, 1094933447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094933448, 1094933455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094933456, 1094934639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094934640, 1094934647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094934648, 1094934703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094934704, 1094934711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094934712, 1094934975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094934976, 1094934991, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094934992, 1094935063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935064, 1094935071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935072, 1094935127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935128, 1094935135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935136, 1094935359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935360, 1094935367, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935368, 1094935495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935496, 1094935503, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094935504, 1094936735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094936736, 1094936743, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094936744, 1094936775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094936776, 1094936783, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094936784, 1094936847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094936848, 1094936855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094936856, 1094949487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094949488, 1094949495, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094949496, 1094950927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094950928, 1094950935, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094950936, 1094950959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094950960, 1094950967, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094950968, 1094950975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094950976, 1094950983, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094950984, 1094951151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094951152, 1094951159, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094951160, 1094960239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094960240, 1094960247, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094960248, 1094970527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094970528, 1094970535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094970536, 1094978159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094978160, 1094978167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094978168, 1094984271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094984272, 1094984279, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094984280, 1094984359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094984360, 1094984367, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094984368, 1094984487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094984488, 1094984503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094984504, 1094985167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985168, 1094985175, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985176, 1094985423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985424, 1094985431, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985432, 1094985655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985656, 1094985663, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985664, 1094985927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985928, 1094985935, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1094985936, 1095007263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095007264, 1095007303, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095007304, 1095017535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095017536, 1095017543, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095017544, 1095017807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095017808, 1095017815, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095017816, 1095018311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095018312, 1095018319, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095018320, 1095018463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095018464, 1095018471, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095018472, 1095035271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095035272, 1095035279, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095035280, 1095038071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095038072, 1095038079, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095038080, 1095038199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095038200, 1095038207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095038208, 1095038495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095038496, 1095038503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095038504, 1095044999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045000, 1095045007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045008, 1095045047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045048, 1095045055, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045056, 1095045727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045728, 1095045735, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045736, 1095045935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045936, 1095045943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045944, 1095045951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045952, 1095045959, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095045960, 1095046887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095046888, 1095046895, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095046896, 1095048463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095048464, 1095048471, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095048472, 1095056655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095056656, 1095056663, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095056664, 1095057375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095057376, 1095057383, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095057384, 1095067695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095067696, 1095067703, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095067704, 1095068351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095068352, 1095068359, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095068360, 1095068439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095068440, 1095068447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095068448, 1095068455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095068456, 1095068463, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095068464, 1095069311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095069312, 1095069319, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095069320, 1095069591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095069592, 1095069599, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095069600, 1095072767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095072768, 1095072775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095072776, 1095073047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095073048, 1095073055, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095073056, 1095075551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095075552, 1095075559, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095075560, 1095078703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095078704, 1095078711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095078712, 1095080975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095080976, 1095080983, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095080984, 1095081295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095081296, 1095081303, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095081304, 1095081439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095081440, 1095081447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095081448, 1095084535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095084536, 1095084543, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095084544, 1095085047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095085048, 1095085055, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095085056, 1095087215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087216, 1095087223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087224, 1095087287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087288, 1095087295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087296, 1095087703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087704, 1095087711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087712, 1095087743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087744, 1095087751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095087752, 1095088367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095088368, 1095088375, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095088376, 1095088399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095088400, 1095088407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095088408, 1095089615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095089616, 1095089623, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095089624, 1095089839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095089840, 1095089847, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095089848, 1095090407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095090408, 1095090415, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095090416, 1095092879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095092880, 1095092887, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095092888, 1095093151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095093152, 1095093159, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095093160, 1095093903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095093904, 1095093911, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095093912, 1095102879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095102880, 1095102887, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095102888, 1095103207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095103208, 1095103215, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095103216, 1095103327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095103328, 1095103335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095103336, 1095105823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095105824, 1095105831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095105832, 1095106183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095106184, 1095106191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095106192, 1095106199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095106200, 1095106207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095106208, 1095106575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095106576, 1095106583, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095106584, 1095107079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095107080, 1095107087, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095107088, 1095117535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095117536, 1095117543, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095117544, 1095122431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095122432, 1095122439, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095122440, 1095122527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095122528, 1095122535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095122536, 1095125071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095125072, 1095125079, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095125080, 1095125383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095125384, 1095125391, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095125392, 1095127447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095127448, 1095127455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095127456, 1095127967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095127968, 1095127983, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095127984, 1095129807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095129808, 1095129815, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095129816, 1095138607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095138608, 1095138615, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095138616, 1095139927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095139928, 1095139935, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095139936, 1095142143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095142144, 1095142151, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095142152, 1095156607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095156608, 1095156615, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095156616, 1095160239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095160240, 1095160247, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095160248, 1095160927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095160928, 1095160935, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095160936, 1095187919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095187920, 1095187927, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095187928, 1095188359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095188360, 1095188367, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095188368, 1095190823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095190824, 1095190831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095190832, 1095197495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095197496, 1095197503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095197504, 1095202127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095202128, 1095202135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095202136, 1095207935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095207936, 1095207951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095207952, 1095221455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095221456, 1095221463, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095221464, 1095222223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095222224, 1095222231, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095222232, 1095236551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095236552, 1095236559, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095236560, 1095237631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095237632, 1095303167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095303168, 1095407999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095408000, 1095408015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095408016, 1095408887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095408888, 1095408895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095408896, 1095450623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095450624, 1095467007, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095467008, 1095627775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095627776, 1095628287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1095628288, 1096070047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096070048, 1096070079, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096070080, 1096224919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096224920, 1096224927, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096224928, 1096232959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096237056, 1096278015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096278016, 1096286207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096286208, 1096290879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096290880, 1096290943, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096290944, 1096351231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096351232, 1096351743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096351744, 1096548351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096548352, 1096810495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096810496, 1096884223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096884224, 1096888319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096892416, 1096925183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096925184, 1096941567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096941568, 1096942679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096942680, 1096942687, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096942688, 1096952455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096952456, 1096952463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096952464, 1096952519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096952520, 1096952527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096952528, 1096956463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096956464, 1096956471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096956472, 1096956631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096956632, 1096956639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096956640, 1096957775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096957776, 1096957791, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096957792, 1096959599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096959600, 1096959607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096959608, 1096960767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096960768, 1096960895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096960896, 1096961023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096961024, 1096961151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096961152, 1096964119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096964120, 1096964127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096964128, 1096968191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096968192, 1096968319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096968320, 1096968447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096968448, 1096968575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1096968576, 1097727999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097728000, 1097729151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097729152, 1097729167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097729168, 1097730847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097730848, 1097730855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097730856, 1097731391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097731392, 1097731399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097731400, 1097731407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097731408, 1097731415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097731416, 1097733599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097733600, 1097733631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097733632, 1097736191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736192, 1097736467, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736468, 1097736477, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736478, 1097736487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736488, 1097736497, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736498, 1097736507, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736508, 1097736547, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736548, 1097736557, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736558, 1097736567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736568, 1097736577, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736578, 1097736587, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736588, 1097736597, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736598, 1097736607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736608, 1097736617, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736618, 1097736627, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736628, 1097736733, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736734, 1097736763, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736764, 1097736773, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736774, 1097736783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736784, 1097736803, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736804, 1097736813, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736814, 1097736823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736824, 1097736853, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736854, 1097736863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736864, 1097736893, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736894, 1097736903, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736904, 1097736913, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097736914, 1097736999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737000, 1097737009, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737010, 1097737029, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737030, 1097737049, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737050, 1097737059, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737060, 1097737069, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737070, 1097737109, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737110, 1097737119, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737120, 1097737149, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737150, 1097737159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737160, 1097737169, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737170, 1097737225, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737226, 1097737235, N'RE', N'Reunion') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737236, 1097737275, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737276, 1097737285, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737286, 1097737295, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737296, 1097737305, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737306, 1097737315, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737316, 1097737325, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737326, 1097737335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737336, 1097737355, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737356, 1097737365, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737366, 1097737415, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737416, 1097737425, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737426, 1097737531, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737532, 1097737541, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737542, 1097737551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737552, 1097737591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737592, 1097737601, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737602, 1097737611, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737612, 1097737621, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737622, 1097737631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737632, 1097737641, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737642, 1097737737, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737738, 1097737747, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737748, 1097737757, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737758, 1097737767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737768, 1097737777, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737778, 1097737857, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737858, 1097737867, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737868, 1097737897, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737898, 1097737907, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737908, 1097737927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097737928, 1097738093, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738094, 1097738103, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738104, 1097738113, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738114, 1097738133, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738134, 1097738143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738144, 1097738163, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738164, 1097738173, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738174, 1097738183, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738184, 1097738249, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738250, 1097738259, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738260, 1097738269, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738270, 1097738279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738280, 1097738289, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738290, 1097738299, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738300, 1097738309, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738310, 1097738339, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738340, 1097738349, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738350, 1097738439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738440, 1097738449, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738450, 1097738505, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738506, 1097738515, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738516, 1097738535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738536, 1097738555, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738556, 1097738565, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738566, 1097738585, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738586, 1097738595, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738596, 1097738605, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738606, 1097738615, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738616, 1097738655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738656, 1097738665, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738666, 1097738675, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738676, 1097738685, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738686, 1097738761, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738762, 1097738771, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738772, 1097738781, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738782, 1097738791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738792, 1097738801, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738802, 1097738821, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738822, 1097738831, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738832, 1097738881, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738882, 1097738891, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738892, 1097738911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738912, 1097738921, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738922, 1097738931, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738932, 1097738941, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097738942, 1097739047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739048, 1097739057, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739058, 1097739067, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739068, 1097739087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739088, 1097739097, N'WF', N'Wallis and Futuna') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739098, 1097739107, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739108, 1097739127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739128, 1097739137, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739138, 1097739147, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739148, 1097739383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739384, 1097739393, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739394, 1097739403, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739404, 1097739413, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739414, 1097739423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739424, 1097739433, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739434, 1097739463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739464, 1097739473, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739474, 1097739569, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739570, 1097739579, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739580, 1097739609, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739610, 1097739619, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739620, 1097739669, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739670, 1097739679, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739680, 1097739699, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739700, 1097739709, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739710, 1097739719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739720, 1097739729, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739730, 1097739739, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097739740, 1097740131, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740132, 1097740144, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740145, 1097740357, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740358, 1097740367, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740368, 1097740387, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740388, 1097740397, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740398, 1097740457, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740458, 1097740467, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740468, 1097740839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740840, 1097740849, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740850, 1097740859, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740860, 1097740899, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740900, 1097740909, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740910, 1097740919, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740920, 1097740949, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740950, 1097740959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740960, 1097740969, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740970, 1097740979, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740980, 1097740989, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097740990, 1097740999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741000, 1097741009, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741010, 1097741095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741096, 1097741105, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741106, 1097741115, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741116, 1097741165, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741166, 1097741175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741176, 1097741195, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741196, 1097741205, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741206, 1097741215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741216, 1097741225, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741226, 1097741235, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741236, 1097741245, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741246, 1097741255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741256, 1097741265, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741266, 1097741351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741352, 1097741361, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741362, 1097741371, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741372, 1097741381, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741382, 1097741391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741392, 1097741441, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741442, 1097741451, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741452, 1097741511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741512, 1097741521, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741522, 1097741577, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741578, 1097741587, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741588, 1097741657, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741658, 1097741667, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741668, 1097741677, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741678, 1097741687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741688, 1097741697, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741698, 1097741727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741728, 1097741737, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741738, 1097741747, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741748, 1097741863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741864, 1097741873, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741874, 1097741883, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741884, 1097741893, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741894, 1097741903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741904, 1097741913, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741914, 1097741923, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741924, 1097741933, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741934, 1097741943, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741944, 1097741953, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097741954, 1097742023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742024, 1097742033, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742034, 1097742089, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742090, 1097742099, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742100, 1097742129, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742130, 1097742139, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742140, 1097742149, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742150, 1097742159, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742160, 1097742199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742200, 1097742209, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742210, 1097742219, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742220, 1097742229, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742230, 1097742259, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742260, 1097742269, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742270, 1097742279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742280, 1097742289, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742290, 1097742355, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742356, 1097742365, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742366, 1097742375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742376, 1097742385, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742386, 1097742395, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742396, 1097742405, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742406, 1097742415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742416, 1097742425, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742426, 1097742445, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742446, 1097742455, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742456, 1097742465, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742466, 1097742475, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742476, 1097742741, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742742, 1097742751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742752, 1097742781, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742782, 1097742791, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742792, 1097742801, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097742802, 1097743017, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743018, 1097743027, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743028, 1097743113, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743114, 1097743123, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743124, 1097743143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743144, 1097743153, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743154, 1097743173, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743174, 1097743183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743184, 1097743193, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743194, 1097743203, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743204, 1097743253, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743254, 1097743263, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743264, 1097743283, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743284, 1097743293, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743294, 1097743379, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743380, 1097743389, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743390, 1097743399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743400, 1097743409, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743410, 1097743449, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743450, 1097743459, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743460, 1097743499, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743500, 1097743509, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743510, 1097743549, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743550, 1097743559, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743560, 1097743625, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743626, 1097743635, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743636, 1097743665, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743666, 1097743675, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743676, 1097743685, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743686, 1097743755, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743756, 1097743765, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743766, 1097743805, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743806, 1097743815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743816, 1097743881, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743882, 1097743891, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743892, 1097743901, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743902, 1097743911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743912, 1097743941, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743942, 1097743951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743952, 1097743961, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743962, 1097743971, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743972, 1097743981, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743982, 1097743991, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097743992, 1097744001, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744002, 1097744011, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744012, 1097744021, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744022, 1097744031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744032, 1097744041, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744042, 1097744061, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744062, 1097744071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744072, 1097744137, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744138, 1097744147, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744148, 1097744167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744168, 1097744177, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744178, 1097744197, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744198, 1097744207, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744208, 1097744227, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744228, 1097744237, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744238, 1097744247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744248, 1097744257, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744258, 1097744267, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744268, 1097744307, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744308, 1097744317, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744318, 1097744327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744328, 1097744337, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744338, 1097744347, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097744348, 1097768959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097768960, 1097777151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097777152, 1097797823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097797824, 1097797855, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097797856, 1097805823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097809920, 1097830399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097830400, 1097834495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097834496, 1097838591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097842688, 1097865151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097865152, 1097865183, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097865184, 1097896191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097896192, 1097896711, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097896712, 1097896719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097896720, 1097897215, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097897216, 1097947135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097947136, 1097947615, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097947616, 1097947623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097947624, 1097948279, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097948280, 1097948287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097948288, 1097949183, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097949184, 1097951231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097951232, 1097953279, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097953280, 1097991839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097991840, 1097991871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1097991872, 1098188047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098188048, 1098188055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098188056, 1098874783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098874784, 1098874815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098874816, 1098891263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891264, 1098891519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891520, 1098891575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891576, 1098891615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891616, 1098891623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891624, 1098891639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891640, 1098891647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891648, 1098891775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891776, 1098891967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098891968, 1098892031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1098892032, 1101041279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101041280, 1101041407, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101041408, 1101078455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101078456, 1101078463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101078464, 1101113135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101113136, 1101113143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101113144, 1101118239, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101118240, 1101118271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101118272, 1101120231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101120232, 1101120239, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101120240, 1101121535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101121536, 1101121791, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101121792, 1101139967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101139968, 1101140223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101140224, 1101177479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101177480, 1101177487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101177488, 1101182975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101182976, 1101183487, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101183488, 1101190655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101190656, 1101191167, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101191168, 1101191319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101191320, 1101191327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101191328, 1101224959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101224960, 1101225215, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101225216, 1101263103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101263104, 1101263359, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101263360, 1101267711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101267712, 1101267967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101267968, 1101304063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101304064, 1101304319, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101304320, 1101304831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101304832, 1101305855, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101305856, 1101306047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101306048, 1101306079, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101306080, 1101339887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101339888, 1101339903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101339904, 1101352959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101352960, 1101355007, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101355008, 1101357215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101357216, 1101357223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101357224, 1101384415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101384416, 1101384447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101384448, 1101385855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101385856, 1101385919, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101385920, 1101402031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101402032, 1101402047, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101402048, 1101425919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101425920, 1101426175, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101426176, 1101431607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101431608, 1101431615, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101431616, 1101431679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101431680, 1101431807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101431808, 1101440295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101440296, 1101440303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101440304, 1101445775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101445776, 1101445791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101445792, 1101445799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101445800, 1101445807, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101445808, 1101461759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101461760, 1101462015, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101462016, 1101469695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101469696, 1101471743, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101471744, 1101475839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101475840, 1101479935, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101479936, 1101484031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101484032, 1101488127, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101488128, 1101492623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101492624, 1101492639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101492640, 1101497535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101497536, 1101497567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101497568, 1101523039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101523040, 1101523071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101523072, 1101542399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101542400, 1101542911, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101542912, 1101574655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101574656, 1101575167, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101575168, 1101617679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101617680, 1101617687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101617688, 1101619247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101619248, 1101619255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101619256, 1101625343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101625344, 1101625407, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101625408, 1101634191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101634192, 1101634207, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101634208, 1101635327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101635328, 1101635583, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101635584, 1101650431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101650432, 1101650943, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101650944, 1101662951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101662952, 1101662959, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101662960, 1101668095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101668096, 1101668351, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101668352, 1101676135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101676136, 1101676143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101676144, 1101676543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101676544, 1101678591, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101678592, 1101681407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101681408, 1101681663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101681664, 1101685383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101685384, 1101685391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101685392, 1101705743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101705744, 1101705759, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101705760, 1101726407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101726408, 1101726415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101726416, 1101732199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101732200, 1101732207, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101732208, 1101750783, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101750784, 1101751295, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101751296, 1101767679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101767680, 1101768191, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101768192, 1101791743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101791744, 1101791999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101792000, 1101792255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101792256, 1101792767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101792768, 1101837311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101837312, 1101837567, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101837568, 1101857295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101857296, 1101857311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101857312, 1101864223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101864224, 1101864255, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101864256, 1101869055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101869056, 1101869567, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101869568, 1101871103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101871104, 1101873151, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101873152, 1101881935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101881936, 1101881951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101881952, 1101905407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101905408, 1101905663, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101905664, 1101921407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101921408, 1101921471, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101921472, 1101952439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101952440, 1101952447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101952448, 1101971071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101971072, 1101971079, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101971080, 1101973023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101973024, 1101973039, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101973040, 1101981663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101981664, 1101981695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1101981696, 1102004223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102004224, 1102004479, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102004480, 1102004735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102004736, 1102005503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102005504, 1102005759, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102005760, 1102005823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102005824, 1102006271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102006272, 1102006527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102006528, 1102007583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102007584, 1102007599, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102007600, 1102007679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102007680, 1102007695, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102007696, 1102007711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102007712, 1102007727, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102007728, 1102016511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102020608, 1102389247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102389248, 1102393343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102397440, 1102446591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102446592, 1102448383, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102448384, 1102449151, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102449152, 1102449407, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102449408, 1102454527, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102454528, 1102454783, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102454784, 1102480383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102480384, 1102481407, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102481408, 1102483455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102487552, 1102512127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102512128, 1102513151, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102513152, 1102516223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1102520320, 1103119647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103119648, 1103119663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103119664, 1103244799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103244800, 1103245055, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103245056, 1103419007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103419008, 1103419039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103419040, 1103447567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103447568, 1103447575, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103447576, 1103474943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103474944, 1103475199, N'MH', N'Marshall Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103475200, 1103476223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103476224, 1103476255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103476256, 1103586335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103586336, 1103586351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103586352, 1103586463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103586464, 1103586479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103586480, 1103603711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103603712, 1103605759, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103605760, 1103609855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103609856, 1103613951, N'GY', N'Guyana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103613952, 1103623167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103623168, 1103623679, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103623680, 1103637711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103637712, 1103637727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103637728, 1103639679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103639680, 1103639711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103639712, 1103641687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103641688, 1103641695, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103641696, 1103641807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103641808, 1103641823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103641824, 1103670207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103670208, 1103670271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103670272, 1103670783, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103670784, 1103675647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103675648, 1103675711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103675712, 1103675775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103675776, 1103675903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103675904, 1103678543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103678544, 1103678551, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103678552, 1103678655, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103678656, 1103678719, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103678720, 1103678831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103678832, 1103678847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103678848, 1103691023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103691024, 1103691031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103691032, 1103691167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103691168, 1103691199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103691200, 1103708159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103708160, 1103708167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103708168, 1103719479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103719480, 1103719487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103719488, 1103760383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103760384, 1103760639, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103760640, 1103760927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103760928, 1103760943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103760944, 1103766271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103766272, 1103766527, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103766528, 1103767039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103767040, 1103767295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103767296, 1103769367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103769368, 1103769375, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103769376, 1103864447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103864448, 1103864479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103864480, 1103907647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103907648, 1103907679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103907680, 1103911967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103911968, 1103911975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103911976, 1103930879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103930880, 1103931135, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103931136, 1103987967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103987968, 1103988223, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103988224, 1103992319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103992320, 1103992575, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103992576, 1103996927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103996928, 1103997439, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1103997440, 1104003455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104003456, 1104003583, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104003584, 1104030303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104030304, 1104030335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104030336, 1104030463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104030464, 1104030719, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104030720, 1104033439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104033440, 1104033471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104033472, 1104075703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104075704, 1104075711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104075712, 1104081391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104081392, 1104081399, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104081400, 1104096407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104096408, 1104096415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104096416, 1104166911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104166912, 1104168959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104168960, 1104194823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104194824, 1104194831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104194832, 1104232743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104232744, 1104232751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104232752, 1104265215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104265216, 1104265727, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104265728, 1104413695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104413696, 1104413711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104413712, 1104414287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104414288, 1104414303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104414304, 1104492287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104492288, 1104492543, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104492544, 1104510975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104510976, 1104511743, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104511744, 1104523263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104523264, 1104524287, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104524288, 1104540671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104540672, 1104541695, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104541696, 1104554559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104554560, 1104554623, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104554624, 1104558223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104558224, 1104558239, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104558240, 1104559391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104559392, 1104559399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104559400, 1104559487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104559488, 1104559503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104559504, 1104611519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104611520, 1104611551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104611552, 1104616255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104616256, 1104616271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104616272, 1104618271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104618272, 1104618303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104618304, 1104630975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104630976, 1104631039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104631040, 1104666751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104666752, 1104666767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104666768, 1104695303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104695304, 1104695311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104695312, 1104708687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104708688, 1104708703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104708704, 1104787487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104787488, 1104787519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104787520, 1104839319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104839320, 1104839327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104839328, 1104842751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104842752, 1104844799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104844800, 1104881087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104881088, 1104881151, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104881152, 1104909823, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104909824, 1104910079, N'MH', N'Marshall Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104910080, 1104960799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104960800, 1104960815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1104960816, 1105099519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105099520, 1105099775, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105099776, 1105153215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105153216, 1105153279, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105153280, 1105176551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105176552, 1105176559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105176560, 1105188463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105188464, 1105188471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105188472, 1105192287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105192288, 1105192319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1105192320, 1106273919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106273920, 1106273935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106273936, 1106305663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106305664, 1106305671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106305672, 1106306047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106306048, 1106306079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106306080, 1106307967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106307968, 1106308031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106308032, 1106325967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106325968, 1106325975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106325976, 1106327039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106327040, 1106327103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106327104, 1106335039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106335040, 1106335071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106335072, 1106349599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106349600, 1106349607, N'UM', N'United States Minor Outlying Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106349608, 1106367871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106367872, 1106367903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106367904, 1106396223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106396224, 1106396255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106396256, 1106428959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106428960, 1106428975, N'UM', N'United States Minor Outlying Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106428976, 1106443623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106443624, 1106443631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106443632, 1106469695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106469696, 1106469759, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106469760, 1106469887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106469888, 1106470911, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106470912, 1106475007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106475008, 1106475519, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106475520, 1106484351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106484352, 1106484415, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106484416, 1106495303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106495304, 1106495319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106495320, 1106515263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106515264, 1106515271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106515272, 1106532887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106532888, 1106532895, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106532896, 1106547743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106547744, 1106547759, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106547760, 1106564607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106564608, 1106564863, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106564864, 1106567423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106567424, 1106567455, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106567456, 1106605695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106605696, 1106605703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106605704, 1106685047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106685048, 1106685055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106685056, 1106740991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106740992, 1106741247, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106741248, 1106741295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106741296, 1106741311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106741312, 1106758655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106758656, 1106759167, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106759168, 1106759679, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106759680, 1106767871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106767872, 1106768383, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106768384, 1106768895, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106768896, 1106769919, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106769920, 1106814719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106814720, 1106814975, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106814976, 1106848247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106848248, 1106848255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1106848256, 1107288063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107288064, 1107292159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107296256, 1107701759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107701760, 1107705855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107705856, 1107800063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107800064, 1107800319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107800320, 1107801367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107801368, 1107801375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107801376, 1107820543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107820544, 1107853311, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1107853312, 1108033535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108033536, 1108041727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108041728, 1108054015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108054016, 1108066303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108066304, 1108492287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108492288, 1108500479, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108500480, 1108502303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108502304, 1108502311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108502312, 1108525055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108525056, 1108541439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1108541440, 1109688319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109688320, 1109696511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109696512, 1109705727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705728, 1109705743, N'CG', N'Congo') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705744, 1109705759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705760, 1109705791, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705792, 1109705823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705824, 1109705839, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705840, 1109705855, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705856, 1109705983, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109705984, 1109706239, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109706240, 1109706751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109706752, 1109707263, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109707264, 1109707519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109707520, 1109707775, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109707776, 1109708031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109708032, 1109708039, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109708040, 1109708639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109708640, 1109708671, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109708672, 1109708799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109708800, 1109709055, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109709056, 1109709823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109709824, 1109710847, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109710848, 1109819391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109819392, 1109848831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109848832, 1109849087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109849088, 1109852159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109852160, 1109918463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109918464, 1109918719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109918720, 1109919487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109919488, 1109919743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109919744, 1109923135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923136, 1109923151, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923152, 1109923183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923184, 1109923199, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923200, 1109923279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923280, 1109923295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923296, 1109923647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923648, 1109923711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109923712, 1109925503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109925504, 1109925567, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109925568, 1109926911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109926912, 1109927167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109927168, 1109927423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109927424, 1109934591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109934592, 1109934847, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109934848, 1109952599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109952600, 1109952607, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109952608, 1109952623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109952624, 1109952631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109952632, 1109954167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109954168, 1109954175, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109954176, 1109954351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109954352, 1109954367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1109954368, 1110310911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110310912, 1110376447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110376448, 1110441983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110441984, 1110459967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110459968, 1110459999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110460000, 1110507519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110507520, 1110540287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110540288, 1110573055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110573056, 1110638591, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110638592, 1110663167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110663168, 1110671359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110675456, 1110679551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110679552, 1110683423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110683424, 1110683431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110683432, 1110683647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110687744, 1110891150, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891151, 1110891158, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891159, 1110891167, N'HM', N'Heard Island and McDonald Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891168, 1110891175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891176, 1110891183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891184, 1110891415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891416, 1110891423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891424, 1110891495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891496, 1110891503, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110891504, 1110892008, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110892009, 1110892016, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110892017, 1110892079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110892080, 1110892087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110892088, 1110929407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110929408, 1110933503, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1110933504, 1111195647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1111195648, 1111212031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1111212032, 1111228415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1111228416, 1111244799, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1111244800, 1112360959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112360960, 1112361023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112361024, 1112389503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112389504, 1112389567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112389568, 1112432639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112432640, 1112440831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112440832, 1112518687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518688, 1112518703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518704, 1112518719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518720, 1112518735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518736, 1112518783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518784, 1112518815, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518816, 1112518847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518848, 1112518863, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112518864, 1112519103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519104, 1112519119, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519120, 1112519135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519136, 1112519167, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519168, 1112519295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519296, 1112519327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519328, 1112519455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519456, 1112519471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112519472, 1112530943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112530944, 1112535039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1112539136, 1113587711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113591808, 1113595903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113595904, 1113596415, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113596416, 1113596927, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113596928, 1113597183, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113597184, 1113597439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113597440, 1113597695, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113597696, 1113598463, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113598464, 1113599487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113599488, 1113599999, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113600000, 1113600255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113600256, 1113603071, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113603072, 1113603327, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113603328, 1113603583, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113603584, 1113603839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113603840, 1113604095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113604096, 1113640396, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113640397, 1113640416, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113640417, 1113640961, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113640962, 1113640969, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113640970, 1113641009, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641010, 1113641039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641040, 1113641084, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641085, 1113641129, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641130, 1113641144, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641145, 1113641169, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641170, 1113641217, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641218, 1113641310, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641311, 1113641351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641352, 1113641450, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641451, 1113641470, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641471, 1113641985, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113641986, 1113642083, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642084, 1113642133, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642134, 1113642168, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642169, 1113642178, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642179, 1113642203, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642204, 1113642213, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642214, 1113642223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642224, 1113642238, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642239, 1113642630, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642631, 1113642645, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642646, 1113642685, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642686, 1113642695, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642696, 1113642720, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642721, 1113642730, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642731, 1113642740, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642741, 1113642750, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642751, 1113642956, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642957, 1113642966, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642967, 1113642986, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113642987, 1113643006, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643007, 1113643147, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643148, 1113643157, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643158, 1113643162, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643163, 1113643172, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643173, 1113643202, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643203, 1113643237, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643238, 1113643257, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643258, 1113643955, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643956, 1113643975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643976, 1113643995, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113643996, 1113644015, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644016, 1113644091, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644092, 1113644121, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644122, 1113644289, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644290, 1113644412, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644413, 1113644483, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644484, 1113644545, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644546, 1113644558, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644559, 1113644573, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644574, 1113644593, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644594, 1113644628, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644629, 1113644643, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113644644, 1113645767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113645768, 1113645777, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113645778, 1113646179, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113646180, 1113646189, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113646190, 1113646489, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113646490, 1113646590, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113646591, 1113647017, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647018, 1113647047, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647048, 1113647148, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647149, 1113647158, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647159, 1113647168, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647169, 1113647223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647224, 1113647233, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647234, 1113647361, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647362, 1113647459, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647460, 1113647484, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647485, 1113647504, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647505, 1113647549, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647550, 1113647614, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647615, 1113647750, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647751, 1113647765, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113647766, 1113648287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113648288, 1113648307, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113648308, 1113648342, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113648343, 1113648352, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113648353, 1113649306, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113649307, 1113649406, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113649407, 1113649921, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113649922, 1113650174, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650175, 1113650210, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650211, 1113650235, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650236, 1113650275, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650276, 1113650285, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650286, 1113650320, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650321, 1113650330, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650331, 1113650350, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650351, 1113650380, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650381, 1113650430, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650431, 1113650433, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650434, 1113650686, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650687, 1113650689, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650690, 1113650722, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650723, 1113650752, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650753, 1113650978, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113650979, 1113651018, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651019, 1113651043, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651044, 1113651083, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651084, 1113651201, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651202, 1113651281, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651282, 1113651457, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651458, 1113651710, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651711, 1113651811, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651812, 1113651831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651832, 1113651851, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651852, 1113651926, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651927, 1113651936, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651937, 1113651956, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651957, 1113651969, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113651970, 1113652222, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113652223, 1113652225, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113652226, 1113652478, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113652479, 1113652481, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113652482, 1113652609, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113652610, 1113652619, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113652620, 1113652659, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113652660, 1113653121, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113653122, 1113653246, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113653247, 1113657343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113657344, 1113661439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113661440, 1113665535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113669632, 1113677823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113686016, 1113718783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113718784, 1113743359, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113743360, 1113851359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113851360, 1113851391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113851392, 1113854007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113854008, 1113854015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113854016, 1113854207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113854208, 1113854463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113854464, 1113854975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113854976, 1113855487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113855488, 1113857023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113857024, 1113857031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113857032, 1113857087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113857088, 1113857151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113857152, 1113862247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113862248, 1113862255, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113862256, 1113862343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113862344, 1113862351, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113862352, 1113864735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113864736, 1113864743, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113864744, 1113864767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113864768, 1113864783, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113864784, 1113881871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113881872, 1113881879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113881880, 1113888599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113888600, 1113888607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113888608, 1113889279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113889280, 1113889535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113889536, 1113903295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113903296, 1113903359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113903360, 1113905791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113905792, 1113905807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113905808, 1113916831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113916832, 1113916839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113916840, 1113919383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113919384, 1113919391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113919392, 1113923839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113923840, 1113923903, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113923904, 1113932815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113932816, 1113932823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113932824, 1113935359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113935360, 1113935615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113935616, 1113989119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113989120, 1113993215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113993216, 1113997311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1113997312, 1114005503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114005504, 1114038271, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114038272, 1114042367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114042368, 1114054655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114054656, 1114062847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114062848, 1114095615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114095616, 1114103807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114103808, 1114505215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114505216, 1114507423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114507424, 1114507431, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114507432, 1114511359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114511360, 1114511615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114511616, 1114513407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114513408, 1114515455, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114515456, 1114520063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114520064, 1114520319, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114520320, 1114520575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114520576, 1114520831, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114520832, 1114524159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114524160, 1114525695, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114525696, 1114530815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114530816, 1114531839, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114531840, 1114533375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114533376, 1114533887, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114533888, 1114537983, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114537984, 1114550271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114550272, 1114579209, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579210, 1114579219, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579220, 1114579239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579240, 1114579249, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579250, 1114579279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579280, 1114579289, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579290, 1114579299, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579300, 1114579309, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579310, 1114579319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579320, 1114579329, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579330, 1114579339, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579340, 1114579349, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579350, 1114579475, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579476, 1114579485, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579486, 1114579515, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579516, 1114579525, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579526, 1114579535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579536, 1114579545, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579546, 1114579605, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579606, 1114579615, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579616, 1114579625, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579626, 1114579635, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579636, 1114579731, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579732, 1114579741, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579742, 1114579771, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579772, 1114579781, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579782, 1114579791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579792, 1114579801, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579802, 1114579841, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579842, 1114579851, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579852, 1114579861, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579862, 1114579871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579872, 1114579881, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579882, 1114579891, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579892, 1114579901, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579902, 1114579911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579912, 1114579921, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579922, 1114579977, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579978, 1114579987, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114579988, 1114580027, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580028, 1114580037, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580038, 1114580047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580048, 1114580057, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580058, 1114580067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580068, 1114580087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580088, 1114580097, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580098, 1114580107, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580108, 1114580117, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580118, 1114580147, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580148, 1114580157, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580158, 1114580167, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580168, 1114580177, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580178, 1114580293, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580294, 1114580303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580304, 1114580393, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580394, 1114580413, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580414, 1114580423, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580424, 1114580489, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580490, 1114580499, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580500, 1114580509, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580510, 1114580529, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580530, 1114580539, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580540, 1114580549, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580550, 1114580559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580560, 1114580569, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580570, 1114580589, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580590, 1114580599, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580600, 1114580609, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580610, 1114580619, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580620, 1114580629, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580630, 1114580639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580640, 1114580679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580680, 1114580689, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580690, 1114580745, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580746, 1114580755, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580756, 1114580765, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580766, 1114580775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580776, 1114580785, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580786, 1114580795, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580796, 1114580805, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580806, 1114580845, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580846, 1114580855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580856, 1114580885, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580886, 1114580895, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114580896, 1114581011, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581012, 1114581021, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581022, 1114581061, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581062, 1114581071, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581072, 1114581081, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581082, 1114581091, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581092, 1114581101, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581102, 1114581111, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581112, 1114581151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581152, 1114581161, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581162, 1114581287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581288, 1114581297, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581298, 1114581307, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581308, 1114581317, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581318, 1114581337, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581338, 1114581357, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581358, 1114581367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581368, 1114581417, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581418, 1114581427, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581428, 1114581513, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581514, 1114581523, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581524, 1114581533, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581534, 1114581543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581544, 1114581553, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581554, 1114581563, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581564, 1114581583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581584, 1114581593, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581594, 1114581603, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581604, 1114581613, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581614, 1114581623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581624, 1114581633, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581634, 1114581829, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581830, 1114581839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581840, 1114581859, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581860, 1114581869, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581870, 1114581879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581880, 1114581889, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581890, 1114581899, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581900, 1114581959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581960, 1114581969, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114581970, 1114582025, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582026, 1114582035, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582036, 1114582045, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582046, 1114582065, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582066, 1114582075, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582076, 1114582085, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582086, 1114582095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582096, 1114582105, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582106, 1114582115, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582116, 1114582135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582136, 1114582145, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582146, 1114582155, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582156, 1114582165, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582166, 1114582185, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582186, 1114582195, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582196, 1114582205, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582206, 1114582215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582216, 1114582225, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582226, 1114582245, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582246, 1114582281, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582282, 1114582291, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582292, 1114582301, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582302, 1114582311, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582312, 1114582331, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582332, 1114582341, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582342, 1114582351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582352, 1114582391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582392, 1114582401, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582402, 1114582421, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582422, 1114582431, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582432, 1114582441, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582442, 1114582481, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582482, 1114582501, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582502, 1114582537, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582538, 1114582547, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582548, 1114582557, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582558, 1114582617, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582618, 1114582627, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114582628, 1114583059, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583060, 1114583069, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583070, 1114583099, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583100, 1114583109, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583110, 1114583119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583120, 1114583129, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583130, 1114583139, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583140, 1114583149, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583150, 1114583159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583160, 1114583169, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583170, 1114583209, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583210, 1114583219, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583220, 1114583229, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583230, 1114583239, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583240, 1114583305, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583306, 1114583315, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583316, 1114583325, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583326, 1114583335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583336, 1114583345, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583346, 1114583415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583416, 1114583425, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583426, 1114583435, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583436, 1114583445, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583446, 1114583455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583456, 1114583465, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583466, 1114583475, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583476, 1114583485, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583486, 1114583495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583496, 1114583505, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583506, 1114583591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583592, 1114583601, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583602, 1114583611, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583612, 1114583631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583632, 1114583641, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583642, 1114583651, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583652, 1114583661, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583662, 1114583691, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583692, 1114583701, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583702, 1114583711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583712, 1114583721, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583722, 1114583731, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583732, 1114583741, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583742, 1114583751, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583752, 1114583781, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583782, 1114583791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583792, 1114583817, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583818, 1114583827, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583828, 1114583837, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583838, 1114583847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583848, 1114583857, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583858, 1114583867, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583868, 1114583887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583888, 1114583897, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583898, 1114583917, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583918, 1114583927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583928, 1114583937, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583938, 1114583967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583968, 1114583977, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114583978, 1114584073, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584074, 1114584083, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584084, 1114584093, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584094, 1114584103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584104, 1114584123, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584124, 1114584133, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584134, 1114584143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584144, 1114584153, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584154, 1114584163, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584164, 1114584183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584184, 1114584193, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584194, 1114584203, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584204, 1114584213, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584214, 1114584223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584224, 1114584233, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584234, 1114584243, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584244, 1114584253, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584254, 1114584263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584264, 1114584369, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584370, 1114584379, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584380, 1114584399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584400, 1114584409, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584410, 1114584449, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584450, 1114584459, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584460, 1114584489, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584490, 1114584499, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584500, 1114584509, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584510, 1114584519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584520, 1114584605, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584606, 1114584615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584616, 1114584665, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584666, 1114584685, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584686, 1114584695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584696, 1114584715, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584716, 1114584725, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584726, 1114584735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584736, 1114584745, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584746, 1114584755, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584756, 1114584765, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584766, 1114584775, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584776, 1114584841, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584842, 1114584851, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584852, 1114584871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584872, 1114584881, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584882, 1114584891, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584892, 1114584901, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584902, 1114584921, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584922, 1114584951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584952, 1114584961, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584962, 1114584971, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584972, 1114584981, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584982, 1114584991, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114584992, 1114585097, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585098, 1114585107, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585108, 1114585117, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585118, 1114585127, N'CN', N'China') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585128, 1114585137, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585138, 1114585147, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585148, 1114585157, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585158, 1114585167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585168, 1114585177, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585178, 1114585207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585208, 1114585217, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585218, 1114585247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585248, 1114585257, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585258, 1114585267, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585268, 1114585277, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585278, 1114585287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585288, 1114585297, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585298, 1114585363, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585364, 1114585373, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585374, 1114585383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585384, 1114585393, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585394, 1114585403, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585404, 1114585423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585424, 1114585433, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585434, 1114585443, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585444, 1114585453, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585454, 1114585483, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585484, 1114585493, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585494, 1114585523, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585524, 1114585533, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585534, 1114585543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585544, 1114585553, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585554, 1114585629, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585630, 1114585639, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585640, 1114585649, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585650, 1114585659, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585660, 1114585669, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585670, 1114585679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585680, 1114585699, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585700, 1114585709, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585710, 1114585719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585720, 1114585729, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585730, 1114585739, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585740, 1114585749, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585750, 1114585799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585800, 1114585809, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585810, 1114585834, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585835, 1114585850, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585851, 1114585935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585936, 1114585945, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585946, 1114585955, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585956, 1114585965, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114585966, 1114586005, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586006, 1114586015, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586016, 1114586025, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586026, 1114586035, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586036, 1114586045, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586046, 1114586055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586056, 1114586161, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586162, 1114586171, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586172, 1114586181, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586182, 1114586191, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586192, 1114586211, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586212, 1114586221, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586222, 1114586231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586232, 1114586241, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586242, 1114586251, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586252, 1114586271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586272, 1114586281, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586282, 1114586311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586312, 1114586321, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586322, 1114586437, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586438, 1114586447, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586448, 1114586457, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586458, 1114586467, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586468, 1114586477, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586478, 1114586487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586488, 1114586497, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586498, 1114586507, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586508, 1114586517, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586518, 1114586527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586528, 1114586537, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586538, 1114586547, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586548, 1114586557, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586558, 1114586763, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586764, 1114586773, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114586774, 1114627583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114627584, 1114627599, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114627600, 1114627647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114627648, 1114627663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114627664, 1114681343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114681344, 1114685439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114685440, 1114877183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114877184, 1114877439, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114877440, 1114877951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114877952, 1114878207, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114878208, 1114878849, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114878850, 1114878977, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1114878978, 1115063839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115063840, 1115063847, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115063848, 1115064447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115064448, 1115064463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115064464, 1115064975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115064976, 1115064991, N'TW', N'Taiwan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115064992, 1115066047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115066048, 1115066055, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115066056, 1115070063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115070064, 1115070079, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115070080, 1115070337, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115070338, 1115070347, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115070348, 1115071241, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115071242, 1115071251, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115071252, 1115071311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115071312, 1115071321, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115071322, 1115073663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115073664, 1115073791, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115073792, 1115075091, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075092, 1115075101, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075102, 1115075387, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075388, 1115075397, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075398, 1115075437, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075438, 1115075447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075448, 1115075487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075488, 1115075497, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075498, 1115075527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075528, 1115075537, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115075538, 1115076351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115076352, 1115076607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115076608, 1115114495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115114496, 1115114751, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115114752, 1115115007, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115115008, 1115115519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115115520, 1115116543, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115116544, 1115117567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115117568, 1115118591, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115118592, 1115119615, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115119616, 1115135999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115136000, 1115144191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115144192, 1115243263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115243264, 1115243271, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115243272, 1115299871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115299872, 1115299879, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115299880, 1115350543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115350544, 1115350551, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115350552, 1115401431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115401432, 1115401439, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115401440, 1115665631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115665632, 1115665639, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115665640, 1115693055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115693056, 1115697151, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115701248, 1115783167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115783168, 1115784599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115784600, 1115784607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115784608, 1115791359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115791360, 1115794943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115794944, 1115795199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115795200, 1115795455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115799552, 1115815935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115815936, 1115947007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1115947008, 1116012543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116012544, 1116013055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116013056, 1116013311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116013312, 1116022271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116022272, 1116022783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116022784, 1116028927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116028928, 1116168191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116168192, 1116169311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116169312, 1116169327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116169328, 1116176383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116176384, 1116210247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210248, 1116210255, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210256, 1116210375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210376, 1116210383, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210384, 1116210519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210520, 1116210527, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210528, 1116210703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210704, 1116210711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116210712, 1116211487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116211488, 1116211495, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116211496, 1116211631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116211632, 1116211639, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116211640, 1116211647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116211648, 1116211655, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116211656, 1116213375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213376, 1116213383, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213384, 1116213447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213448, 1116213463, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213464, 1116213639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213640, 1116213647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213648, 1116213943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213944, 1116213951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116213952, 1116214159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116214160, 1116214167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116214168, 1116217151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116217152, 1116217159, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116217160, 1116217439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116217440, 1116217447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116217448, 1116218527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116218528, 1116218535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116218536, 1116220231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116220232, 1116220239, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116220240, 1116223199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116223200, 1116223207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116223208, 1116224047, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116224048, 1116224055, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116224056, 1116228943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116228944, 1116228951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116228952, 1116229063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116229064, 1116229071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116229072, 1116233767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116233768, 1116233775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116233776, 1116233791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116233792, 1116233799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116233800, 1116244151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116244152, 1116244159, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116244160, 1116244767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116244768, 1116244775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116244776, 1116244935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116244936, 1116244943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116244944, 1116245247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116245248, 1116245255, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116245256, 1116245263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116245264, 1116245271, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116245272, 1116251823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116251824, 1116251831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116251832, 1116252319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116252320, 1116252327, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116252328, 1116253247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116253248, 1116253255, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116253256, 1116253295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116253296, 1116253303, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116253304, 1116253455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116253456, 1116253463, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116253464, 1116261583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116261584, 1116261591, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116261592, 1116269567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116269568, 1116269575, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116269576, 1116271503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116271504, 1116271511, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116271512, 1116272879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116272880, 1116272887, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116272888, 1116275047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116275048, 1116275055, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116275056, 1116275511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116275512, 1116275519, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116275520, 1116277255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116277256, 1116277263, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116277264, 1116277279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116277280, 1116277311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116277312, 1116277687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116277688, 1116277695, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116277696, 1116279351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116279352, 1116279359, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116279360, 1116279503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116279504, 1116279511, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116279512, 1116283999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116284000, 1116284007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116284008, 1116284871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116284872, 1116284879, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116284880, 1116291351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116291352, 1116291359, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116291360, 1116299551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116299552, 1116299559, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116299560, 1116299623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116299624, 1116299631, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116299632, 1116300847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116300848, 1116300855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116300856, 1116301143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116301144, 1116301151, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116301152, 1116302423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116302424, 1116302431, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116302432, 1116303023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116303024, 1116303031, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116303032, 1116305967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116305968, 1116305975, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116305976, 1116310527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116310528, 1116310535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116310536, 1116311831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116311832, 1116311839, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116311840, 1116316399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116316400, 1116316407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116316408, 1116321559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116321560, 1116321567, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116321568, 1116325399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116325400, 1116325407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116325408, 1116330407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116330408, 1116330415, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116330416, 1116334743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116334744, 1116334751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116334752, 1116334983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116334984, 1116334991, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116334992, 1116335735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116335736, 1116335743, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116335744, 1116336839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116336840, 1116336847, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116336848, 1116337119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116337120, 1116337127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116337128, 1116337935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116337936, 1116337943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116337944, 1116339559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116339560, 1116339567, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116339568, 1116339575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116339576, 1116339583, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116339584, 1116339599, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116339600, 1116339607, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116339608, 1116359815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116359816, 1116359823, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116359824, 1116359919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116359920, 1116359927, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116359928, 1116360215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116360216, 1116360223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116360224, 1116392463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116392464, 1116392471, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116392472, 1116401303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116401304, 1116401311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116401312, 1116406175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116406176, 1116406191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116406192, 1116409287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116409288, 1116409295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116409296, 1116422439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116422440, 1116422447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116422448, 1116444783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116444784, 1116444791, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116444792, 1116459631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116459632, 1116459647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116459648, 1116473575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116473576, 1116473583, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116473584, 1116478399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116478400, 1116478407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116478408, 1116481879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116481880, 1116481887, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116481888, 1116487895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116487896, 1116487903, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116487904, 1116487911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116487912, 1116487919, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116487920, 1116491303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116491304, 1116491311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116491312, 1116496047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116496048, 1116496055, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116496056, 1116499983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116499984, 1116499991, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116499992, 1116505919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116505920, 1116505951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116505952, 1116506767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116506768, 1116506775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116506776, 1116506863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116506864, 1116506871, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116506872, 1116509495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116509496, 1116509503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116509504, 1116510911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116510912, 1116510927, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116510928, 1116529023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116529024, 1116529031, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116529032, 1116538687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116538688, 1116538703, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116538704, 1116566343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116566344, 1116566351, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116566352, 1116577415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116577416, 1116577423, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116577424, 1116599479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116599480, 1116599487, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116599488, 1116897279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116897280, 1116905471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1116905472, 1117128671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117128672, 1117128703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117128704, 1117142271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117142272, 1117142527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117142528, 1117168111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117168112, 1117168127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117168128, 1117177375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117177376, 1117177383, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117177384, 1117177407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117177408, 1117177471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117177472, 1117178287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117178288, 1117178303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117178304, 1117195991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117195992, 1117195999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117196000, 1117203343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117203344, 1117203359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117203360, 1117206599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117206600, 1117206623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117206624, 1117347855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117347856, 1117347871, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117347872, 1117413375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117413376, 1117414399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117414400, 1117415423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117415424, 1117416191, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117416192, 1117416447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117416448, 1117416703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117416704, 1117417215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417216, 1117417223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417224, 1117417231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417232, 1117417239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417240, 1117417247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417248, 1117417263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417264, 1117417279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417280, 1117417343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417344, 1117417471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417472, 1117417599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117417600, 1117418303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117418304, 1117418319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117418320, 1117420031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117420032, 1117420287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117420288, 1117421567, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117421568, 1117683711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117683712, 1117691903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117691904, 1117695999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117700096, 1117796575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117796576, 1117796591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117796592, 1117944383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117944384, 1117944399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117944400, 1117978623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117978624, 1117979503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117979504, 1117979519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117979520, 1117983023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117983024, 1117983039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117983040, 1117983215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117983216, 1117983223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117983224, 1117984191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117984192, 1117984199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117984200, 1117985055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985056, 1117985079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985080, 1117985423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985424, 1117985447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985448, 1117985463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985464, 1117985471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985472, 1117985607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985608, 1117985663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985664, 1117985671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985672, 1117985679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985680, 1117985695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985696, 1117985711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985712, 1117985719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985720, 1117985743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985744, 1117985767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985768, 1117985783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117985784, 1117986575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117986576, 1117986687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117986688, 1117986815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117986816, 1117990911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117995008, 1117999103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1117999104, 1118003199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118011392, 1118027775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118027776, 1118031871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118031872, 1118044159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118105600, 1118109695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118109696, 1118121743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118121744, 1118121759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118121760, 1118126079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118126080, 1118126591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118126592, 1118126719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118126720, 1118126847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118126848, 1118127231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118127232, 1118127359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118127360, 1118127615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118127616, 1118128383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118128384, 1118128639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118128640, 1118129151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129152, 1118129663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129664, 1118129695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129696, 1118129727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129728, 1118129823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129824, 1118129855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129856, 1118129887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129888, 1118129919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118129920, 1118130431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118130432, 1118131455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118131456, 1118131583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118131584, 1118131711, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118131712, 1118132479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118132480, 1118132991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118132992, 1118133375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118133376, 1118133503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118133504, 1118133631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118133632, 1118133759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118133760, 1118133887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118133888, 1118134783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118134784, 1118134879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118134880, 1118134911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118134912, 1118134975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118134976, 1118135567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118135568, 1118135583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118135584, 1118135599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118135600, 1118135615, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118135616, 1118135759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118135760, 1118135775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118135776, 1118136063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118136064, 1118136191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118136192, 1118136831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118136832, 1118136863, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118136864, 1118136927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118136928, 1118136959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118136960, 1118137087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118137088, 1118137119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118137120, 1118137151, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118137152, 1118137279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118137280, 1118137311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118137312, 1118138559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118138560, 1118138591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118138592, 1118138879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118138880, 1118139135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118139136, 1118139903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118139904, 1118140159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118140160, 1118140735, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118140736, 1118140767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118140768, 1118140831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118140832, 1118140895, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118140896, 1118141183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118141184, 1118141439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118141440, 1118141695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118141696, 1118141951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118141952, 1118151215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118151216, 1118151231, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118151232, 1118151423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118151424, 1118151431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118151432, 1118151631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118151632, 1118151647, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118151648, 1118151935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118151936, 1118152191, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118152192, 1118152255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118152256, 1118152271, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118152272, 1118152879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118152880, 1118152895, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118152896, 1118153071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153072, 1118153087, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153088, 1118153151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153152, 1118153167, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153168, 1118153423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153424, 1118153439, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153440, 1118153679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153680, 1118153695, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153696, 1118153855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153856, 1118153919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153920, 1118153935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153936, 1118153951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153952, 1118153983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118153984, 1118154207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118154208, 1118154223, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118154224, 1118155103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118155104, 1118155119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118155120, 1118155183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118155184, 1118155199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118155200, 1118155215, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118155216, 1118156175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118156176, 1118156191, N'GY', N'Guyana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118156192, 1118156607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118156608, 1118156623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118156624, 1118157599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118157600, 1118157631, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118157632, 1118157695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118157696, 1118157711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118157712, 1118158847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118158848, 1118167039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118167040, 1118171135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118175232, 1118474239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118474240, 1118474863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118474864, 1118474871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118474872, 1118474879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118474880, 1118474911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118474912, 1118478335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118478336, 1118961663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118961664, 1118962831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118962832, 1118962839, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118962840, 1118962847, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118962848, 1118962943, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118962944, 1118963199, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963200, 1118963455, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963456, 1118963463, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963464, 1118963471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963472, 1118963479, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963480, 1118963487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963488, 1118963495, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963496, 1118963967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963968, 1118963991, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118963992, 1118964863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118964864, 1118964879, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118964880, 1118964991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118964992, 1118965503, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118965504, 1118965839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118965840, 1118965847, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118965848, 1118965903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118965904, 1118965911, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118965912, 1118965919, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118965920, 1118965991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118965992, 1118966007, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966008, 1118966023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966024, 1118966031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966032, 1118966039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966040, 1118966063, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966064, 1118966071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966072, 1118966079, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966080, 1118966087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966088, 1118966111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966112, 1118966119, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966120, 1118966143, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966144, 1118966151, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966152, 1118966191, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966192, 1118966207, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966208, 1118966215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966216, 1118966223, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966224, 1118966271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966272, 1118966351, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966352, 1118966367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966368, 1118966399, N'SV', N'El Salvador') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966400, 1118966407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966408, 1118966415, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966416, 1118966423, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966424, 1118966455, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966456, 1118966463, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966464, 1118966487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966488, 1118966495, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966496, 1118966503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966504, 1118966511, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966512, 1118966519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966520, 1118966527, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966528, 1118966655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966656, 1118966687, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966688, 1118966695, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966696, 1118966703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966704, 1118966711, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966712, 1118966719, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966720, 1118966783, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966784, 1118966807, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966808, 1118966815, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966816, 1118966847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966848, 1118966911, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966912, 1118966959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966960, 1118966975, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966976, 1118966991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118966992, 1118966999, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967000, 1118967015, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967016, 1118967039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967040, 1118967047, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967048, 1118967063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967064, 1118967135, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967136, 1118967167, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967168, 1118967199, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967200, 1118967207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967208, 1118967247, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967248, 1118967255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967256, 1118967271, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967272, 1118967279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967280, 1118967287, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967288, 1118967295, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967296, 1118967327, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967328, 1118967335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967336, 1118967343, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967344, 1118967359, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967360, 1118967367, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967368, 1118967375, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967376, 1118967383, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967384, 1118967391, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967392, 1118967399, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967400, 1118967423, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967424, 1118967487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967488, 1118967519, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967520, 1118967535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967536, 1118967543, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967544, 1118967551, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967552, 1118967567, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967568, 1118967583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967584, 1118967615, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967616, 1118967631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967632, 1118967647, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967648, 1118967663, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967664, 1118967679, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967680, 1118967743, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967744, 1118967775, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967776, 1118967799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967800, 1118967807, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967808, 1118967903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118967904, 1118968015, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968016, 1118968119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968120, 1118968127, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968128, 1118968159, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968160, 1118968175, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968176, 1118968183, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968184, 1118968191, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968192, 1118968207, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968208, 1118968223, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968224, 1118968255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968256, 1118968287, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968288, 1118968295, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968296, 1118968303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968304, 1118968319, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968320, 1118968575, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968576, 1118968831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968832, 1118968975, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968976, 1118968991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118968992, 1118969007, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969008, 1118969023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969024, 1118969055, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969056, 1118969087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969088, 1118969215, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969216, 1118969279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969280, 1118969343, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969344, 1118969367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969368, 1118969375, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969376, 1118969855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118969856, 1118970111, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118970112, 1118970879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118970880, 1118971520, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118971521, 1118972415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118972416, 1118972671, N'EC', N'Ecuador') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118972672, 1118972927, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118972928, 1118972935, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118972936, 1118972983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118972984, 1118972991, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118972992, 1118972999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973000, 1118973007, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973008, 1118973071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973072, 1118973079, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973080, 1118973111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973112, 1118973119, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973120, 1118973311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973312, 1118973439, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973440, 1118973695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973696, 1118973951, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118973952, 1118974975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118974976, 1118975231, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118975232, 1118975743, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118975744, 1118976255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976256, 1118976287, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976288, 1118976319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976320, 1118976327, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976328, 1118976511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976512, 1118976575, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976576, 1118976599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976600, 1118976607, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976608, 1118976615, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976616, 1118976687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976688, 1118976695, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976696, 1118976703, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976704, 1118976711, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976712, 1118976719, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976720, 1118976727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976728, 1118976735, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976736, 1118976767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976768, 1118976791, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976792, 1118976831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976832, 1118976863, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976864, 1118976895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118976896, 1118977023, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118977024, 1118977311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118977312, 1118977343, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118977344, 1118977839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118977840, 1118977847, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118977848, 1118978047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118978048, 1118978439, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118978440, 1118978447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118978448, 1118978463, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118978464, 1118978527, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118978528, 1118979071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979072, 1118979295, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979296, 1118979327, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979328, 1118979455, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979456, 1118979479, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979480, 1118979495, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979496, 1118979503, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979504, 1118979535, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979536, 1118979575, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979576, 1118979711, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979712, 1118979775, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979776, 1118979839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979840, 1118979855, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979856, 1118979895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979896, 1118979903, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118979904, 1118980095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118980096, 1118980351, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118980352, 1118980607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118980608, 1118980863, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118980864, 1118981119, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981120, 1118981375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981376, 1118981631, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981632, 1118981687, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981688, 1118981695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981696, 1118981735, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981736, 1118981743, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981744, 1118981751, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981752, 1118981759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981760, 1118981783, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981784, 1118981791, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981792, 1118981823, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981824, 1118981831, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981832, 1118981855, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981856, 1118981863, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981864, 1118981871, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981872, 1118981879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981880, 1118981887, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118981888, 1118982175, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982176, 1118982183, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982184, 1118982199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982200, 1118982207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982208, 1118982215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982216, 1118982231, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982232, 1118982239, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982240, 1118982271, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982272, 1118982279, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982280, 1118982287, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982288, 1118982295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982296, 1118982311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982312, 1118982327, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982328, 1118982335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982336, 1118982367, N'NG', N'Nigeria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982368, 1118982383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982384, 1118982391, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982392, 1118982399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982400, 1118982407, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982408, 1118982415, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982416, 1118982431, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982432, 1118982439, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982440, 1118982447, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982448, 1118982463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982464, 1118982471, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982472, 1118982479, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982480, 1118982487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982488, 1118982495, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982496, 1118982543, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982544, 1118982551, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982552, 1118982559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982560, 1118982567, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982568, 1118982575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982576, 1118982583, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982584, 1118982591, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982592, 1118982599, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982600, 1118982607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982608, 1118982615, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982616, 1118982655, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982656, 1118982783, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982784, 1118982911, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982912, 1118982919, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982920, 1118982927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982928, 1118982935, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118982936, 1118983039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983040, 1118983047, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983048, 1118983079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983080, 1118983087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983088, 1118983167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983168, 1118983199, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983200, 1118983263, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983264, 1118983295, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983296, 1118983359, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983360, 1118983423, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983424, 1118983679, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983680, 1118983743, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983744, 1118983759, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983760, 1118983871, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983872, 1118983879, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118983880, 1118984703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984704, 1118984775, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984776, 1118984783, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984784, 1118984791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984792, 1118984799, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984800, 1118984807, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984808, 1118984815, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984816, 1118984831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984832, 1118984839, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984840, 1118984855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984856, 1118984863, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984864, 1118984887, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984888, 1118984895, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984896, 1118984959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118984960, 1118985215, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118985216, 1118985983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118985984, 1118986111, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118986112, 1118986239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118986240, 1118986751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118986752, 1118987263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118987264, 1118988287, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118988288, 1118994431, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1118994432, 1119023735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119023736, 1119023743, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119023744, 1119109119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119109120, 1119113215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119113216, 1119152399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119152400, 1119152407, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119152408, 1119152423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119152424, 1119152431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119152432, 1119153263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119153264, 1119153279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119153280, 1119155199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119155200, 1119155327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119155328, 1119166847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119166848, 1119166871, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119166872, 1119166879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119166880, 1119166983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119166984, 1119166991, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119166992, 1119167119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167120, 1119167127, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167128, 1119167231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167232, 1119167239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167240, 1119167359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167360, 1119167367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167368, 1119167407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167408, 1119167415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167416, 1119167559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167560, 1119167567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167568, 1119167631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167632, 1119167639, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167640, 1119167791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167792, 1119167799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167800, 1119167839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167840, 1119167855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119167856, 1119168055, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119168056, 1119168063, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119168064, 1119168799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119168800, 1119168807, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119168808, 1119169303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119169304, 1119169311, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119169312, 1119169383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119169384, 1119169391, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119169392, 1119169535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119169536, 1119169543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119169544, 1119170439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119170440, 1119170447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119170448, 1119170463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119170464, 1119170479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119170480, 1119170575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119170576, 1119170583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119170584, 1119171207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119171208, 1119171215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119171216, 1119171383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119171384, 1119171391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119171392, 1119172895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119172896, 1119172991, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119172992, 1119173007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173008, 1119173095, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173096, 1119173119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173120, 1119173143, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173144, 1119173151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173152, 1119173263, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173264, 1119173271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173272, 1119173367, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173368, 1119173375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173376, 1119173399, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173400, 1119173407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173408, 1119173471, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173472, 1119173495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173496, 1119173527, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173528, 1119173535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173536, 1119173543, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173544, 1119173551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173552, 1119173575, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173576, 1119173583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173584, 1119173655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173656, 1119173671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173672, 1119173679, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173680, 1119173703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173704, 1119173759, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173760, 1119173767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173768, 1119173783, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173784, 1119173791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173792, 1119173815, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173816, 1119173823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173824, 1119173847, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173848, 1119173863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173864, 1119173879, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173880, 1119173935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173936, 1119173983, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119173984, 1119173999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174000, 1119174015, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174016, 1119174023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174024, 1119174031, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174032, 1119174039, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174040, 1119174047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174048, 1119174207, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174208, 1119174215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174216, 1119174247, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174248, 1119174287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174288, 1119174319, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174320, 1119174343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174344, 1119174351, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174352, 1119174359, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174360, 1119174399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174400, 1119174407, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174408, 1119174471, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174472, 1119174479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174480, 1119174519, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174520, 1119174527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174528, 1119174543, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119174544, 1119211519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119211520, 1119215615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119215616, 1119289343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119289344, 1119354879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119354880, 1119424511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119428608, 1119432703, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119436800, 1119440895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119440896, 1119444991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119444992, 1119446751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119446752, 1119446759, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119446760, 1119469567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119469568, 1119473663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119477760, 1119486623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119486624, 1119486631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119486632, 1119490495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119490496, 1119490527, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119490528, 1119498239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119502336, 1119510527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119510528, 1119555583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119555584, 1119559679, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119559680, 1119567871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119567872, 1119571967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119571968, 1119576063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119576064, 1119578623, N'PH', N'Philippines') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119579136, 1119579391, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1119584256, 1120076031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120076032, 1120076287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120076288, 1120149503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120149504, 1120153599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120157696, 1120239873, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120239874, 1120240126, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240127, 1120240383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240384, 1120240639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240640, 1120240669, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240670, 1120240699, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240700, 1120240789, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240790, 1120240839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240840, 1120240844, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240845, 1120240854, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240855, 1120240874, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120240875, 1120241201, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241202, 1120241251, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241252, 1120241271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241272, 1120241281, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241282, 1120241301, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241302, 1120241351, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241352, 1120241376, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241377, 1120241386, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241387, 1120241406, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241407, 1120241472, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241473, 1120241482, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241483, 1120241492, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241493, 1120241577, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241578, 1120241612, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241613, 1120241662, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241663, 1120241921, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120241922, 1120242174, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120242175, 1120242433, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120242434, 1120242686, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120242687, 1120243201, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120243202, 1120243454, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120243455, 1120243713, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120243714, 1120243966, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120243967, 1120243969, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120243970, 1120244222, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120244223, 1120244225, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120244226, 1120244478, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120244479, 1120244737, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120244738, 1120244990, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120244991, 1120244993, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120244994, 1120245041, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120245042, 1120245307, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120245308, 1120245327, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120245328, 1120245347, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120245348, 1120245502, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120245503, 1120247809, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120247810, 1120247937, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120247938, 1120247947, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120247948, 1120248263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120248264, 1120248313, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120248314, 1120248321, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120248322, 1120248574, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120248575, 1120248577, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120248578, 1120248830, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120248831, 1120249297, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249298, 1120249327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249328, 1120249337, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249338, 1120249345, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249346, 1120249598, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249599, 1120249679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249680, 1120249799, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249800, 1120249809, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249810, 1120249824, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249825, 1120249844, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249845, 1120249854, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249855, 1120249857, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249858, 1120249923, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249924, 1120249955, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249956, 1120249975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120249976, 1120250015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120250016, 1120250050, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120250051, 1120250100, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120250101, 1120250110, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120250111, 1120250625, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120250626, 1120250878, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120250879, 1120251137, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251138, 1120251185, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251186, 1120251235, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251236, 1120251350, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251351, 1120251390, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251391, 1120251393, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251394, 1120251441, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251442, 1120251461, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251462, 1120251471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251472, 1120251481, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251482, 1120251905, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120251906, 1120252158, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120252159, 1120252417, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120252418, 1120252670, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120252671, 1120272383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120272384, 1120279039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120279040, 1120280575, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120280576, 1120280855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120280856, 1120280863, N'TZ', N'Tanzania, United Republic of') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120280864, 1120281087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120281088, 1120281103, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120281104, 1120281135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120281136, 1120281151, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120281152, 1120281599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120281600, 1120282367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120282368, 1120282623, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120282624, 1120282879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120282880, 1120283135, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120283136, 1120283647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120283648, 1120284671, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120284672, 1120286719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120286720, 1120296703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120296704, 1120296959, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120296960, 1120299007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120299008, 1120301055, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120301056, 1120306175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120306176, 1120306943, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120306944, 1120307199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120307200, 1120307967, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120307968, 1120308223, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120308224, 1120309247, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120309248, 1120310015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120310016, 1120310783, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120310784, 1120311807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120311808, 1120312447, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120312448, 1120312575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120312576, 1120312831, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120312832, 1120321535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120321536, 1120370687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120370688, 1120371519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120371520, 1120371551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120371552, 1120371647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120371648, 1120371651, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120371652, 1120371711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120371712, 1120372063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120372064, 1120372079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120372080, 1120372735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120372736, 1120374047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120374048, 1120374063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120374064, 1120374511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120374512, 1120374527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120374528, 1120375551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120375552, 1120375807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120375808, 1120376063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376064, 1120376127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376128, 1120376351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376352, 1120376575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376576, 1120376687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376688, 1120376767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376768, 1120376815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376816, 1120376831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120376832, 1120377183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120377184, 1120377199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120377200, 1120377791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120377792, 1120377855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120377856, 1120378367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120378368, 1120378623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120378624, 1120378911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120378912, 1120378927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120378928, 1120379902, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120379903, 1120379904, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120379905, 1120380143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120380144, 1120380415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120380416, 1120381087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120381088, 1120381095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120381096, 1120381103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120381104, 1120381119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120381120, 1120382223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120382224, 1120382239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120382240, 1120382271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120382272, 1120382335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120382336, 1120382431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120382432, 1120382463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120382464, 1120382975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120382976, 1120383263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383264, 1120383327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383328, 1120383343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383344, 1120383359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383360, 1120383423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383424, 1120383439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383440, 1120383775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383776, 1120383951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383952, 1120383967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120383968, 1120384095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120384096, 1120384127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120384128, 1120384511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120384512, 1120384639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120384640, 1120385023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120385024, 1120385087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120385088, 1120385535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120385536, 1120386047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120386048, 1120387071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120387072, 1120485375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120485376, 1120485503, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120485504, 1120485759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120485760, 1120485887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120485888, 1120485951, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120485952, 1120486015, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120486016, 1120486079, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120486080, 1120486143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120486144, 1120486399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120486400, 1120486911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120486912, 1120487039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487040, 1120487103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487104, 1120487199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487200, 1120487231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487232, 1120487295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487296, 1120487327, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487328, 1120487359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487360, 1120487391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487392, 1120487423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487424, 1120487679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487680, 1120487935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120487936, 1120488703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488704, 1120488767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488768, 1120488799, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488800, 1120488831, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488832, 1120488863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488864, 1120488895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488896, 1120488927, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488928, 1120488959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120488960, 1120489215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120489216, 1120489343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120489344, 1120489471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120489472, 1120489727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120489728, 1120489983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120489984, 1120490111, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120490112, 1120490751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120490752, 1120490783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120490784, 1120491007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120491008, 1120491775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120491776, 1120492543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120492544, 1120492799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120492800, 1120493055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120493056, 1120493087, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120493088, 1120493183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120493184, 1120493215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120493216, 1120493311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120493312, 1120493567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120493568, 1120493823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120493824, 1120494079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120494080, 1120494335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120494336, 1120494591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120494592, 1120494847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120494848, 1120495359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120495360, 1120495615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120495616, 1120495743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120495744, 1120495871, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120495872, 1120495967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120495968, 1120495999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496000, 1120496223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496224, 1120496255, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496256, 1120496287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496288, 1120496319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496320, 1120496385, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496386, 1120496638, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496639, 1120496639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120496640, 1120497023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497024, 1120497151, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497152, 1120497183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497184, 1120497215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497216, 1120497247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497248, 1120497375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497376, 1120497663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497664, 1120497791, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497792, 1120497919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497920, 1120497983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120497984, 1120498013, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120498014, 1120498143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120498144, 1120498175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120498176, 1120498687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120498688, 1120498943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120498944, 1120499199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120499200, 1120499487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120499488, 1120499519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120499520, 1120500639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120500640, 1120500671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120500672, 1120509951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120509952, 1120516095, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120516096, 1120517375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120517376, 1120517631, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120517632, 1120517887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120517888, 1120518143, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120518144, 1120534527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120534528, 1120616807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120616808, 1120616815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120616816, 1120641023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120641024, 1120653311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120657408, 1120733183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120733184, 1120735231, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120735232, 1120735487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120735488, 1120735743, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120735744, 1120736207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120736208, 1120736223, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120736224, 1120736991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120736992, 1120737007, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120737008, 1120737023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120737024, 1120737279, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120737280, 1120739951, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120739952, 1120739983, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120739984, 1120739991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120739992, 1120740071, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120740072, 1120740175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120740176, 1120740183, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120740184, 1120740191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120740192, 1120740263, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120740264, 1120740351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120740352, 1120741375, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120741376, 1120741631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120741632, 1120741887, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120741888, 1120742911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120742912, 1120743679, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120743680, 1120744447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120744448, 1120744703, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120744704, 1120745471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120745472, 1120747519, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120747520, 1120845823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120854016, 1120862207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120862208, 1120886783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120886784, 1120894975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120894976, 1120911359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120911360, 1120913343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120913344, 1120913351, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120913352, 1120913383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120913384, 1120913391, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120913392, 1120914415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120914416, 1120914431, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120914432, 1120914687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120914688, 1120914719, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120914720, 1120915695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120915696, 1120915711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120915712, 1120917695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120917696, 1120917703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120917704, 1120918623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120918624, 1120918639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120918640, 1120919551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1120919552, 1121230847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121230848, 1121234943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121239040, 1121247231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247232, 1121247247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247248, 1121247255, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247256, 1121247271, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247272, 1121247279, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247280, 1121247287, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247288, 1121247295, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247296, 1121247503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247504, 1121247519, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247520, 1121247527, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247528, 1121247535, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247536, 1121247543, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247544, 1121247551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247552, 1121247567, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247568, 1121247583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247584, 1121247591, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247592, 1121247615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247616, 1121247631, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247632, 1121247647, N'VU', N'Vanuatu') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247648, 1121247663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247664, 1121247695, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247696, 1121247711, N'VU', N'Vanuatu') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247712, 1121247727, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247728, 1121247743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247744, 1121247775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247776, 1121247823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247824, 1121247839, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247840, 1121247871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247872, 1121247903, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247904, 1121247935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121247936, 1121247999, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248000, 1121248007, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248008, 1121248015, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248016, 1121248023, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248024, 1121248031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248032, 1121248047, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248048, 1121248055, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248056, 1121248063, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248064, 1121248079, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248080, 1121248087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248088, 1121248095, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248096, 1121248111, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248112, 1121248127, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248128, 1121248159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248160, 1121248255, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248256, 1121248287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248288, 1121248303, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248304, 1121248311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248312, 1121248335, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248336, 1121248343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248344, 1121248351, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248352, 1121248383, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248384, 1121248407, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248408, 1121248431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248432, 1121248447, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248448, 1121248479, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248480, 1121248495, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248496, 1121248511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248512, 1121248767, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248768, 1121248775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248776, 1121248799, N'BZ', N'Belize') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248800, 1121248831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248832, 1121248871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248872, 1121248879, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248880, 1121248911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248912, 1121248919, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248920, 1121248959, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248960, 1121248975, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248976, 1121248983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121248984, 1121249023, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249024, 1121249279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249280, 1121249383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249384, 1121249407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249408, 1121249439, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249440, 1121249543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249544, 1121249551, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249552, 1121249567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249568, 1121249599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249600, 1121249615, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249616, 1121249631, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249632, 1121249663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249664, 1121249695, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249696, 1121249727, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249728, 1121249775, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249776, 1121249791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121249792, 1121250047, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250048, 1121250095, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250096, 1121250111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250112, 1121250143, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250144, 1121250151, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250152, 1121250175, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250176, 1121250239, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250240, 1121250303, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250304, 1121250815, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250816, 1121250831, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250832, 1121250847, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250848, 1121250879, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250880, 1121250911, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250912, 1121250927, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250928, 1121250935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121250936, 1121251007, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251008, 1121251047, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251048, 1121251055, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251056, 1121251071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251072, 1121251079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251080, 1121251087, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251088, 1121251103, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251104, 1121251111, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251112, 1121251127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251128, 1121251135, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251136, 1121251167, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251168, 1121251199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251200, 1121251263, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251264, 1121251271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251272, 1121251279, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251280, 1121251287, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251288, 1121251295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251296, 1121251327, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251328, 1121251583, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251584, 1121251599, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251600, 1121251607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251608, 1121251615, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251616, 1121251647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251648, 1121251663, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251664, 1121251679, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251680, 1121251687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251688, 1121251727, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251728, 1121251775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251776, 1121251791, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251792, 1121251807, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251808, 1121251831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251832, 1121251839, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251840, 1121251855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251856, 1121251871, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251872, 1121251887, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251888, 1121251903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251904, 1121251935, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251936, 1121251943, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121251944, 1121252095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121252096, 1121252351, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121252352, 1121255423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121255424, 1121468463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468464, 1121468479, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468480, 1121468495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468496, 1121468511, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468512, 1121468519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468520, 1121468527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468528, 1121468551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468552, 1121468559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468560, 1121468567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468568, 1121468575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468576, 1121468591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468592, 1121468600, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468601, 1121468911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468912, 1121468927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468928, 1121468967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468968, 1121468975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121468976, 1121469175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469176, 1121469183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469184, 1121469367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469368, 1121469375, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469376, 1121469839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469840, 1121469847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469848, 1121469895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469896, 1121469903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469904, 1121469911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469912, 1121469919, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121469920, 1121470015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470016, 1121470047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470048, 1121470175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470176, 1121470191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470192, 1121470215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470216, 1121470223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470224, 1121470263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470264, 1121470271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470272, 1121470311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470312, 1121470319, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470320, 1121470423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470424, 1121470463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470464, 1121470551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470552, 1121470559, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470560, 1121470583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470584, 1121470591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470592, 1121470703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470704, 1121470711, N'VU', N'Vanuatu') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470712, 1121470727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470728, 1121470743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470744, 1121470759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470760, 1121470767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470768, 1121470815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470816, 1121470831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470832, 1121470847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470848, 1121470863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470864, 1121470871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470872, 1121470879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121470880, 1121471063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471064, 1121471071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471072, 1121471087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471088, 1121471095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471096, 1121471127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471128, 1121471135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471136, 1121471151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471152, 1121471159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471160, 1121471167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471168, 1121471175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471176, 1121471279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471280, 1121471295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471296, 1121471375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471376, 1121471391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471392, 1121471471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471472, 1121471487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471488, 1121471503, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471504, 1121471511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471512, 1121471519, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471520, 1121471527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471528, 1121471535, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471536, 1121471559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471560, 1121471575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471576, 1121471591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471592, 1121471599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471600, 1121471623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471624, 1121471631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471632, 1121471655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471656, 1121471663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471664, 1121471671, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471672, 1121471703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471704, 1121471711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471712, 1121471719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471720, 1121471727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471728, 1121471823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471824, 1121471831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471832, 1121471935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471936, 1121471943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471944, 1121471951, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471952, 1121471975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471976, 1121471983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121471984, 1121471999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472000, 1121472007, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472008, 1121472047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472048, 1121472055, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472056, 1121472207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472208, 1121472215, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472216, 1121472263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472264, 1121472271, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472272, 1121472279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472280, 1121472303, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472304, 1121472375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472376, 1121472383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472384, 1121472391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472392, 1121472407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472408, 1121472431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472432, 1121472447, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472448, 1121472463, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472464, 1121472471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472472, 1121472479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472480, 1121472511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472512, 1121472519, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472520, 1121472535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472536, 1121472559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472560, 1121472567, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472568, 1121472655, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472656, 1121472663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472664, 1121472671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472672, 1121472687, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472688, 1121472727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472728, 1121472735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472736, 1121472743, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472744, 1121472751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472752, 1121472775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472776, 1121472807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472808, 1121472831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472832, 1121472839, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472840, 1121472847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472848, 1121472863, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472864, 1121472871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472872, 1121472879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472880, 1121472887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472888, 1121472927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472928, 1121472935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121472936, 1121473175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473176, 1121473183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473184, 1121473199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473200, 1121473207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473208, 1121473239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473240, 1121473247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473248, 1121473279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473280, 1121473295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473296, 1121473303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473304, 1121473311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473312, 1121473327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473328, 1121473335, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473336, 1121473439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473440, 1121473471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473472, 1121473479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473480, 1121473487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473488, 1121473599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473600, 1121473607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473608, 1121473615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473616, 1121473871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473872, 1121473887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121473888, 1121474007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474008, 1121474015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474016, 1121474031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474032, 1121474039, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474040, 1121474063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474064, 1121474071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474072, 1121474079, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474080, 1121474095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474096, 1121474111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474112, 1121474151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474152, 1121474159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474160, 1121474303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474304, 1121474319, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474320, 1121474351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474352, 1121474359, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474360, 1121474367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474368, 1121474375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474376, 1121474383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474384, 1121474415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474416, 1121474447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474448, 1121474455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474456, 1121474511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474512, 1121474527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474528, 1121474535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474536, 1121474543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474544, 1121474591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474592, 1121474607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121474608, 1121475135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121475136, 1121475151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121475152, 1121476431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121476432, 1121476439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121476440, 1121476927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121476928, 1121476935, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121476936, 1121477391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477392, 1121477399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477400, 1121477415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477416, 1121477423, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477424, 1121477431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477432, 1121477439, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477440, 1121477447, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477448, 1121477551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477552, 1121477567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477568, 1121477599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477600, 1121477607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477608, 1121477935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477936, 1121477943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121477944, 1121478023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478024, 1121478031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478032, 1121478079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478080, 1121478111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478112, 1121478167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478168, 1121478175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478176, 1121478207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478208, 1121478239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478240, 1121478343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478344, 1121478367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478368, 1121478463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478464, 1121478471, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478472, 1121478495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478496, 1121478503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478504, 1121478511, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478512, 1121478519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478520, 1121478527, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478528, 1121478607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478608, 1121478623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478624, 1121478631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478632, 1121478639, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478640, 1121478647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478648, 1121478687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478688, 1121478703, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478704, 1121478967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478968, 1121478975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478976, 1121478991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121478992, 1121478999, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479000, 1121479023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479024, 1121479031, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479032, 1121479143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479144, 1121479167, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479168, 1121479215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479216, 1121479231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479232, 1121479295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479296, 1121479303, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479304, 1121479343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479344, 1121479359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479360, 1121479367, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479368, 1121479407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479408, 1121479415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479416, 1121479679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479680, 1121479687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479688, 1121479695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479696, 1121479759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479760, 1121479783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479784, 1121479831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479832, 1121479839, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479840, 1121479847, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479848, 1121479871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479872, 1121479887, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121479888, 1121480783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480784, 1121480791, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480792, 1121480799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480800, 1121480807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480808, 1121480847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480848, 1121480855, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480856, 1121480903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480904, 1121480911, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480912, 1121480959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480960, 1121480967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480968, 1121480991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121480992, 1121481023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481024, 1121481039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481040, 1121481047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481048, 1121481239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481240, 1121481247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481248, 1121481407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481408, 1121481415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481416, 1121481439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481440, 1121481447, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121481448, 1121482799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121482800, 1121482807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121482808, 1121483567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121483568, 1121483575, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121483576, 1121878015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121878016, 1121910783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1121910784, 1122074623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122074624, 1122091007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122091008, 1122103471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122103472, 1122103479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122103480, 1122108671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122108672, 1122108735, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122108736, 1122172936, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122172937, 1122172944, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122172945, 1122173024, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173025, 1122173064, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173065, 1122173136, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173137, 1122173144, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173145, 1122173152, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173153, 1122173160, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173161, 1122173168, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173169, 1122173184, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173185, 1122173192, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173193, 1122173224, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173225, 1122173232, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173233, 1122173280, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173281, 1122173288, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173289, 1122173408, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173409, 1122173416, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173417, 1122173488, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173489, 1122173496, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173497, 1122173520, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173521, 1122173528, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173529, 1122173568, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173569, 1122173576, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173577, 1122173584, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173585, 1122173592, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173593, 1122173600, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173601, 1122173624, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173625, 1122173632, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173633, 1122173704, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173705, 1122173712, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173713, 1122173960, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173961, 1122173968, N'RO', N'Romania') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173969, 1122173976, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122173977, 1122174048, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174049, 1122174056, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174057, 1122174120, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174121, 1122174128, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174129, 1122174136, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174137, 1122174152, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174153, 1122174160, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174161, 1122174184, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174185, 1122174192, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174193, 1122174200, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174201, 1122174328, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174329, 1122174336, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174337, 1122174392, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174393, 1122174408, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174409, 1122174416, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174417, 1122174424, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174425, 1122174568, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174569, 1122174576, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174577, 1122174584, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174585, 1122174600, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174601, 1122174608, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174609, 1122174640, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174641, 1122174648, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174649, 1122174704, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174705, 1122174712, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174713, 1122174728, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174729, 1122174736, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174737, 1122174808, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174809, 1122174816, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174817, 1122174824, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174825, 1122174864, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174865, 1122174872, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174873, 1122174944, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174945, 1122174952, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174953, 1122174960, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174961, 1122174968, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122174969, 1122179080, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179081, 1122179088, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179089, 1122179096, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179097, 1122179112, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179113, 1122179120, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179121, 1122179128, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179129, 1122179152, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179153, 1122179160, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179161, 1122179168, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179169, 1122179176, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179177, 1122179192, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179193, 1122179200, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179201, 1122179208, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179209, 1122179216, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179217, 1122179264, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179265, 1122179272, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179273, 1122179280, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179281, 1122179328, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179329, 1122179336, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179337, 1122179360, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179361, 1122179368, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179369, 1122179440, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179441, 1122179448, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179449, 1122179496, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179497, 1122179520, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179521, 1122179592, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179593, 1122179600, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179601, 1122179640, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179641, 1122179648, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179649, 1122179656, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179657, 1122179664, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179665, 1122179704, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179705, 1122179712, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179713, 1122179784, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179785, 1122179792, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179793, 1122179800, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179801, 1122179840, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179841, 1122179848, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179849, 1122179880, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179881, 1122179888, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179889, 1122179896, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179897, 1122179920, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179921, 1122179936, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179937, 1122179944, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179945, 1122179952, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179953, 1122179960, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122179961, 1122180032, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122180033, 1122180040, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122180041, 1122180048, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122180049, 1122181127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181128, 1122181136, N'HM', N'Heard Island and McDonald Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181137, 1122181200, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181201, 1122181208, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181209, 1122181216, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181217, 1122181224, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181225, 1122181232, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181233, 1122181288, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181289, 1122181296, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181297, 1122181320, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181321, 1122181328, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181329, 1122181336, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181337, 1122181344, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122181345, 1122182600, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182601, 1122182608, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182609, 1122182616, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182617, 1122182624, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182625, 1122182688, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182689, 1122182696, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182697, 1122182704, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182705, 1122182760, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182761, 1122182768, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182769, 1122182808, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182809, 1122182816, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182817, 1122182832, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182833, 1122182928, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182929, 1122182936, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182937, 1122182952, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182953, 1122182960, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182961, 1122182968, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182969, 1122182992, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122182993, 1122183000, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122183001, 1122189311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122189312, 1122190335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122190336, 1122197767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122197768, 1122197775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122197776, 1122201896, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122201897, 1122201912, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122201913, 1122201969, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122201970, 1122201977, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122201978, 1122202017, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202018, 1122202025, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202026, 1122202033, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202034, 1122202041, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202042, 1122202056, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202057, 1122202064, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202065, 1122202224, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202225, 1122202232, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202233, 1122202945, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202946, 1122202953, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202954, 1122202985, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122202986, 1122203001, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122203002, 1122203040, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122203041, 1122203048, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122203049, 1122203904, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122203905, 1122203920, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122203921, 1122204056, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204057, 1122204072, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204073, 1122204176, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204177, 1122204200, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204201, 1122204216, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204217, 1122204224, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204225, 1122204232, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204233, 1122204240, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122204241, 1122205208, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122205209, 1122205216, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122205217, 1122320959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122320960, 1122320995, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122320996, 1122411551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122411552, 1122411583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122411584, 1122412287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122412288, 1122412543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122412544, 1122414335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122414336, 1122414591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122414592, 1122416383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122416384, 1122416639, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122416640, 1122417663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122417664, 1122417919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122417920, 1122418175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122418176, 1122451455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122451456, 1122455551, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122459648, 1122471935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122476032, 1122480127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122484224, 1122493055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122493056, 1122493183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122493184, 1122493439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122493440, 1122494207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122494208, 1122494975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122494976, 1122495999, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122496000, 1122497791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122497792, 1122500095, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122500096, 1122511103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122511104, 1122511359, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122511360, 1122535423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122535424, 1122538495, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122538496, 1122557951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122566144, 1122667071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122667072, 1122667135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122667136, 1122731903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122731904, 1122732031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122732032, 1122732279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122732280, 1122732287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122732288, 1122733823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122733824, 1122734079, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122738176, 1122759247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122759248, 1122759263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1122759264, 1123123199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123123200, 1123127295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123131392, 1123135487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123139584, 1123165247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123165248, 1123165311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123165312, 1123336191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123336192, 1123352575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123352576, 1123534847, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123534848, 1123536895, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123536896, 1123583775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123583776, 1123583807, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123583808, 1123590143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123590144, 1123594239, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123598336, 1123615807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123615808, 1123615823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123615824, 1123663871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123663872, 1123667967, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123667968, 1123670015, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123670016, 1123671039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123671040, 1123672063, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123672064, 1123676159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123680256, 1123794943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123794944, 1123795199, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123795200, 1123807231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123811328, 1123811647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123811648, 1123811775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123811776, 1123811967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123811968, 1123812031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123812032, 1123813119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123813120, 1123813247, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123813248, 1123813887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123813888, 1123814015, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123814016, 1123814143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123814144, 1123814271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123814272, 1123814527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123814528, 1123814655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123814656, 1123815423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123815424, 1123815679, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123815680, 1123815935, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123815936, 1123816191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123816192, 1123816319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123816320, 1123816447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123816448, 1123816575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123816576, 1123816639, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123816640, 1123817471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123817472, 1123817535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123817536, 1123817727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123817728, 1123817855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123817856, 1123848191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123848192, 1123852287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123852288, 1123950591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123950592, 1123954687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1123958784, 1124028511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1124028512, 1124028543, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1124028544, 1125063231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125063232, 1125063263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125063264, 1125063679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125063680, 1125064191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125064192, 1125064703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125064704, 1125065215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125065216, 1125066751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125066752, 1125067263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125067264, 1125078719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125078720, 1125078751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125078752, 1125081087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081088, 1125081151, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081152, 1125081183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081184, 1125081215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081216, 1125081279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081280, 1125081311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081312, 1125081599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081600, 1125081855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125081856, 1125082111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082112, 1125082239, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082240, 1125082367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082368, 1125082623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082624, 1125082655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082656, 1125082687, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082688, 1125082783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082784, 1125082799, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082800, 1125082879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082880, 1125082943, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125082944, 1125083007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125083008, 1125083023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125083024, 1125083967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125083968, 1125084031, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125084032, 1125084063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125084064, 1125084095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125084096, 1125084927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125084928, 1125084991, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125084992, 1125085135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125085136, 1125085151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125085152, 1125086079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125086080, 1125086143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125086144, 1125086175, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125086176, 1125086207, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125086208, 1125087999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125088000, 1125088255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125088256, 1125090303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125090304, 1125090367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125090368, 1125090431, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125090432, 1125090479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125090480, 1125090495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125090496, 1125090527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125090528, 1125090559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125090560, 1125091087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091088, 1125091103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091104, 1125091135, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091136, 1125091167, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091168, 1125091183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091184, 1125091199, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091200, 1125091583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091584, 1125091647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091648, 1125091663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091664, 1125091679, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091680, 1125091711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091712, 1125091743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091744, 1125091759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091760, 1125091775, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091776, 1125091839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125091840, 1125093471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125093472, 1125093503, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125093504, 1125093567, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125093568, 1125093631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125093632, 1125093887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125093888, 1125093919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125093920, 1125094015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094016, 1125094143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094144, 1125094399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094400, 1125094431, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094432, 1125094463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094464, 1125094527, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094528, 1125094655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094656, 1125094671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094672, 1125094687, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094688, 1125094719, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094720, 1125094783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094784, 1125094799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094800, 1125094847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094848, 1125094911, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125094912, 1125095039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125095040, 1125095167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125095168, 1125095183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125095184, 1125095295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125095296, 1125095327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125095328, 1125095343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125095344, 1125096703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125096704, 1125096959, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125096960, 1125097087, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097088, 1125097119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097120, 1125097151, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097152, 1125097167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097168, 1125097215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097216, 1125097279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097280, 1125097343, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097344, 1125097407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097408, 1125097439, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097440, 1125097455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097456, 1125097471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097472, 1125097791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097792, 1125097823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097824, 1125097855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097856, 1125097871, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097872, 1125097887, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097888, 1125097919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097920, 1125097983, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125097984, 1125099519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125099520, 1125099775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125099776, 1125100031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125100032, 1125100287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125100288, 1125103487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125103488, 1125103519, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125103520, 1125105983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125105984, 1125106047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106048, 1125106063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106064, 1125106111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106112, 1125106175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106176, 1125106207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106208, 1125106223, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106224, 1125106239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106240, 1125106255, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106256, 1125106271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106272, 1125106303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106304, 1125106367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106368, 1125106623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106624, 1125106687, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125106688, 1125110271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110272, 1125110335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110336, 1125110399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110400, 1125110463, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110464, 1125110783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110784, 1125110911, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110912, 1125110927, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110928, 1125110943, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110944, 1125110959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110960, 1125110975, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125110976, 1125111039, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111040, 1125111423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111424, 1125111439, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111440, 1125111471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111472, 1125111487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111488, 1125111519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111520, 1125111535, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111536, 1125111743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111744, 1125111775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111776, 1125111807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125111808, 1125112063, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125112064, 1125112447, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125112448, 1125112511, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125112512, 1125112639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125112640, 1125112703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125112704, 1125112767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125112768, 1125112783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125112784, 1125115647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125115648, 1125115663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125115664, 1125115711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125115712, 1125115727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125115728, 1125115743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125115744, 1125115855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125115856, 1125115871, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125115872, 1125116159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125116160, 1125116191, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125116192, 1125116223, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125116224, 1125116415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125116416, 1125116671, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125116672, 1125116959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125116960, 1125116991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125116992, 1125117023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117024, 1125117055, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117056, 1125117151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117152, 1125117167, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117168, 1125117183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117184, 1125117439, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117440, 1125117695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117696, 1125117823, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125117824, 1125118495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125118496, 1125118511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125118512, 1125118527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125118528, 1125118543, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125118544, 1125118559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125118560, 1125118591, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125118592, 1125119199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125119200, 1125119231, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125119232, 1125119903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125119904, 1125119935, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125119936, 1125938175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125938176, 1125938687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1125938688, 1126498711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126498712, 1126498719, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126498720, 1126504223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126504224, 1126504231, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126504232, 1126551767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126551768, 1126551775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126551776, 1126604015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126604016, 1126604023, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126604024, 1126614439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126614440, 1126614447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126614448, 1126671719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126671720, 1126671727, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126671728, 1126682719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126682720, 1126682727, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126682728, 1126682823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126682824, 1126682831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126682832, 1126924287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126924288, 1126928383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126928384, 1126948863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126948864, 1126952959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1126952960, 1127677951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127677952, 1127694335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127710720, 1127874559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127874560, 1127874815, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127874816, 1127882751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127890944, 1127899135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127907328, 1127915519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127923712, 1127931903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127940096, 1127976191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127976192, 1127976223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127976224, 1127979111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127979112, 1127979119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1127979120, 1128285063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128285064, 1128285071, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128285072, 1128288271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128288272, 1128288287, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128288288, 1128529919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128529920, 1128792063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128792064, 1128818687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128818688, 1128818719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1128818720, 1130393711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1130393712, 1130393727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1130393728, 1130577503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1130577504, 1130577519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1130577520, 1131440135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1131440136, 1131440143, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1131440144, 1131949295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1131949296, 1131949303, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1131949304, 1132020767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132020768, 1132020775, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132020776, 1132565375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132565376, 1132565503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132565504, 1132582463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132582464, 1132582479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132582480, 1132619743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132619744, 1132619775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132619776, 1132764423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132764424, 1132764431, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132764432, 1132774367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132774368, 1132774399, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1132774400, 1134444543, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1134444544, 1134448639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1134452736, 1134456831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1134460928, 1134510079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1134559232, 1136517007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1136517008, 1136517023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1136517024, 1136517039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1136517040, 1136517055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1136517056, 1142187775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142187776, 1142187783, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142187784, 1142191847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142191848, 1142191855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142191856, 1142202623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142202624, 1142202631, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142202632, 1142204103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142204104, 1142204111, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142204112, 1142204327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142204328, 1142204335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1142204336, 1150287871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1150287872, 1150812159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1150812160, 1152581631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1152581632, 1152614399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1152614400, 1152778239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1152778240, 1152843775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1152843776, 1156335367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1156335368, 1156335375, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1156335376, 1157713663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1157713664, 1157713791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1157713792, 1157755247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1157755248, 1157755263, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1157755264, 1157931007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1157931008, 1157935103, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1157939200, 1158027263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158027264, 1158027519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158027520, 1158193151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158193152, 1158193215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158193216, 1158193247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158193248, 1158194175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158194176, 1158194239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158194240, 1158194335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158194336, 1158194431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158194432, 1158194751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158194752, 1158194815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158194816, 1158194879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158194880, 1158195071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158195072, 1158196495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158196496, 1158196527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158196528, 1158196575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158196576, 1158196591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158196592, 1158197247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158197248, 1158316031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158316032, 1158324223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158324224, 1158328319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158332416, 1158340607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158340608, 1158344703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158348800, 1158381567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158381568, 1158481417, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481418, 1158481426, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481427, 1158481427, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481428, 1158481436, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481437, 1158481507, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481508, 1158481516, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481517, 1158481597, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481598, 1158481606, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481607, 1158481737, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481738, 1158481745, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158481746, 1158488529, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158488530, 1158488542, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158488543, 1158488833, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158488834, 1158488846, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158488847, 1158493441, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158493442, 1158493566, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158493567, 1158496497, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496498, 1158496506, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496507, 1158496530, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496531, 1158496539, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496540, 1158496779, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496780, 1158496788, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496789, 1158496797, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496798, 1158496806, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496807, 1158496815, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158496816, 1158497616, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497617, 1158497625, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497626, 1158497652, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497653, 1158497661, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497662, 1158497670, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497671, 1158497770, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497771, 1158497779, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497780, 1158497825, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497826, 1158497834, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497835, 1158497865, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158497866, 1158498032, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498033, 1158498041, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498042, 1158498282, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498283, 1158498291, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498292, 1158498457, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498458, 1158498466, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498467, 1158498778, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498779, 1158498787, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158498788, 1158499171, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499172, 1158499179, N'VI', N'Virgin Islands, U.S.') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499180, 1158499315, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499316, 1158499326, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499327, 1158499382, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499383, 1158499391, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499392, 1158499400, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499401, 1158499409, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499410, 1158499584, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499585, 1158499838, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158499839, 1158501120, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158501121, 1158501374, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158501375, 1158504775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504776, 1158504784, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504785, 1158504836, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504837, 1158504845, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504846, 1158504863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504864, 1158504872, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504873, 1158504941, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504942, 1158504950, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504951, 1158504951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504952, 1158504959, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158504960, 1158505490, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158505491, 1158505499, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158505500, 1158505653, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158505654, 1158505727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158505728, 1158506793, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158506794, 1158506809, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158506810, 1158512741, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158512742, 1158512750, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158512751, 1158513023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513024, 1158513032, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513033, 1158513050, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513051, 1158513059, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513060, 1158513070, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513071, 1158513079, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513080, 1158513362, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513363, 1158513371, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513372, 1158513398, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513399, 1158513407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513408, 1158513600, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513601, 1158513609, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513610, 1158513618, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513619, 1158513627, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513628, 1158513682, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513683, 1158513691, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513692, 1158513756, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513757, 1158513765, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513766, 1158513850, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513851, 1158513859, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513860, 1158513877, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513878, 1158513886, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158513887, 1158514057, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514058, 1158514066, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514067, 1158514075, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514076, 1158514084, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514085, 1158514129, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514130, 1158514138, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514139, 1158514331, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514332, 1158514340, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514341, 1158514349, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514350, 1158514358, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514359, 1158514367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514368, 1158514376, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514377, 1158514432, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514433, 1158514560, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514561, 1158514664, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514665, 1158514673, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514674, 1158514787, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514788, 1158514796, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158514797, 1158515273, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158515274, 1158515282, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158515283, 1158516844, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158516845, 1158516853, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158516854, 1158516859, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158516860, 1158516868, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158516869, 1158516938, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158516939, 1158516947, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158516948, 1158517284, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158517285, 1158517293, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158517294, 1158517426, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158517427, 1158517435, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158517436, 1158517466, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158517467, 1158517475, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158517476, 1158518020, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518021, 1158518029, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518030, 1158518107, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518108, 1158518116, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518117, 1158518246, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518247, 1158518255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518256, 1158518347, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518348, 1158518356, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518357, 1158518727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518728, 1158518736, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518737, 1158518784, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158518785, 1158519038, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519039, 1158519049, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519050, 1158519058, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519059, 1158519067, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519068, 1158519473, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519474, 1158519483, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519484, 1158519616, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519617, 1158519625, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519626, 1158519758, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519759, 1158519776, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519777, 1158519794, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519795, 1158519803, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519804, 1158519826, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519827, 1158519953, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158519954, 1158520541, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158520542, 1158520550, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158520551, 1158525184, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525185, 1158525320, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525321, 1158525741, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525742, 1158525750, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525751, 1158525776, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525777, 1158525785, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525786, 1158525821, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525822, 1158525830, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158525831, 1158526297, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526298, 1158526306, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526307, 1158526335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526336, 1158526344, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526345, 1158526346, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526347, 1158526355, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526356, 1158526357, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526358, 1158526366, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526367, 1158526368, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526369, 1158526377, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526378, 1158526930, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526931, 1158526963, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526964, 1158526987, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526988, 1158526996, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158526997, 1158527068, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527069, 1158527077, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527078, 1158527086, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527087, 1158527095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527096, 1158527097, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527098, 1158527106, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527107, 1158527133, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527134, 1158527142, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527143, 1158527216, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527217, 1158527225, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527226, 1158527288, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527289, 1158527297, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527298, 1158527306, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527307, 1158527315, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527316, 1158527454, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527455, 1158527463, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527464, 1158527839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527840, 1158527848, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158527849, 1158528256, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528257, 1158528511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528512, 1158528512, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528513, 1158528521, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528522, 1158528575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528576, 1158528584, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528585, 1158528629, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528630, 1158528638, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528639, 1158528647, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528648, 1158528755, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528756, 1158528764, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528765, 1158528777, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528778, 1158528786, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158528787, 1158538864, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158538865, 1158538872, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158538873, 1158543487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158543488, 1158543495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158543496, 1158716415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158716416, 1158716423, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158716424, 1158732141, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158732142, 1158732157, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158732158, 1158774783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158774784, 1158791167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158791168, 1158799359, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158799360, 1158803455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158807552, 1158940823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158940824, 1158940831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158940832, 1158940895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158940896, 1158940903, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158940904, 1158940911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158940912, 1158940919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158940920, 1158941247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941248, 1158941255, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941256, 1158941351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941352, 1158941359, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941360, 1158941367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941368, 1158941399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941400, 1158941407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941408, 1158941775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941776, 1158941791, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941792, 1158941799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941800, 1158941839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941840, 1158941847, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158941848, 1158942271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158942272, 1158942279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158942280, 1158942311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158942312, 1158942319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158942320, 1158943271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943272, 1158943279, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943280, 1158943423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943424, 1158943431, N'PK', N'Pakistan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943432, 1158943535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943536, 1158943543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943544, 1158943599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943600, 1158943615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943616, 1158943863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943864, 1158943871, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943872, 1158943887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943888, 1158943895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943896, 1158943903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943904, 1158943975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943976, 1158943983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158943984, 1158944279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944280, 1158944287, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944288, 1158944863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944864, 1158944871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944872, 1158944895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944896, 1158944911, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944912, 1158944951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944952, 1158944959, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158944960, 1158945103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945104, 1158945111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945112, 1158945279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945280, 1158945287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945288, 1158945319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945320, 1158945335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945336, 1158945535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945536, 1158945543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945544, 1158945735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945736, 1158945743, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945744, 1158945791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945792, 1158945815, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945816, 1158945823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945824, 1158945831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945832, 1158945935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945936, 1158945943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158945944, 1158946047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946048, 1158946055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946056, 1158946063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946064, 1158946071, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946072, 1158946151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946152, 1158946159, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946160, 1158946207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946208, 1158946215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946216, 1158946223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946224, 1158946239, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946240, 1158946335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946336, 1158946343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946344, 1158946487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946488, 1158946495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946496, 1158946551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946552, 1158946559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946560, 1158946575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946576, 1158946583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946584, 1158946631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946632, 1158946639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946640, 1158946647, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946648, 1158946711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946712, 1158946719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158946720, 1158947087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947088, 1158947095, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947096, 1158947391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947392, 1158947399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947400, 1158947407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947408, 1158947591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947592, 1158947599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947600, 1158947647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947648, 1158947655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947656, 1158947663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947664, 1158947695, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947696, 1158947711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947712, 1158947719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947720, 1158947735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947736, 1158947743, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947744, 1158947791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947792, 1158947799, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947800, 1158947831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947832, 1158947839, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947840, 1158947935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947936, 1158947943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158947944, 1158948383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948384, 1158948391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948392, 1158948415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948416, 1158948423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948424, 1158948895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948896, 1158948903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948904, 1158948967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948968, 1158948975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158948976, 1158949287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949288, 1158949295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949296, 1158949407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949408, 1158949415, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949416, 1158949439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949440, 1158949447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949448, 1158949775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949776, 1158949783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158949784, 1158950319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950320, 1158950327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950328, 1158950335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950336, 1158950351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950352, 1158950359, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950360, 1158950367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950368, 1158950767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950768, 1158950775, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950776, 1158950783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950784, 1158950791, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158950792, 1158951167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951168, 1158951183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951184, 1158951215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951216, 1158951223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951224, 1158951231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951232, 1158951263, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951264, 1158951423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951424, 1158951439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951440, 1158951447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951448, 1158951551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951552, 1158951559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951560, 1158951575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951576, 1158951583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951584, 1158951743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951744, 1158951751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951752, 1158951839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951840, 1158951855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158951856, 1158957455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158957456, 1158957471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158957472, 1158957647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158957648, 1158957655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158957656, 1158958295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958296, 1158958303, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958304, 1158958311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958312, 1158958367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958368, 1158958375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958376, 1158958383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958384, 1158958391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958392, 1158958671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958672, 1158958679, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958680, 1158958719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958720, 1158958751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158958752, 1158959031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158959032, 1158959039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158959040, 1158959679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158959680, 1158959687, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158959688, 1158960023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158960024, 1158960031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158960032, 1158960055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158960056, 1158960063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158960064, 1158960455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158960456, 1158960463, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158960464, 1158961063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961064, 1158961071, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961072, 1158961151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961152, 1158961159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961160, 1158961175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961176, 1158961183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961184, 1158961255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961256, 1158961263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158961264, 1158962175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962176, 1158962183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962184, 1158962287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962288, 1158962295, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962296, 1158962591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962592, 1158962607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962608, 1158962615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962616, 1158962623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962624, 1158962687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962688, 1158962695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158962696, 1158963271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963272, 1158963279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963280, 1158963335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963336, 1158963351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963352, 1158963551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963552, 1158963559, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963560, 1158963647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963648, 1158963663, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963664, 1158963727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963728, 1158963735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158963736, 1158964103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964104, 1158964111, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964112, 1158964255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964256, 1158964263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964264, 1158964287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964288, 1158964319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964320, 1158964631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964632, 1158964639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964640, 1158964647, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964648, 1158964799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964800, 1158964807, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964808, 1158964831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964832, 1158964839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964840, 1158964943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964944, 1158964951, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964952, 1158964959, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158964960, 1158965087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965088, 1158965111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965112, 1158965119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965120, 1158965135, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965136, 1158965159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965160, 1158965167, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965168, 1158965199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965200, 1158965215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965216, 1158965247, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965248, 1158965255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965256, 1158965559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965560, 1158965567, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965568, 1158965743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965744, 1158965751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965752, 1158965879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965880, 1158965887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158965888, 1158966127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966128, 1158966143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966144, 1158966335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966336, 1158966343, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966344, 1158966359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966360, 1158966567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966568, 1158966591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966592, 1158966799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966800, 1158966807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966808, 1158966887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966888, 1158966895, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966896, 1158966911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966912, 1158966919, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966920, 1158966991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158966992, 1158966999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967000, 1158967263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967264, 1158967279, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967280, 1158967559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967560, 1158967567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967568, 1158967615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967616, 1158967623, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967624, 1158967631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967632, 1158967647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158967648, 1158968071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158968072, 1158968079, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158968080, 1158968103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158968104, 1158968111, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158968112, 1158968207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158968208, 1158968239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158968240, 1158969447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158969448, 1158969455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158969456, 1158969663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158969664, 1158969679, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158969680, 1158969703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158969704, 1158969711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158969712, 1158970127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970128, 1158970135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970136, 1158970287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970288, 1158970295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970296, 1158970303, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970304, 1158970919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970920, 1158970927, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970928, 1158970943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970944, 1158970975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158970976, 1158971343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158971344, 1158971359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158971360, 1158995967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1158995968, 1159000063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159004160, 1159110367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159110368, 1159110399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159110400, 1159249919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159249920, 1159254015, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159258112, 1159259647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159259648, 1159259775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159259776, 1159262207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159266304, 1159266935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159266936, 1159266943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159266944, 1159267327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159267328, 1159267583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159267584, 1159269119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159269120, 1159269375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159269376, 1159276799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159276800, 1159277055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159277056, 1159278783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159278784, 1159278791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159278792, 1159278815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159278816, 1159278847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159278848, 1159288831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159288832, 1159289087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159289088, 1159296511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159296512, 1159296575, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159296576, 1159296703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159296704, 1159296711, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159296712, 1159318015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159318016, 1159318047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159318048, 1159348223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159348224, 1159356415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159356416, 1159421951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159421952, 1159430143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159430144, 1159441343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159441344, 1159441375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159441376, 1159442431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159446528, 1159512063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159512064, 1159512159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159512160, 1159512191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159512192, 1159513343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513344, 1159513375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513376, 1159513439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513440, 1159513471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513472, 1159513519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513520, 1159513535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513536, 1159513567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513568, 1159513855, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159513856, 1159514111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159514112, 1159515391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159515392, 1159515647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159515648, 1159515711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159515712, 1159515887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159515888, 1159515903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159515904, 1159516159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159516160, 1159516223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159516224, 1159516239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159516240, 1159516255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159516256, 1159516287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159516288, 1159516671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159516672, 1159516799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159516800, 1159517183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517184, 1159517327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517328, 1159517343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517344, 1159517375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517376, 1159517439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517440, 1159517599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517600, 1159517631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517632, 1159517679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517680, 1159517951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517952, 1159517967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159517968, 1159518015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159518016, 1159518047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159518048, 1159518079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159518080, 1159518095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159518096, 1159518111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159518112, 1159518175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159518176, 1159519743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159519744, 1159521023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521024, 1159521087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521088, 1159521199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521200, 1159521215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521216, 1159521535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521536, 1159521791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521792, 1159521823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521824, 1159521855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159521856, 1159522031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522032, 1159522079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522080, 1159522095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522096, 1159522111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522112, 1159522143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522144, 1159522207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522208, 1159522223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522224, 1159522303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522304, 1159522815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159522816, 1159523071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159523072, 1159523327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159523328, 1159524095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159524096, 1159524351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159524352, 1159525071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159525072, 1159525087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159525088, 1159525375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159525376, 1159526911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159526912, 1159527935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159527936, 1159528191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159528192, 1159643439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159643440, 1159643455, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159643456, 1159643471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159643472, 1159667711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159667712, 1159669759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159669760, 1159696383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159700480, 1159704575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159708672, 1159725055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159725056, 1159989759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159989760, 1159990271, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159990272, 1159990783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159990784, 1159991039, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159991040, 1159991295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159995392, 1159995935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159995936, 1159995951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159995952, 1159996063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159996064, 1159996079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159996080, 1159996287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159996288, 1159996319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159996320, 1159997551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159997552, 1159997559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159997560, 1159998575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159998576, 1159998583, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159998584, 1159998591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159998592, 1159998599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1159998600, 1159999487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160003584, 1160011775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160011776, 1160019967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160019968, 1160036799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160036800, 1160036863, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160036864, 1160040447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160044544, 1160232959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160241152, 1160244223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160244224, 1160244479, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160244480, 1160245247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160249344, 1160364031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160364032, 1160368127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160372224, 1160415637, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160415638, 1160415733, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160415734, 1160415746, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160415747, 1160415776, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160415777, 1160425471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160429568, 1160433663, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160445952, 1160499199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160503296, 1160507391, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160511488, 1160542207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160542208, 1160542239, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160542240, 1160543327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160543328, 1160543359, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160543360, 1160544047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160544048, 1160544071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160544072, 1160544135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160544136, 1160544143, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160544144, 1160563199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160563200, 1160563711, N'MP', N'Northern Mariana Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160563712, 1160609791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160609792, 1160610815, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160610816, 1160667135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160667136, 1160675327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160675328, 1160677015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160677016, 1160677023, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160677024, 1160677247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160677248, 1160677279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160677280, 1160677375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160677376, 1160677439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160677440, 1160678399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160678400, 1160678655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160678656, 1160683519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160683520, 1160687615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160691712, 1160847359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160847360, 1160851455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160855552, 1160863999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160864000, 1160864255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160864256, 1160921087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160921088, 1160925183, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160929280, 1160933375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160937472, 1160941567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160945664, 1160948991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160948992, 1160949023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160949024, 1160949167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160949168, 1160949183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160949184, 1160949679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160949680, 1160949727, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160949728, 1160949743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160949744, 1160949759, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160949760, 1160970431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160970432, 1160970439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160970440, 1160972799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160972800, 1160973055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973056, 1160973375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973376, 1160973391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973392, 1160973471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973472, 1160973503, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973504, 1160973583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973584, 1160973599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973600, 1160973615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973616, 1160973631, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973632, 1160973647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973648, 1160973663, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973664, 1160973823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973824, 1160973839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160973840, 1160975871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160975872, 1160976127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1160976128, 1161019391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161019392, 1161035775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161035776, 1161299015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161299016, 1161299023, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161299024, 1161311743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161311744, 1161311759, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161311760, 1161311991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161311992, 1161311999, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161312000, 1161363455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161363456, 1161367551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161371648, 1161375743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161379840, 1161416703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161420800, 1161421311, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161421312, 1161421567, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161421568, 1161422079, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161422080, 1161422335, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161422336, 1161422591, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161422592, 1161422847, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161422848, 1161423103, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161423104, 1161423359, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161423360, 1161423615, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161423616, 1161423871, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161423872, 1161424127, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161424128, 1161424383, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161424384, 1161424639, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161424640, 1161424895, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161424896, 1161425151, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161425152, 1161425407, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161425408, 1161425663, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161425664, 1161425919, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161425920, 1161425935, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161425936, 1161425951, N'MS', N'Montserrat') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161425952, 1161426143, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161426144, 1161426175, N'MS', N'Montserrat') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161426176, 1161426943, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161426944, 1161427199, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161427200, 1161427455, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161427456, 1161427967, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161427968, 1161428223, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161428224, 1161428991, N'KN', N'Saint Kitts and Nevis') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161428992, 1161453567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161453568, 1161457663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161461760, 1161560063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161568256, 1161576447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161576448, 1161580543, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161584640, 1161613311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161617408, 1161625599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161625600, 1161646335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161646336, 1161646591, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161646592, 1161764863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161764864, 1161773055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161773056, 1161777151, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161781248, 1161793535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161797632, 1161798095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161798096, 1161798127, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161798128, 1161801727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161805824, 1161925631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161925632, 1161925887, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161925888, 1161926399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161926400, 1161926655, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161926656, 1161928703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1161936896, 1162027007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162027008, 1162031103, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162035200, 1162055679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162059776, 1162067967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162067968, 1162215423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162215424, 1162280959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162280960, 1162297343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162297344, 1162305535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162305536, 1162309631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162313728, 1162316799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162316800, 1162318591, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162318592, 1162318847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162318848, 1162320383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162320384, 1162320639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162320640, 1162321151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162321152, 1162330879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162330880, 1162334207, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162338304, 1162342399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162346496, 1162394463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162394464, 1162394471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162394472, 1162461183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162461184, 1162461695, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162461696, 1162462207, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162462208, 1162462975, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162462976, 1162463999, N'VC', N'Saint Vincent and the Grenadines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162464000, 1162473471, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162477568, 1162805247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162805248, 1162811391, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162811392, 1162811647, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162811648, 1162812159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162812160, 1162812415, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162812416, 1162813439, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162813440, 1162821631, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162821632, 1162823679, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162823680, 1162825727, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162825728, 1162827775, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162827776, 1162833919, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162833920, 1162835967, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162835968, 1162836223, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162836224, 1162836991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162836992, 1162838015, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162838016, 1162870783, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1162870784, 1163395071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395072, 1163395839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395840, 1163395847, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395848, 1163395855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395856, 1163395871, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395872, 1163395887, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395888, 1163395911, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395912, 1163395927, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395928, 1163395967, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395968, 1163395975, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395976, 1163395983, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395984, 1163395991, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163395992, 1163396007, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396008, 1163396015, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396016, 1163396039, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396040, 1163396047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396048, 1163396055, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396056, 1163396071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396072, 1163396079, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396080, 1163396095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396096, 1163396103, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396104, 1163396111, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396112, 1163396127, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396128, 1163396135, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396136, 1163396143, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396144, 1163396191, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396192, 1163396199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396200, 1163396231, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396232, 1163396247, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396248, 1163396255, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396256, 1163396263, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396264, 1163396271, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396272, 1163396287, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396288, 1163396311, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396312, 1163396319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396320, 1163396327, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396328, 1163396343, N'ID', N'Indonesia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396344, 1163396351, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396352, 1163396383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396384, 1163396391, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396392, 1163396399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396400, 1163396431, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396432, 1163396455, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396456, 1163396463, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396464, 1163396495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396496, 1163396503, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396504, 1163396519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396520, 1163396527, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396528, 1163396559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396560, 1163396575, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396576, 1163396583, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396584, 1163396607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396608, 1163396959, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396960, 1163396991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163396992, 1163397087, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397088, 1163397119, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397120, 1163397183, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397184, 1163397247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397248, 1163397375, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397376, 1163397383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397384, 1163397391, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397392, 1163397399, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397400, 1163397407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397408, 1163397423, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397424, 1163397439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397440, 1163397455, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397456, 1163397503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397504, 1163397519, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397520, 1163397535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397536, 1163397543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397544, 1163397575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397576, 1163397599, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397600, 1163397663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397664, 1163397743, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397744, 1163397759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397760, 1163397791, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397792, 1163397807, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397808, 1163397855, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397856, 1163397887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163397888, 1163399455, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163399456, 1163399679, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163399680, 1163399807, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163399808, 1163399935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163399936, 1163400063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400064, 1163400191, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400192, 1163400199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400200, 1163400207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400208, 1163400215, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400216, 1163400223, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400224, 1163400231, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400232, 1163400239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400240, 1163400247, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400248, 1163400255, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400256, 1163400263, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400264, 1163400319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400320, 1163400327, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400328, 1163400351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400352, 1163400359, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400360, 1163400375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400376, 1163400383, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400384, 1163400415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400416, 1163400423, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400424, 1163400447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400448, 1163400543, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400544, 1163400959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163400960, 1163401055, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401056, 1163401087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401088, 1163401151, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401152, 1163401471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401472, 1163401487, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401488, 1163401567, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401568, 1163401583, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401584, 1163401727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163401728, 1163402943, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163402944, 1163403007, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163403008, 1163403071, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163403072, 1163403135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163403136, 1163403199, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163403200, 1163403263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163403264, 1163407359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163411456, 1163460607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163468800, 1163472895, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163476992, 1163526143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163526144, 1163526975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163526976, 1163527039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527040, 1163527103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527104, 1163527135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527136, 1163527143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527144, 1163527151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527152, 1163527167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527168, 1163527679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527680, 1163527807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527808, 1163527871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527872, 1163527935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163527936, 1163528191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528192, 1163528415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528416, 1163528447, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528448, 1163528591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528592, 1163528607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528608, 1163528679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528680, 1163528687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528688, 1163528695, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163528696, 1163529215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163529216, 1163529471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163529472, 1163529727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163529728, 1163530239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163530240, 1163530527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163530528, 1163530543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163530544, 1163530623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163530624, 1163530687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163530688, 1163532927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163532928, 1163532991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163532992, 1163533023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533024, 1163533055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533056, 1163533551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533552, 1163533567, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533568, 1163533695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533696, 1163533727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533728, 1163533791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533792, 1163533807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533808, 1163533823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163533824, 1163534015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163534016, 1163534031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163534032, 1163535359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163535360, 1163535679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163535680, 1163535743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163535744, 1163536383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163536384, 1163536703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163536704, 1163536767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163536768, 1163537215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163537216, 1163537279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163537280, 1163537663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163537664, 1163540607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163540608, 1163542015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163542016, 1163542863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163542864, 1163542879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163542880, 1163542975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163542976, 1163543039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163543040, 1163543687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163543688, 1163543695, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163543696, 1163544783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163544784, 1163544799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163544800, 1163544831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163544832, 1163545087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163545088, 1163545343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163545344, 1163545375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163545376, 1163547503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163547504, 1163547519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163547520, 1163547951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163547952, 1163547967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163547968, 1163549087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163549088, 1163549119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163549120, 1163550239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550240, 1163550271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550272, 1163550367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550368, 1163550375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550376, 1163550383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550384, 1163550399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550400, 1163550847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550848, 1163550975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163550976, 1163551423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163551424, 1163551439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163551440, 1163551615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163551616, 1163551647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163551648, 1163551663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163551664, 1163551743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163551744, 1163552255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163552256, 1163552535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163552536, 1163552543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163552544, 1163552559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163552560, 1163552575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163552576, 1163552607, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163552608, 1163552767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163552768, 1163553279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163553280, 1163553791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163553792, 1163553807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163553808, 1163553855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163553856, 1163553871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163553872, 1163554639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163554640, 1163554647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163554648, 1163554655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163554656, 1163554687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163554688, 1163554703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163554704, 1163556095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163556096, 1163556607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163556608, 1163556863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163556864, 1163557119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163557120, 1163557375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163557376, 1163557439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163557440, 1163558015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163558016, 1163558143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163558144, 1163558447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163558448, 1163558463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163558464, 1163560191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163560192, 1163560447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163560448, 1163561215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163561216, 1163561727, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163561728, 1163561983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163561984, 1163561999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562000, 1163562015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562016, 1163562047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562048, 1163562079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562080, 1163562199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562200, 1163562215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562216, 1163562231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562232, 1163562239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562240, 1163562751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163562752, 1163566047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163566048, 1163566079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163566080, 1163570431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163570432, 1163570495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163570496, 1163571199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163571200, 1163571711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163571712, 1163571967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163571968, 1163572031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163572032, 1163572095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163572096, 1163572159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163572160, 1163572191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163572192, 1163572671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163572672, 1163572735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163572736, 1163573055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163573056, 1163573087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163573088, 1163573199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163573200, 1163573247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163573248, 1163573263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163573264, 1163575295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163575296, 1163577087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163577088, 1163577151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163577152, 1163577215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163577216, 1163577343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163577344, 1163578175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578176, 1163578271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578272, 1163578287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578288, 1163578303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578304, 1163578351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578352, 1163578367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578368, 1163578495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578496, 1163578655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578656, 1163578687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578688, 1163578695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578696, 1163578703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578704, 1163578751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578752, 1163578879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578880, 1163578895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163578896, 1163579007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163579008, 1163579023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163579024, 1163579087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163579088, 1163579519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163579520, 1163579647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163579648, 1163581439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163581440, 1163582079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163582080, 1163582127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163582128, 1163582159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163582160, 1163582167, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163582168, 1163583487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163583488, 1163585599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163585600, 1163585663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163585664, 1163585791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163585792, 1163585887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163585888, 1163585889, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163585890, 1163585905, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163585906, 1163587583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163587584, 1163588351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163588352, 1163588863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163588864, 1163590143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163590144, 1163870575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163870576, 1163870583, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163870584, 1163876471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163876472, 1163876479, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163876480, 1163878399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163878400, 1163878407, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1163878408, 1167693199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1167693200, 1167693215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1167693216, 1167851519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1167851520, 1168113663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1168113664, 1170210815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1170210816, 1170735103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1170735104, 1175977983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1175977984, 1176502271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1176502272, 1177168127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1177168128, 1177168143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1177168144, 1177174015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1177223168, 1177255935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1177288704, 1177354239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1177354240, 1177387007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1177419776, 1177550847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1177550848, 1178075135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1178075136, 1178599423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1178599424, 1179910143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1179910144, 1182850943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1182850944, 1182851071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1182851072, 1189130447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1189130448, 1189130463, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1189130464, 1190550111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190550112, 1190550119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190550120, 1190558255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190558256, 1190558263, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190558264, 1190574175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190574176, 1190574183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190574184, 1190601503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190601504, 1190601511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190601512, 1190983455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190983456, 1190983487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1190983488, 1191657471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1191673856, 1191690239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1191706624, 1192296447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1192296448, 1192361983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1192361984, 1192427519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1192427520, 1192443903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1192460288, 1192493055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1192493056, 1192755199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1192755200, 1207975935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1207975936, 1207980031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1207984128, 1208008703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208008704, 1208016895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208016896, 1208020991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208025088, 1208074239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208074240, 1208082431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208082432, 1208086527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208090624, 1208107007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208107008, 1208189951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208189952, 1208190015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208190016, 1208190543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208190544, 1208190559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208190560, 1208190583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208190584, 1208190591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208190592, 1208190607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208190608, 1208190615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208190616, 1208190999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191000, 1208191007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191008, 1208191047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191048, 1208191055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191056, 1208191087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191088, 1208191095, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191096, 1208191167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191168, 1208191175, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191176, 1208191199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191200, 1208191215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191216, 1208191223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191224, 1208191231, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191232, 1208191311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191312, 1208191319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191320, 1208191359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191360, 1208191367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191368, 1208191391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191392, 1208191423, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191424, 1208191447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191448, 1208191455, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191456, 1208191567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191568, 1208191575, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191576, 1208191647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191648, 1208191655, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208191656, 1208192167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208192168, 1208192175, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208192176, 1208192879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208192880, 1208192895, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208192896, 1208192903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208192904, 1208192911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208192912, 1208193119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193120, 1208193151, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193152, 1208193303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193304, 1208193311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193312, 1208193391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193392, 1208193407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193408, 1208193455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193456, 1208193463, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193464, 1208193599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193600, 1208193615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193616, 1208193871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193872, 1208193879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193880, 1208193935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193936, 1208193943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208193944, 1208194055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208194056, 1208194063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208194064, 1208194087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208194088, 1208194095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208194096, 1208194191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208194192, 1208194223, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208194224, 1208195359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195360, 1208195375, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195376, 1208195391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195392, 1208195399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195400, 1208195447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195448, 1208195455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195456, 1208195535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195536, 1208195551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195552, 1208195703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195704, 1208195711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195712, 1208195727, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195728, 1208195759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195760, 1208195775, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195776, 1208195847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195848, 1208195855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195856, 1208195871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195872, 1208195887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195888, 1208195903, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208195904, 1208196143, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196144, 1208196151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196152, 1208196327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196328, 1208196335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196336, 1208196607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196608, 1208196615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196616, 1208196703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196704, 1208196711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208196712, 1208197023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197024, 1208197031, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197032, 1208197135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197136, 1208197167, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197168, 1208197175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197176, 1208197183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197184, 1208197239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197240, 1208197247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197248, 1208197519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197520, 1208197527, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197528, 1208197559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197560, 1208197567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197568, 1208197631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197632, 1208197639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197640, 1208197671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197672, 1208197679, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197680, 1208197783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197784, 1208197791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197792, 1208197967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197968, 1208197983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208197984, 1208198039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198040, 1208198047, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198048, 1208198135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198136, 1208198143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198144, 1208198303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198304, 1208198319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198320, 1208198463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198464, 1208198471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198472, 1208198743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198744, 1208198751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198752, 1208198791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198792, 1208198799, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208198800, 1208199055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199056, 1208199063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199064, 1208199087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199088, 1208199103, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199104, 1208199263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199264, 1208199271, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199272, 1208199343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199344, 1208199351, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199352, 1208199359, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199360, 1208199767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199768, 1208199775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199776, 1208199783, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199784, 1208199823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199824, 1208199847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199848, 1208199935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199936, 1208199943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208199944, 1208200167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200168, 1208200175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200176, 1208200247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200248, 1208200255, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200256, 1208200271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200272, 1208200287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200288, 1208200303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200304, 1208200319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200320, 1208200639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200640, 1208200647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200648, 1208200655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200656, 1208200663, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200664, 1208200815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200816, 1208200887, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200888, 1208200895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200896, 1208200903, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208200904, 1208201063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201064, 1208201071, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201072, 1208201255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201256, 1208201263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201264, 1208201375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201376, 1208201391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201392, 1208201535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201536, 1208201543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201544, 1208201727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201728, 1208201743, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201744, 1208201951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201952, 1208201959, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208201960, 1208202007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202008, 1208202015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202016, 1208202135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202136, 1208202143, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202144, 1208202239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202240, 1208202247, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202248, 1208202255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202256, 1208202287, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202288, 1208202367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202368, 1208202375, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202376, 1208202495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202496, 1208202511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202512, 1208202519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202520, 1208202559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202560, 1208202575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208202576, 1208203023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203024, 1208203071, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203072, 1208203343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203344, 1208203351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203352, 1208203583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203584, 1208203599, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203600, 1208203647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203648, 1208203655, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208203656, 1208204007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204008, 1208204015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204016, 1208204031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204032, 1208204039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204040, 1208204047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204048, 1208204055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204056, 1208204767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204768, 1208204775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204776, 1208204783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204784, 1208204927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204928, 1208204935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204936, 1208204951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204952, 1208204959, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208204960, 1208205063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205064, 1208205079, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205080, 1208205119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205120, 1208205127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205128, 1208205167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205168, 1208205231, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205232, 1208205247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205248, 1208205263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205264, 1208205303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205304, 1208205311, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205312, 1208205407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205408, 1208205423, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205424, 1208205455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205456, 1208205463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205464, 1208205703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205704, 1208205711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205712, 1208205959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205960, 1208205967, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205968, 1208205983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205984, 1208205991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208205992, 1208206439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208206440, 1208206463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208206464, 1208207183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207184, 1208207191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207192, 1208207359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207360, 1208207399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207400, 1208207463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207464, 1208207471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207472, 1208207583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207584, 1208207591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207592, 1208207983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208207984, 1208207999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208000, 1208208215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208216, 1208208223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208224, 1208208231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208232, 1208208239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208240, 1208208255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208256, 1208208287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208288, 1208208303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208304, 1208208311, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208312, 1208208799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208800, 1208208807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208808, 1208208815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208816, 1208208831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208832, 1208208927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208928, 1208208943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208208944, 1208209023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209024, 1208209031, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209032, 1208209175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209176, 1208209183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209184, 1208209215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209216, 1208209247, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209248, 1208209359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209360, 1208209375, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209376, 1208209391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209392, 1208209407, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209408, 1208209543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209544, 1208209551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209552, 1208209719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209720, 1208209727, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209728, 1208209863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209864, 1208209871, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208209872, 1208210055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210056, 1208210063, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210064, 1208210079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210080, 1208210095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210096, 1208210303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210304, 1208210351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210352, 1208210431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210432, 1208210447, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210448, 1208210511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210512, 1208210519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210520, 1208210751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210752, 1208210759, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208210760, 1208215935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208215936, 1208215951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208215952, 1208337919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208337920, 1208338175, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208338176, 1208500223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208549376, 1208586239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208590336, 1208598527, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208598528, 1208647679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208647680, 1208664063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208664064, 1208721407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208721408, 1208725503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208729600, 1208770559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208770560, 1208774655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208778752, 1208795135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208795136, 1208848383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208852480, 1208860671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208860672, 1208918015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208918016, 1208922111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208926208, 1208975359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208975360, 1208983551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1208983552, 1208999935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209008128, 1209191167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209191168, 1209191423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209191424, 1209192447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209196544, 1209347839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209347840, 1209348095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209348096, 1209434111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209434112, 1209436671, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209436672, 1209437183, N'VC', N'Saint Vincent and the Grenadines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209437184, 1209440767, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209440768, 1209441279, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209441280, 1209442303, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209442304, 1209446399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209450496, 1209647103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209647104, 1209663487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209663488, 1209712639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209712640, 1209717247, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209717248, 1209718271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209718272, 1209718527, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209718528, 1209724927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209729024, 1209794559, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209794560, 1209810943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209860096, 1209860127, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209860128, 1209860159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209860160, 1209860447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209860448, 1209860479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209860480, 1209860575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209860576, 1209860607, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209860608, 1209862143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209862144, 1209862399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209862400, 1209863167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209863168, 1209863423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209863424, 1209863679, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209863680, 1209863935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209863936, 1209864447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209864448, 1209864511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209864512, 1209864543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209864544, 1209864575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209864576, 1209864607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209864608, 1209864639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209864640, 1209864671, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209864672, 1209865599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209865600, 1209865727, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209865728, 1209866047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209866048, 1209866079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209866080, 1209866111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209866112, 1209866143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209866144, 1209866175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209866176, 1209866207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209866208, 1209866879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209866880, 1209867007, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867008, 1209867039, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867040, 1209867071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867072, 1209867135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867136, 1209867167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867168, 1209867231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867232, 1209867263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867264, 1209867519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209867520, 1209884671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209884672, 1209884679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209884680, 1209884823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209884824, 1209884831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209884832, 1209890495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209890496, 1209890559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209890560, 1209917439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209917440, 1209925631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1209925632, 1210057039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057040, 1210057047, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057048, 1210057055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057056, 1210057071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057072, 1210057519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057520, 1210057535, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057536, 1210057567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057568, 1210057583, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057584, 1210057615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057616, 1210057623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057624, 1210057655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057656, 1210057663, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057664, 1210057879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057880, 1210057887, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057888, 1210057895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057896, 1210057903, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057904, 1210057911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210057912, 1210058047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058048, 1210058055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058056, 1210058159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058160, 1210058167, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058168, 1210058191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058192, 1210058199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058200, 1210058615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058616, 1210058623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210058624, 1210060351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060352, 1210060359, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060360, 1210060383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060384, 1210060407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060408, 1210060799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060800, 1210060815, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060816, 1210060839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060840, 1210060847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210060848, 1210061311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061312, 1210061343, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061344, 1210061367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061368, 1210061375, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061376, 1210061567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061568, 1210061631, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061632, 1210061647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061648, 1210061655, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061656, 1210061727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061728, 1210061735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061736, 1210061991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210061992, 1210061999, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062000, 1210062007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062008, 1210062015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062016, 1210062079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062080, 1210062087, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062088, 1210062463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062464, 1210062479, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062480, 1210062487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062488, 1210062495, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062496, 1210062815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062816, 1210062831, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062832, 1210062847, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210062848, 1210064527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210064528, 1210064535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210064536, 1210064663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210064664, 1210064671, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210064672, 1210064951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210064952, 1210064959, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210064960, 1210064999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065000, 1210065007, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065008, 1210065023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065024, 1210065031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065032, 1210065319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065320, 1210065327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065328, 1210065535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065536, 1210065543, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065544, 1210065551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065552, 1210065559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065560, 1210065567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065568, 1210065575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065576, 1210065615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065616, 1210065623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065624, 1210065663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065664, 1210065679, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065680, 1210065695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065696, 1210065703, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065704, 1210065735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065736, 1210065743, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065744, 1210065751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065752, 1210065759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065760, 1210065783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065784, 1210065791, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065792, 1210065823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065824, 1210065855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210065856, 1210066255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066256, 1210066263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066264, 1210066287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066288, 1210066295, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066296, 1210066519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066520, 1210066527, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066528, 1210066807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066808, 1210066831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210066832, 1210067263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067264, 1210067287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067288, 1210067535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067536, 1210067543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067544, 1210067632, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067633, 1210067640, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067641, 1210067967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067968, 1210067983, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210067984, 1210068039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068040, 1210068047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068048, 1210068151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068152, 1210068159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068160, 1210068319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068320, 1210068327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068328, 1210068447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068448, 1210068471, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068472, 1210068543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068544, 1210068559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068560, 1210068607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068608, 1210068735, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068736, 1210068759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068760, 1210068767, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068768, 1210068775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068776, 1210068903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068904, 1210068927, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210068928, 1210069007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210069008, 1210069023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210069024, 1210069159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210069160, 1210069167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210069168, 1210070071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070072, 1210070079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070080, 1210070175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070176, 1210070183, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070184, 1210070431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070432, 1210070439, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070440, 1210070503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070504, 1210070511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070512, 1210070631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070632, 1210070639, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070640, 1210070703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070704, 1210070711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070712, 1210070799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070800, 1210070807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070808, 1210070863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070864, 1210070871, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070872, 1210070943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070944, 1210070951, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070952, 1210070959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070960, 1210070967, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210070968, 1210071007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210071008, 1210071015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210071016, 1210071039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210071040, 1210071167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210071168, 1210072255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072256, 1210072319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072320, 1210072519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072520, 1210072527, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072528, 1210072559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072560, 1210072567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072568, 1210072783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072784, 1210072791, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210072792, 1210073199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210073200, 1210073207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210073208, 1210079911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210079912, 1210079919, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210079920, 1210079999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080000, 1210080015, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080016, 1210080079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080080, 1210080111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080112, 1210080407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080408, 1210080455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080456, 1210080615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080616, 1210080623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080624, 1210080847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080848, 1210080855, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210080856, 1210105855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210122240, 1210253311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210253312, 1210257407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210261504, 1210366655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210366656, 1210366719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210366720, 1210375679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210375680, 1210375807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210375808, 1210375935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210375936, 1210376063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210376064, 1210381440, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210381441, 1210381567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210381568, 1210381568, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210381569, 1210381695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210381696, 1210381759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210381760, 1210381823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210381824, 1210449919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210449920, 1210515455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1210580992, 1211236351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211236352, 1211269119, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211301888, 1211301951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211301952, 1211302143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211302144, 1211302223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211302224, 1211302399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211302400, 1211302463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211302464, 1211302655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211302656, 1211302719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211302720, 1211308031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308032, 1211308159, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308160, 1211308191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308192, 1211308223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308224, 1211308607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308608, 1211308615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308616, 1211308639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308640, 1211308655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308656, 1211308703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308704, 1211308719, N'BV', N'Bouvet Island') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308720, 1211308727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308728, 1211308735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308736, 1211308751, N'BV', N'Bouvet Island') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211308752, 1211309055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211309056, 1211309567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211309568, 1211310079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211310080, 1211317503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211317504, 1211317759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211317760, 1211318271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211367424, 1211383807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211432960, 1211498495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211498496, 1211629567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1211629568, 1212153855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1212153856, 1216872447, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1216872448, 1217396735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1217396736, 1218576383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1218707456, 1218784255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1218784256, 1218784511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1218784512, 1218904063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1218969600, 1223187583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1223187584, 1223187647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1223187648, 1223187903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1223187904, 1223187967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1223187968, 1223199743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1223199744, 1223199999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1223200000, 1223229439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1223294976, 1224474623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1224474624, 1224476671, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1224476672, 1224478719, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1224478720, 1224480767, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1224480768, 1224484863, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1224484864, 1224493055, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1224493056, 1224540159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1224605696, 1242103807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1242300416, 1242562559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1242562560, 1244659711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1244659712, 1244725247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1244921856, 1244987391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1245184000, 1245249535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1245446144, 1246232575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1246756864, 1247019007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1247281152, 1247412223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1247543296, 1247674367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1247805440, 1249902591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1249902592, 1291845631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342177280, 1342628031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628032, 1342628095, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628096, 1342628159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628160, 1342628175, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628176, 1342628207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628208, 1342628223, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628224, 1342628319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628320, 1342628335, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628336, 1342628351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628352, 1342628367, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628368, 1342628431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628432, 1342628463, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628464, 1342628663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628664, 1342628671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342628672, 1342701567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1342701568, 1343217663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343217664, 1343218687, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343218688, 1343219711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343219712, 1343219967, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343219968, 1343220479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343220480, 1343220735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343220736, 1343220863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343220864, 1343221023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343221024, 1343221027, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343221028, 1343221503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343221504, 1343221759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343221760, 1343221823, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343221824, 1343221855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343221856, 1343222271, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343222272, 1343222287, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343222288, 1343222527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343222528, 1343222575, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343222576, 1343222783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343222784, 1343222911, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343222912, 1343223039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223040, 1343223434, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223435, 1343223439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223440, 1343223447, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223448, 1343223531, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223532, 1343223547, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223548, 1343223551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223552, 1343223807, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223808, 1343223983, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343223984, 1343224063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343224064, 1343224303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343224304, 1343224319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343224320, 1343224535, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343224536, 1343224543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343224544, 1343224575, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343224576, 1343224831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343224832, 1343225087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343225088, 1343225855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343225856, 1343750143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1343750144, 1344798719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1344798720, 1345323007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1345323008, 1345847295, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1345847296, 1345978367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1345978368, 1346109439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346109440, 1346240511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346240512, 1346371583, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346371584, 1346375679, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346375680, 1346379775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346379776, 1346383871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346383872, 1346387967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346387968, 1346392063, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346392064, 1346400255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346400256, 1346404351, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346404352, 1346404799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346404800, 1346404815, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346404816, 1346404959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346404960, 1346404975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346404976, 1346405255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346405256, 1346405263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346405264, 1346405371, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346405372, 1346405375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346405376, 1346406223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406224, 1346406231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406232, 1346406255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406256, 1346406263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406264, 1346406271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406272, 1346406295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406296, 1346406351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406352, 1346406359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406360, 1346406919, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406920, 1346406975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346406976, 1346407167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346407168, 1346407183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346407184, 1346408447, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346408448, 1346412543, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346412544, 1346416639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346416640, 1346420735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346420736, 1346424831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346424832, 1346428927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346428928, 1346431103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346431104, 1346431119, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346431120, 1346431743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346431744, 1346431999, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346432000, 1346433023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346433024, 1346439167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346439168, 1346440447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346440448, 1346440463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346440464, 1346440479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346440480, 1346441215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346441216, 1346445311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346445312, 1346449407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346449408, 1346453503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346453504, 1346461695, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346461696, 1346469887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346469888, 1346473983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346473984, 1346478079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346478080, 1346482175, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346482176, 1346486271, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346486272, 1346490367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346490368, 1346494463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346494464, 1346498559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346498560, 1346502655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346502656, 1346510847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346510848, 1346519039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346519040, 1346527231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346527232, 1346531327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346531328, 1346535423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346535424, 1346537983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346537984, 1346537988, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346537989, 1346537991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346537992, 1346537999, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346538000, 1346538007, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346538008, 1346538015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346538016, 1346538031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346538032, 1346539519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346539520, 1346543615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346543616, 1346547711, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346547712, 1346551807, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346551808, 1346555903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346555904, 1346559999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346560000, 1346564095, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346564096, 1346568191, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346568192, 1346576383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346576384, 1346580479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346580480, 1346584575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346584576, 1346588159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346588160, 1346588671, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346588672, 1346589439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346589440, 1346589695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346589696, 1346592767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346592768, 1346596863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346596864, 1346600959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346600960, 1346605055, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346605056, 1346609151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346609152, 1346617343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346617344, 1346620415, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346620416, 1346620927, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346620928, 1346621439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346621440, 1346625535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346625536, 1346629631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346629632, 1346637823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346637824, 1346650111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346650112, 1346654207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346654208, 1346658303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346658304, 1346666495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346666496, 1346670591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346670592, 1346674687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346674688, 1346678783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346678784, 1346686975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346686976, 1346691071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346691072, 1346695167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346695168, 1346699263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346699264, 1346700671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346700672, 1346700735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346700736, 1346701184, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346701185, 1346701215, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346701216, 1346703871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346703872, 1346704127, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346704128, 1346704383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346704384, 1346704447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346704448, 1346704639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346704640, 1346704767, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346704768, 1346704895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346704896, 1346705023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346705024, 1346707455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346707456, 1346711551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346711552, 1346715647, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346715648, 1346723839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346723840, 1346732031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346732032, 1346736127, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346736128, 1346740223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346740224, 1346744319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346744320, 1346748415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346748416, 1346752511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346752512, 1346754559, N'RE', N'Reunion') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346754560, 1346756607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346756608, 1346760703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346760704, 1346764799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346764800, 1346768895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346768896, 1346772991, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346772992, 1346775071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346775072, 1346775103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346775104, 1346777087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346777088, 1346781183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346781184, 1346789375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346789376, 1346793471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346793472, 1346797567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346797568, 1346801663, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346801664, 1346805759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346805760, 1346806079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346806080, 1346806111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346806112, 1346806167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346806168, 1346806207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346806208, 1346813951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346813952, 1346822143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346822144, 1346826239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346826240, 1346830335, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346830336, 1346838527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346838528, 1346842623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346842624, 1346846719, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346846720, 1346854911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346854912, 1346859007, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346859008, 1346863103, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346863104, 1346867199, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346867200, 1346871295, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346871296, 1346879487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346879488, 1346883583, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346883584, 1346887679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346887680, 1346891775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346891776, 1346895871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346895872, 1346899967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346899968, 1346904063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346904064, 1346908159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346908160, 1346912255, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346912256, 1346920447, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346920448, 1346924543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346924544, 1346928639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346928640, 1346932735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346932736, 1346936831, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346936832, 1346940927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346940928, 1346945023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346945024, 1346949119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346949120, 1346957311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346957312, 1346961407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346961408, 1346965503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346965504, 1346969599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346969600, 1346973695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346973696, 1346977791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346977792, 1346985983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346985984, 1346986975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346986976, 1346987007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346987008, 1346994175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346994176, 1346998271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1346998272, 1347002367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347002368, 1347006463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347006464, 1347010559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347010560, 1347014655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347014656, 1347018751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347018752, 1347022847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347022848, 1347024895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347024896, 1347025151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347025152, 1347026943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347026944, 1347035135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347035136, 1347039231, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347039232, 1347043327, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347043328, 1347047423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347047424, 1347051519, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347051520, 1347059711, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347059712, 1347067903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347067904, 1347071999, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347072000, 1347076095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347076096, 1347084287, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347084288, 1347092479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347092480, 1347096575, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347096576, 1347100671, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347100672, 1347108863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347108864, 1347112959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347112960, 1347117055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347117056, 1347121151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347121152, 1347125247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347125248, 1347129343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347129344, 1347133439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347133440, 1347141631, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347141632, 1347145727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347145728, 1347146239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347146240, 1347146751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347146752, 1347149823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347149824, 1347153919, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347153920, 1347158015, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347158016, 1347162111, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347162112, 1347166207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347166208, 1347174399, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347174400, 1347186687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347186688, 1347190783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347190784, 1347194879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347194880, 1347198975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347198976, 1347203071, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347203072, 1347207167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347207168, 1347210911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347210912, 1347210919, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347210920, 1347210927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347210928, 1347210935, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347210936, 1347211111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347211112, 1347211119, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347211120, 1347215359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347215360, 1347219455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347219456, 1347223551, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347223552, 1347223807, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347223808, 1347224063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347224064, 1347224191, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347224192, 1347224575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347224576, 1347224831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347224832, 1347225599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347225600, 1347226623, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347226624, 1347227647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347227648, 1347231743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347231744, 1347235839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347235840, 1347239935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347239936, 1347244031, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347244032, 1347247359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347247360, 1347247871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347247872, 1347247872, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347247873, 1347248127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347248128, 1347248863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347248864, 1347248864, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347248865, 1347249343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347249344, 1347249375, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347249376, 1347250687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347250688, 1347250691, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347250692, 1347250695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347250696, 1347250735, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347250736, 1347252223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347252224, 1347256319, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347256320, 1347260415, N'FO', N'Faroe Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347260416, 1347264511, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347264512, 1347268607, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347268608, 1347271935, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347271936, 1347272447, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347272448, 1347272703, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347272704, 1347276799, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347276800, 1347280895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347280896, 1347284991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347284992, 1347286271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347286272, 1347286335, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347286336, 1347286527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347286528, 1347286535, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347286536, 1347289087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347289088, 1347293183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293184, 1347293319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293320, 1347293327, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293328, 1347293351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293352, 1347293391, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293392, 1347293399, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293400, 1347293407, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293408, 1347293415, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293416, 1347293423, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293424, 1347293431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293432, 1347293439, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293440, 1347293503, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293504, 1347293511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293512, 1347293519, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293520, 1347293527, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293528, 1347293535, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293536, 1347293543, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293544, 1347293551, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293552, 1347293567, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293568, 1347293583, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293584, 1347293599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293600, 1347293631, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293632, 1347293647, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293648, 1347293655, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293656, 1347293663, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293664, 1347293671, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293672, 1347293675, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293676, 1347293679, N'BH', N'Bahrain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293680, 1347293687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293688, 1347293693, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293694, 1347293695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293696, 1347293703, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293704, 1347293719, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293720, 1347293735, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293736, 1347293743, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293744, 1347293775, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293776, 1347293783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293784, 1347293815, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293816, 1347293823, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293824, 1347293831, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293832, 1347293839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293840, 1347293847, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293848, 1347293855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293856, 1347293863, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293864, 1347293871, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293872, 1347293879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293880, 1347293887, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293888, 1347293911, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293912, 1347293943, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293944, 1347293951, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293952, 1347293967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293968, 1347293975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293976, 1347293983, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347293984, 1347294007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294008, 1347294023, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294024, 1347294031, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294032, 1347294039, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294040, 1347294047, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294048, 1347294055, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294056, 1347294063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294064, 1347294071, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294072, 1347294079, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294080, 1347294087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294088, 1347294095, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294096, 1347294103, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347294104, 1347297279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347297280, 1347305471, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347305472, 1347309567, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347309568, 1347313663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347313664, 1347321855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347321856, 1347323775, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347323776, 1347323903, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347323904, 1347325183, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347325184, 1347325439, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347325440, 1347325951, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347325952, 1347329535, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347329536, 1347329599, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347329600, 1347330047, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347330048, 1347338239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347338240, 1347342335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347342336, 1347346431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347346432, 1347354623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347354624, 1347358719, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347358720, 1347362815, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347362816, 1347366911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347366912, 1347371007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347371008, 1347375103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347375104, 1347379199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347379200, 1347383295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347383296, 1347387391, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347387392, 1347391487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347391488, 1347395583, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347395584, 1347399679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347399680, 1347403775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347403776, 1347411967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347411968, 1347416063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347416064, 1347420159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347420160, 1347420671, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347420672, 1347420679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347420680, 1347420791, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347420792, 1347420799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347420800, 1347420831, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347420832, 1347420847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347420848, 1347423775, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347423776, 1347423807, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347423808, 1347424339, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347424340, 1347424351, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347424352, 1347427135, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347427136, 1347427327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347427328, 1347428351, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347428352, 1347432447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347432448, 1347436543, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347436544, 1347440639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347440640, 1347444735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347444736, 1347452927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347452928, 1347461119, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347461120, 1347465215, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347465216, 1347473407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347473408, 1347477503, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347477504, 1347481599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347481600, 1347485695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347485696, 1347493887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347493888, 1347502079, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347502080, 1347503103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347503104, 1347503359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347503360, 1347506175, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347506176, 1347510271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347510272, 1347518463, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347518464, 1347522559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347522560, 1347526655, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347526656, 1347527727, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347527728, 1347527735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347527736, 1347527951, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347527952, 1347528015, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347528016, 1347528319, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347528320, 1347528351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347528352, 1347528639, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347528640, 1347528703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347528704, 1347528959, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347528960, 1347529087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347529088, 1347529471, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347529472, 1347529983, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347529984, 1347534847, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347534848, 1347538943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347538944, 1347543039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347543040, 1347547135, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347547136, 1347547647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347547648, 1347551231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347551232, 1347555327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347555328, 1347559423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347559424, 1347567615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347567616, 1347571711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347571712, 1347575807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347575808, 1347579903, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347579904, 1347588095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347588096, 1347592191, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347592192, 1347600383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347600384, 1347604479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347604480, 1347608575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347608576, 1347612671, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347612672, 1347616767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347616768, 1347620863, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347620864, 1347624959, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347624960, 1347633151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347633152, 1347637247, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347637248, 1347641343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347641344, 1347649535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347649536, 1347653631, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347653632, 1347654615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347654616, 1347654623, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347654624, 1347655175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347655176, 1347655183, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347655184, 1347657727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347657728, 1347661823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347661824, 1347665919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347665920, 1347670015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347670016, 1347674111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347674112, 1347682303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347682304, 1347686399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347686400, 1347688703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347688704, 1347688735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347688736, 1347688743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347688744, 1347688751, N'ET', N'Ethiopia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347688752, 1347688767, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347688768, 1347688959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347688960, 1347689343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347689344, 1347690495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347690496, 1347694591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347694592, 1347706879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347706880, 1347710975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347710976, 1347715071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347715072, 1347715455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347715456, 1347715487, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347715488, 1347715519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347715520, 1347715527, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347715528, 1347716095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347716096, 1347716103, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347716104, 1347716151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347716152, 1347716159, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347716160, 1347716207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347716208, 1347716223, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347716224, 1347716255, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347716256, 1347717887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347717888, 1347718367, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347718368, 1347718399, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347718400, 1347719679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347719680, 1347719719, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347719720, 1347722495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347722496, 1347722751, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347722752, 1347723263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347723264, 1347727359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347727360, 1347731455, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347731456, 1347739647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347739648, 1347747839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347747840, 1347751935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347751936, 1347754783, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347754784, 1347754887, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347754888, 1347756031, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347756032, 1347760127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347760128, 1347764223, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347764224, 1347772415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347772416, 1347776511, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347776512, 1347780607, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347780608, 1347784703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347784704, 1347788799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347788800, 1347792895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347792896, 1347796991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347796992, 1347801087, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347801088, 1347805183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347805184, 1347809279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347809280, 1347813375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347813376, 1347817471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347817472, 1347821567, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347821568, 1347822343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347822344, 1347822351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347822352, 1347825663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347825664, 1347829759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347829760, 1347833855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347833856, 1347836191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347836192, 1347836195, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347836196, 1347836223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347836224, 1347836255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347836256, 1347837951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347837952, 1347846143, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347846144, 1347850239, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347850240, 1347854335, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347854336, 1347854887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347854888, 1347854911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347854912, 1347855103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347855104, 1347855359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347855360, 1347855887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347855888, 1347855903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347855904, 1347855967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347855968, 1347855999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347856000, 1347856239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347856240, 1347856255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347856256, 1347856415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347856416, 1347856511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347856512, 1347856639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347856640, 1347856895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347856896, 1347858431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347858432, 1347858559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347858560, 1347858631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347858632, 1347858639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347858640, 1347859327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347859328, 1347859343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347859344, 1347859351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347859352, 1347859359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347859360, 1347859391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347859392, 1347859407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347859408, 1347861759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347861760, 1347861799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347861800, 1347861815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347861816, 1347861943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347861944, 1347861951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347861952, 1347862015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347862016, 1347862527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347862528, 1347865791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347865792, 1347865855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347865856, 1347866623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347866624, 1347870719, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347870720, 1347874815, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347874816, 1347878911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347878912, 1347883007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347883008, 1347887103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347887104, 1347891199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347891200, 1347895295, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347895296, 1347903487, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347903488, 1347907583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347907584, 1347911679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347911680, 1347915775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347915776, 1347919871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347919872, 1347923967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347923968, 1347928063, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347928064, 1347932159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347932160, 1347936255, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347936256, 1347940351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347940352, 1347944447, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347944448, 1347948543, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347948544, 1347952639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347952640, 1347956735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347956736, 1347960831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347960832, 1347964927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347964928, 1347969023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347969024, 1347977215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347977216, 1347977727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347977728, 1347977991, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347977992, 1347978143, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978144, 1347978159, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978160, 1347978367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978368, 1347978375, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978376, 1347978503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978504, 1347978519, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978520, 1347978575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978576, 1347978751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978752, 1347978815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978816, 1347978823, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347978824, 1347979167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979168, 1347979183, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979184, 1347979295, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979296, 1347979311, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979312, 1347979487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979488, 1347979495, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979496, 1347979615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979616, 1347979631, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979632, 1347979743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979744, 1347979751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979752, 1347979903, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979904, 1347979967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979968, 1347979983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347979984, 1347979999, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980000, 1347980031, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980032, 1347980063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980064, 1347980079, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980080, 1347980095, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980096, 1347980111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980112, 1347980127, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980128, 1347980255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980256, 1347980271, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980272, 1347980287, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980288, 1347980415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980416, 1347980479, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980480, 1347980543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980544, 1347980575, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980576, 1347980591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980592, 1347980607, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980608, 1347980623, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980624, 1347980639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980640, 1347980655, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980656, 1347980799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980800, 1347980991, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347980992, 1347981055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347981056, 1347981183, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347981184, 1347981255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347981256, 1347981263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347981264, 1347981271, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347981272, 1347981279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347981280, 1347981895, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347981896, 1347982335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347982336, 1347982847, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347982848, 1347983119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983120, 1347983231, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983232, 1347983247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983248, 1347983263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983264, 1347983287, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983288, 1347983295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983296, 1347983359, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983360, 1347983487, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983488, 1347983951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983952, 1347983959, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983960, 1347983967, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983968, 1347983983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347983984, 1347983999, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984000, 1347984127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984128, 1347984295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984296, 1347984303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984304, 1347984319, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984320, 1347984351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984352, 1347984367, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984368, 1347984383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984384, 1347984399, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984400, 1347984703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984704, 1347984711, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984712, 1347984719, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984720, 1347984791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984792, 1347984799, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984800, 1347984807, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984808, 1347984815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984816, 1347984823, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347984824, 1347985407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347985408, 1347989503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347989504, 1347993599, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1347993600, 1348001791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348001792, 1348005887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348005888, 1348009983, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348009984, 1348014079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348014080, 1348018175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348018176, 1348026367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348026368, 1348030463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348030464, 1348034559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348034560, 1348038655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348038656, 1348042751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348042752, 1348050943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348050944, 1348055039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348055040, 1348059135, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348059136, 1348063231, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348063232, 1348067327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348067328, 1348071423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348071424, 1348075519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348075520, 1348075967, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348075968, 1348076031, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348076032, 1348076303, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348076304, 1348076311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348076312, 1348083711, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348083712, 1348091903, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348091904, 1348095999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348096000, 1348100095, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348100096, 1348104191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348104192, 1348108287, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348108288, 1348112383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348112384, 1348116479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348116480, 1348120575, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348120576, 1348124671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348124672, 1348132863, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348132864, 1348136959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348136960, 1348141055, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348141056, 1348145151, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348145152, 1348149247, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348149248, 1348153343, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348153344, 1348157439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348157440, 1348161535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348161536, 1348162559, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348162560, 1348165631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348165632, 1348169727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348169728, 1348173823, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348173824, 1348174591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348174592, 1348177919, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348177920, 1348182015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348182016, 1348190207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348190208, 1348194303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348194304, 1348198399, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348198400, 1348202495, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348202496, 1348206591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348206592, 1348218879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348218880, 1348219167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219168, 1348219183, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219184, 1348219199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219200, 1348219207, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219208, 1348219247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219248, 1348219263, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219264, 1348219295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219296, 1348219327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219328, 1348219647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219648, 1348219903, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348219904, 1348220927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348220928, 1348222975, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348222976, 1348231167, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348231168, 1348235263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348235264, 1348239359, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348239360, 1348240383, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348240384, 1348247551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348247552, 1348251647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348251648, 1348255743, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348255744, 1348263935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348263936, 1348268031, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348268032, 1348272127, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348272128, 1348274695, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348274696, 1348274771, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348274772, 1348274775, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348274776, 1348274791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348274792, 1348274943, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348274944, 1348275199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348275200, 1348280319, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348280320, 1348284415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348284416, 1348288511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348288512, 1348292607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348292608, 1348296703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348296704, 1348300799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348300800, 1348304895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348304896, 1348308991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348308992, 1348313087, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348313088, 1348317183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348317184, 1348321279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348321280, 1348325375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348325376, 1348329471, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348329472, 1348337663, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348337664, 1348341759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348341760, 1348345855, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348345856, 1348349951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348349952, 1348354047, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348354048, 1348358143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348358144, 1348362239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348362240, 1348366335, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348366336, 1348370431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348370432, 1348374527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348374528, 1348378623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348378624, 1348382719, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348382720, 1348386815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348386816, 1348390911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348390912, 1348395007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348395008, 1348399103, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348399104, 1348403199, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348403200, 1348407295, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348407296, 1348411391, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348411392, 1348415487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348415488, 1348419583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348419584, 1348427775, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348427776, 1348435967, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348435968, 1348440063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348440064, 1348444159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348444160, 1348448255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348448256, 1348456447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348456448, 1348460543, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348460544, 1348464639, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348464640, 1348468735, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348468736, 1348548607, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348548608, 1348549631, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348549632, 1348599807, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348599808, 1348730879, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348730880, 1348861951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348861952, 1348993023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1348993024, 1349124095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349124096, 1349255167, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349255168, 1349286399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349286400, 1349287935, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349287936, 1349301759, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349301760, 1349304319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349304320, 1349309183, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349309184, 1349312511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349312512, 1349316095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349316096, 1349320703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349320704, 1349360383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349360384, 1349360639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349360640, 1349360895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349360896, 1349363455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349363456, 1349364223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349364224, 1349365503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349365504, 1349365759, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349365760, 1349369855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349369856, 1349382143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349382144, 1349382399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349382400, 1349384447, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349384448, 1349385215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349385216, 1349385983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349385984, 1349386239, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349386240, 1349396735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349396736, 1349398527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349398528, 1349416703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349416704, 1349417471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349417472, 1349451263, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349451264, 1349453823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349453824, 1349457919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349457920, 1349458943, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349458944, 1349485567, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349485568, 1349486591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349486592, 1349489663, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349489664, 1349494783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349494784, 1349496831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349496832, 1349497855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349497856, 1349508351, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349508352, 1349509119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349509120, 1349513215, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349513216, 1349515263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349515264, 1349516287, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349516288, 1349517311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349517312, 1349779455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349779456, 1349910527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1349910528, 1350041599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350041600, 1350083263, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350083264, 1350083327, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350083328, 1350092287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350092288, 1350092543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350092544, 1350213887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350213888, 1350214143, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350214144, 1350214655, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350214656, 1350215167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350215168, 1350215191, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350215192, 1350215679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350215680, 1350217727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350217728, 1350219775, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350219776, 1350221823, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350221824, 1350296063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350296064, 1350296319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350296320, 1350303743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350303744, 1350434815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350434816, 1350565887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1350565888, 1351789119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351789120, 1351789151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351789152, 1351793791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351793792, 1351793855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351793856, 1351797231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351797232, 1351797239, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351797240, 1351799767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351799768, 1351799775, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351799776, 1351800351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351800352, 1351800359, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351800360, 1351801327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351801328, 1351801335, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351801336, 1351807391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351807392, 1351807423, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351807424, 1351879631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351879632, 1351879639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351879640, 1351879999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351880000, 1351880031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351880032, 1351892599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351892600, 1351892607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1351892608, 1352010239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352010240, 1352010495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352010496, 1352011447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352011448, 1352011455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352011456, 1352139671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352139672, 1352139679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352139680, 1352144511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352144512, 1352144519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352144520, 1352144527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352144528, 1352144535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352144536, 1352144543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352144544, 1352144559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352144560, 1352144575, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352144576, 1352271087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352271088, 1352271095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352271096, 1352271871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352271872, 1352271903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352271904, 1352277535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352277536, 1352277567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352277568, 1352401239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352401240, 1352401247, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352401248, 1352402791, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352402792, 1352402799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352402800, 1352404599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352404600, 1352404607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352404608, 1352404991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352404992, 1352405055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352405056, 1352405119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352405120, 1352663039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352663040, 1352680751, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352680752, 1352680767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1352680768, 1353187327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353187328, 1353287999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353288000, 1353288031, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353288032, 1353288703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353288704, 1353288959, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353288960, 1353290751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353290752, 1353290815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353290816, 1353298695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353298696, 1353298703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353298704, 1353298719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353298720, 1353298751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353298752, 1353318399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353318400, 1353383935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353383936, 1353449471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353449472, 1353515007, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353515008, 1353646079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353646080, 1353842687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353842688, 1353866539, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866540, 1353866543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866544, 1353866843, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866844, 1353866851, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866852, 1353866871, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866872, 1353866879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866880, 1353866911, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866912, 1353866919, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866920, 1353866959, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866960, 1353866967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866968, 1353866987, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866988, 1353866991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353866992, 1353867071, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867072, 1353867075, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867076, 1353867079, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867080, 1353867083, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867084, 1353867107, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867108, 1353867111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867112, 1353867175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867176, 1353867183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867184, 1353867247, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867248, 1353867263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353867264, 1353871919, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353871920, 1353871935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353871936, 1353872095, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872096, 1353872103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872104, 1353872423, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872424, 1353872431, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872432, 1353872443, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872444, 1353872447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872448, 1353872495, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872496, 1353872499, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872500, 1353872503, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872504, 1353872511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872512, 1353872519, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872520, 1353872527, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872528, 1353872759, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872760, 1353872767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872768, 1353872879, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872880, 1353872887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872888, 1353872915, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872916, 1353872919, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872920, 1353872943, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872944, 1353872951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872952, 1353872991, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353872992, 1353873011, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873012, 1353873023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873024, 1353873031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873032, 1353873047, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873048, 1353873051, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873052, 1353873087, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873088, 1353873095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873096, 1353873103, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873104, 1353873111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873112, 1353873127, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873128, 1353873151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353873152, 1353906175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353906176, 1353907967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353907968, 1353908479, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353908480, 1353909503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353909504, 1353909759, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353909760, 1353910271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353910272, 1353912191, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353912192, 1353912207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353912208, 1353912247, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353912248, 1353912255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353912256, 1353912319, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353912320, 1353913343, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353913344, 1353914367, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353914368, 1353914879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353914880, 1353914967, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353914968, 1353914975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353914976, 1353915095, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915096, 1353915103, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915104, 1353915199, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915200, 1353915207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915208, 1353915223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915224, 1353915231, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915232, 1353915247, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915248, 1353915391, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915392, 1353915407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915408, 1353915439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915440, 1353915511, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915512, 1353915519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915520, 1353915567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353915568, 1353916159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353916160, 1353916927, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353916928, 1353917439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353917440, 1353917695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353917696, 1353919743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353919744, 1353919999, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353920000, 1353932799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353932800, 1353932935, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353932936, 1353932943, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353932944, 1353932951, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353932952, 1353932959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353932960, 1353933055, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353933056, 1353935103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353935104, 1353935615, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353935616, 1353935871, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353935872, 1353936415, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353936416, 1353936431, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353936432, 1353936447, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353936448, 1353936639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353936640, 1353936927, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353936928, 1353936935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353936936, 1353936991, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353936992, 1353937015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937016, 1353937167, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937168, 1353937183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937184, 1353937223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937224, 1353937239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937240, 1353937263, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937264, 1353937279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937280, 1353937295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937296, 1353937299, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937300, 1353937315, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937316, 1353937319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937320, 1353937327, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937328, 1353937343, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937344, 1353937351, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937352, 1353937359, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937360, 1353937727, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937728, 1353937759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937760, 1353937887, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937888, 1353937919, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353937920, 1353938015, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353938016, 1353938047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353938048, 1353938143, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353938144, 1353938159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353938160, 1353938943, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353938944, 1353940991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353940992, 1353947135, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353947136, 1353955455, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353955456, 1353955487, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353955488, 1353955519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353955520, 1353955903, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353955904, 1353955967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353955968, 1353956095, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956096, 1353956127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956128, 1353956175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956176, 1353956179, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956180, 1353956287, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956288, 1353956303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956304, 1353956607, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956608, 1353956863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353956864, 1353966335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353966336, 1353966687, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353966688, 1353966703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353966704, 1353966751, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353966752, 1353966815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353966816, 1353967551, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353967552, 1353967567, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353967568, 1353967583, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353967584, 1353967599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353967600, 1353968063, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353968064, 1353968095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353968096, 1353968127, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353968128, 1353968383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353968384, 1353968511, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353968512, 1353969407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353969408, 1353969919, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353969920, 1353971199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353971200, 1353971967, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353971968, 1353972607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353972608, 1353972735, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353972736, 1353972991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353972992, 1353973135, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353973136, 1353973151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353973152, 1353973223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353973224, 1353973239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353973240, 1353973247, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353973248, 1353973759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1353973760, 1354235903, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354235904, 1354366975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354366976, 1354432511, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354432512, 1354498047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354498048, 1354563583, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354563584, 1354629119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354629120, 1354683391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354683392, 1354684159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354684160, 1354687399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354687400, 1354687407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354687408, 1354687455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354687456, 1354687487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354687488, 1354694655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354694656, 1354760191, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1354760192, 1355022335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1355022336, 1355284479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1355284480, 1355415551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1355415552, 1355546623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1355546624, 1355808767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1355808768, 1356070911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356070912, 1356201983, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356201984, 1356333055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356333056, 1356464127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356464128, 1356595199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356595200, 1356857343, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356857344, 1356922879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356922880, 1356988415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1356988416, 1357053951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357053952, 1357119487, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357119488, 1357126807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357126808, 1357126815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357126816, 1357127063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357127064, 1357127079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357127080, 1357127471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357127472, 1357127487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357127488, 1357177943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357177944, 1357177951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357177952, 1357185023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357185024, 1357250559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357250560, 1357316095, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357316096, 1357317119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357317120, 1357317631, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357317632, 1357318143, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357318144, 1357320191, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357320192, 1357320703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357320704, 1357320959, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357320960, 1357320983, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357320984, 1357320991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357320992, 1357321015, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321016, 1357321023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321024, 1357321087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321088, 1357321215, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321216, 1357321471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321472, 1357321503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321504, 1357321727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321728, 1357321983, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357321984, 1357322239, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357322240, 1357330431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357330432, 1357330687, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357330688, 1357330943, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357330944, 1357331455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357331456, 1357332479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357332480, 1357333503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357333504, 1357333759, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357333760, 1357333823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357333824, 1357333855, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357333856, 1357333887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357333888, 1357334015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357334016, 1357334271, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357334272, 1357334527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357334528, 1357335551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357335552, 1357335807, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357335808, 1357336063, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357336064, 1357336319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357336320, 1357336575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357336576, 1357337599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357337600, 1357337855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357337856, 1357338111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357338112, 1357338623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357338624, 1357339647, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357339648, 1357339903, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357339904, 1357340415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357340416, 1357340671, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357340672, 1357348863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357348864, 1357349119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357349120, 1357349375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357349376, 1357350399, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357350400, 1357350911, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357350912, 1357351167, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357351168, 1357351935, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357351936, 1357352959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357352960, 1357354239, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357354240, 1357354495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357354496, 1357355007, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357355008, 1357356031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357356032, 1357356287, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357356288, 1357356543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357356544, 1357357567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357357568, 1357358079, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357358080, 1357358335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357358336, 1357358591, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357358592, 1357358847, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357358848, 1357359103, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357359104, 1357359359, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357359360, 1357359487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357359488, 1357359551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357359552, 1357359871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357359872, 1357359999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357360000, 1357360127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357360128, 1357360255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357360256, 1357360383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357360384, 1357360639, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357360640, 1357360895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357360896, 1357363199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357363200, 1357364223, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357364224, 1357365247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357365248, 1357365759, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357365760, 1357365791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357365792, 1357365887, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357365888, 1357365951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357365952, 1357366015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366016, 1357366271, N'KM', N'Comoros') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366272, 1357366527, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366528, 1357366783, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366784, 1357366799, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366800, 1357366815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366816, 1357366847, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366848, 1357366911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357366912, 1357367295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357367296, 1357368063, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357368064, 1357368831, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357368832, 1357369599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357369600, 1357369855, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357369856, 1357370111, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357370112, 1357370879, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357370880, 1357371391, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357371392, 1357372927, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357372928, 1357373183, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357373184, 1357373439, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357373440, 1357381631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357381632, 1357391615, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357391616, 1357391871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357391872, 1357414399, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357414400, 1357447167, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357447168, 1357479935, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357479936, 1357512703, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357512704, 1357545471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357545472, 1357578239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357578240, 1357611007, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357611008, 1357643775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357643776, 1357676543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357676544, 1357709311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357709312, 1357742079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357742080, 1357759183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357759184, 1357759191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357759192, 1357765823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357765824, 1357765831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357765832, 1357772687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357772688, 1357772695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357772696, 1357774847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357774848, 1357791231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357791232, 1357799423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357799424, 1357840383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357840384, 1357867735, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357867736, 1357867743, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357867744, 1357873151, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357873152, 1357875199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875200, 1357875215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875216, 1357875263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875264, 1357875279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875280, 1357875295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875296, 1357875327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875328, 1357875455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875456, 1357875711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875712, 1357875967, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357875968, 1357876127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876128, 1357876143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876144, 1357876191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876192, 1357876199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876200, 1357876215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876216, 1357876223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876224, 1357876239, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876240, 1357876271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876272, 1357876279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876280, 1357876287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876288, 1357876303, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876304, 1357876335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876336, 1357876339, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876340, 1357876343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876344, 1357876367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876368, 1357876391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876392, 1357876399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876400, 1357876415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876416, 1357876479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876480, 1357876495, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876496, 1357876527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876528, 1357876543, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876544, 1357876735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876736, 1357876863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876864, 1357876991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357876992, 1357877439, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357877440, 1357877503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357877504, 1357877759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357877760, 1357878271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357878272, 1357878911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357878912, 1357879807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357879808, 1357879871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357879872, 1357879903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357879904, 1357880511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357880512, 1357880527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357880528, 1357880559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357880560, 1357880575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357880576, 1357881343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357881344, 1357883391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883392, 1357883423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883424, 1357883519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883520, 1357883535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883536, 1357883551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883552, 1357883583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883584, 1357883719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883720, 1357883727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883728, 1357883759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883760, 1357883807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883808, 1357883911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883912, 1357883967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357883968, 1357883999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884000, 1357884031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884032, 1357884159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884160, 1357884415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884416, 1357884419, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884420, 1357884431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884432, 1357884439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884440, 1357884511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884512, 1357884671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884672, 1357884927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884928, 1357884935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884936, 1357884959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357884960, 1357885183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357885184, 1357885199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357885200, 1357885215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357885216, 1357885439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357885440, 1357885695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357885696, 1357885951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357885952, 1357886463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357886464, 1357887487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357887488, 1357887999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357888000, 1357889535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357889536, 1357890815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357890816, 1357890823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357890824, 1357891071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357891072, 1357891327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357891328, 1357891391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357891392, 1357891407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357891408, 1357891423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357891424, 1357891455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357891456, 1357891583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357891584, 1357892607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357892608, 1357892735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357892736, 1357892863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357892864, 1357893375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357893376, 1357893391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357893392, 1357897919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357897920, 1357897983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357897984, 1357899007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357899008, 1357899015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357899016, 1357899023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357899024, 1357899055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357899056, 1357899103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357899104, 1357899135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357899136, 1357899775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357899776, 1357900287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357900288, 1357900543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357900544, 1357900799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357900800, 1357901311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357901312, 1357901567, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357901568, 1357901823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357901824, 1357903615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357903616, 1357905919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357905920, 1357910015, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357910016, 1357914111, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357914112, 1357922303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357922304, 1357926399, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357926400, 1357930495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357930496, 1357938687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357938688, 1357942783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357946880, 1357955071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357955072, 1357959167, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357959168, 1357963263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357963264, 1357964199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357964200, 1357964207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357964208, 1357967359, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357967360, 1357971455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357971456, 1357975551, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357975552, 1357979647, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357979648, 1357983743, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357983744, 1357987839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357987840, 1357988479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988480, 1357988679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988680, 1357988687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988688, 1357988695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988696, 1357988703, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988704, 1357988735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988736, 1357988739, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988740, 1357988767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988768, 1357988775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357988776, 1357989631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989632, 1357989639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989640, 1357989647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989648, 1357989663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989664, 1357989671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989672, 1357989675, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989676, 1357989679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989680, 1357989695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357989696, 1357991935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357991936, 1357996031, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1357996032, 1358000127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358000128, 1358004223, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358004224, 1358008319, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358008320, 1358012415, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358012416, 1358016511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358016512, 1358020607, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358020608, 1358024703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358024704, 1358028799, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358028800, 1358032895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358032896, 1358036991, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358036992, 1358045183, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358045184, 1358049279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358049280, 1358061567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358061568, 1358065663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358065664, 1358069759, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358069760, 1358082815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358082816, 1358083071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358083072, 1358086143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358086144, 1358090239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358090240, 1358094335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358094336, 1358102527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358102528, 1358106623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358106624, 1358110719, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358110720, 1358116895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358116896, 1358116911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358116912, 1358118911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358118912, 1358123007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358123008, 1358127103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358127104, 1358131199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358131200, 1358135295, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358135296, 1358139391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358139392, 1358143487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358143488, 1358144159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358144160, 1358144191, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358144192, 1358147519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358147520, 1358147583, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358147584, 1358151679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358151680, 1358155775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358155776, 1358159871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358159872, 1358163967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358163968, 1358168063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358168064, 1358172159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358172160, 1358173183, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358173184, 1358173951, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358173952, 1358176255, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358176256, 1358180351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358180352, 1358184447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358184448, 1358192639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358192640, 1358196735, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358196736, 1358200831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358200832, 1358209023, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358209024, 1358209303, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358209304, 1358209311, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358209312, 1358209327, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358209328, 1358209335, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358209336, 1358209415, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358209416, 1358209423, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358209424, 1358213119, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358213120, 1358217215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358217216, 1358221311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358221312, 1358223359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358223360, 1358223487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358223488, 1358223615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358223616, 1358223631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358223632, 1358225407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358225408, 1358229503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358229504, 1358229575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358229576, 1358229583, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358229584, 1358230111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358230112, 1358230115, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358230116, 1358230527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358230528, 1358230531, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358230532, 1358233599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358233600, 1358237695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358237696, 1358241791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358241792, 1358241807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358241808, 1358242591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358242592, 1358242623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358242624, 1358244351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358244352, 1358245375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358245376, 1358245663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358245664, 1358245679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358245680, 1358245695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358245696, 1358245727, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358245728, 1358245887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358245888, 1358247935, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358247936, 1358249983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358249984, 1358251815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358251816, 1358251823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358251824, 1358254079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358254080, 1358258175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358258176, 1358262271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358262272, 1358266367, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358266368, 1358274559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358274560, 1358278655, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358278656, 1358282751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358282752, 1358286847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358286848, 1358290943, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358290944, 1358295039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358295040, 1358299135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358299136, 1358303231, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358303232, 1358307327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358307328, 1358311423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358311424, 1358315519, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358315520, 1358323711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358323712, 1358327807, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358327808, 1358331903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358331904, 1358335999, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358336000, 1358344191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358344192, 1358348287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358348288, 1358352383, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358352384, 1358356479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358356480, 1358360575, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358360576, 1358364671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358364672, 1358372863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358372864, 1358376959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358376960, 1358381055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358381056, 1358384127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358384128, 1358384143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358384144, 1358385151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358385152, 1358389247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358389248, 1358397439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358397440, 1358397743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358397744, 1358397951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358397952, 1358398463, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358398464, 1358399487, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358399488, 1358399999, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400000, 1358400007, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400008, 1358400015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400016, 1358400071, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400072, 1358400255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400256, 1358400511, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400512, 1358400519, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400520, 1358400527, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400528, 1358400535, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400536, 1358400543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400544, 1358400551, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400552, 1358400575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400576, 1358400591, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400592, 1358400639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400640, 1358400775, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400776, 1358400783, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400784, 1358400799, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400800, 1358400863, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400864, 1358400895, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358400896, 1358401279, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358401280, 1358401391, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358401392, 1358401407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358401408, 1358401439, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358401440, 1358401535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358401536, 1358401791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358401792, 1358402175, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402176, 1358402303, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402304, 1358402319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402320, 1358402343, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402344, 1358402351, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402352, 1358402359, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402360, 1358402363, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402364, 1358402367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402368, 1358402399, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402400, 1358402415, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402416, 1358402419, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402420, 1358402447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402448, 1358402463, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402464, 1358402495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402496, 1358402543, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402544, 1358402687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402688, 1358402719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358402720, 1358403103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403104, 1358403135, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403136, 1358403151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403152, 1358403167, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403168, 1358403183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403184, 1358403273, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403274, 1358403327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403328, 1358403583, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403584, 1358403591, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403592, 1358403631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403632, 1358403679, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403680, 1358403687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403688, 1358403711, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403712, 1358403839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358403840, 1358404095, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404096, 1358404607, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404608, 1358404611, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404612, 1358404615, N'TZ', N'Tanzania, United Republic of') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404616, 1358404623, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404624, 1358404655, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404656, 1358404671, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404672, 1358404695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404696, 1358404703, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404704, 1358404735, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404736, 1358404751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404752, 1358404767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404768, 1358404783, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404784, 1358404863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358404864, 1358405119, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358405120, 1358405375, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358405376, 1358405631, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358405632, 1358409727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358409728, 1358413823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358413824, 1358422015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358422016, 1358426111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358426112, 1358430207, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358430208, 1358434303, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358434304, 1358438399, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358438400, 1358442495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358442496, 1358446591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358446592, 1358450687, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358450688, 1358454783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358454784, 1358462975, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358462976, 1358467071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358467072, 1358471167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358471168, 1358475263, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358475264, 1358479359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358479360, 1358483455, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358483456, 1358487551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358487552, 1358491647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358491648, 1358495743, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358495744, 1358499839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358503936, 1358508031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358508032, 1358512127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358512128, 1358516223, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358516224, 1358520319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358520320, 1358524415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358524416, 1358526719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358526720, 1358526728, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358526729, 1358526975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358526976, 1358527487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358527488, 1358527743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358527744, 1358527751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358527752, 1358527999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358528000, 1358528511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358528512, 1358536703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358536704, 1358540799, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358540800, 1358544895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358544896, 1358548991, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358548992, 1358553087, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358553088, 1358557183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358557184, 1358561279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358561280, 1358569471, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358569472, 1358573567, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358573568, 1358577663, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358577664, 1358585855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358585856, 1358589951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358589952, 1358594047, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358594048, 1358598143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358598144, 1358602239, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358602240, 1358622719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358622720, 1358626815, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358626816, 1358630911, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358630912, 1358635007, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358635008, 1358639103, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358639104, 1358643199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358643200, 1358647295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358647296, 1358651391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358651392, 1358655487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358655488, 1358667775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358667776, 1358668211, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358668212, 1358668215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358668216, 1358668463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358668464, 1358668479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358668480, 1358668559, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358668560, 1358668567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358668568, 1358669915, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358669916, 1358669919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358669920, 1358670023, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358670024, 1358670031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358670032, 1358670335, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358670336, 1358670591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358670592, 1358671103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358671104, 1358671359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358671360, 1358671375, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358671376, 1358671383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358671384, 1358671391, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358671392, 1358671407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358671408, 1358671415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358671416, 1358675967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358675968, 1358680063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358680064, 1358684159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358684160, 1358688255, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358688256, 1358692351, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358692352, 1358696447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358696448, 1358700543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358700544, 1358704639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358704640, 1358708735, N'HU', N'Hungary') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358708736, 1358712831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358712832, 1358716927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358716928, 1358721023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358721024, 1358725119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358725120, 1358733311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358733312, 1358741503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358741504, 1358745599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358745600, 1358749695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358749696, 1358753791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358753792, 1358757887, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358757888, 1358766079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358766080, 1358770175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358770176, 1358774271, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358774272, 1358778367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358778368, 1358778623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358778624, 1358782463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358782464, 1358784015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358784016, 1358784039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358784040, 1358784063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358784064, 1358784831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358784832, 1358784863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358784864, 1358784895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358784896, 1358785087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358785088, 1358785151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358785152, 1358786559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358786560, 1358787071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358787072, 1358790655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358790656, 1358798847, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358798848, 1358800895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358800896, 1358802943, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358802944, 1358807039, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358807040, 1358808159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358808160, 1358808191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358808192, 1358810617, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358810618, 1358810622, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358810623, 1358810879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358810880, 1358811007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358811008, 1358811135, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358811136, 1358815231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358815232, 1358819327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358819328, 1358823423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358823424, 1358827519, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358827520, 1358831615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358831616, 1358835711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358835712, 1358839807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358839808, 1358843903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358843904, 1358847999, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358848000, 1358856191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358856192, 1358860287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358860288, 1358862335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358862336, 1358862591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358862592, 1358863359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358863360, 1358863615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358863616, 1358863871, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358863872, 1358864127, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358864128, 1358864383, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358864384, 1358872575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358872576, 1358876671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358876672, 1358880767, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358880768, 1358884863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358884864, 1358888959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358888960, 1358893055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358893056, 1358897151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358897152, 1358898975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358898976, 1358898991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358898992, 1358899127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899128, 1358899135, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899136, 1358899199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899200, 1358899207, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899208, 1358899231, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899232, 1358899239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899240, 1358899247, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899248, 1358899263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899264, 1358899295, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899296, 1358899303, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899304, 1358899311, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899312, 1358899327, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899328, 1358899335, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899336, 1358899343, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899344, 1358899359, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899360, 1358899375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899376, 1358899383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899384, 1358899391, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899392, 1358899407, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899408, 1358899415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899416, 1358899423, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899424, 1358899455, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899456, 1358899463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899464, 1358899471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899472, 1358899479, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899480, 1358899583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899584, 1358899599, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899600, 1358899607, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899608, 1358899631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899632, 1358899639, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358899640, 1358900743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358900744, 1358900759, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358900760, 1358900767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358900768, 1358900783, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358900784, 1358900959, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358900960, 1358900975, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358900976, 1358900991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358900992, 1358901247, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358901248, 1358902015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902016, 1358902039, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902040, 1358902063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902064, 1358902079, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902080, 1358902087, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902088, 1358902103, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902104, 1358902143, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902144, 1358902151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902152, 1358902167, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902168, 1358902175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902176, 1358902191, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902192, 1358902199, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902200, 1358902207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902208, 1358902215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902216, 1358902233, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902234, 1358902263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902264, 1358902271, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358902272, 1358903615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358903616, 1358903623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358903624, 1358903807, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358903808, 1358903951, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358903952, 1358903967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358903968, 1358903975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358903976, 1358903983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358903984, 1358904063, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904064, 1358904199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904200, 1358904262, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904263, 1358904551, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904552, 1358904559, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904560, 1358904575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904576, 1358904701, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904702, 1358904703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904704, 1358904719, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904720, 1358904735, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904736, 1358904767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904768, 1358904831, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358904832, 1358905095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905096, 1358905105, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905106, 1358905111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905112, 1358905119, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905120, 1358905127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905128, 1358905135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905136, 1358905151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905152, 1358905159, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905160, 1358905167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905168, 1358905183, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905184, 1358905215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905216, 1358905343, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358905344, 1358909439, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358909440, 1358913535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358913536, 1358917631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358917632, 1358921727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358921728, 1358929919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358929920, 1358934015, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358934016, 1358938111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358938112, 1358946303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358946304, 1358950399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358950400, 1358954495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358954496, 1358970879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358970880, 1358987263, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1358987264, 1359003647, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359003648, 1359020031, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359020032, 1359036415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359036416, 1359052799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359052800, 1359069183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359069184, 1359101951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359101952, 1359118335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359118336, 1359134719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359134720, 1359151103, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359151104, 1359166175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359166176, 1359166191, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359166192, 1359167487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359167488, 1359183871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359183872, 1359200255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359200256, 1359216639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359216640, 1359233023, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359233024, 1359249407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359249408, 1359260735, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359260736, 1359260751, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359260752, 1359263743, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359263744, 1359263999, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359264000, 1359264767, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359264768, 1359265023, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359265024, 1359265791, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359265792, 1359282175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359282176, 1359298559, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359298560, 1359314943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359314944, 1359331327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359331328, 1359347711, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359347712, 1359364095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359364096, 1359380479, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359380480, 1359396863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359396864, 1359429631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359429632, 1359446015, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359446016, 1359462399, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359462400, 1359470591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359470592, 1359478783, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359478784, 1359511551, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359511552, 1359544319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359544320, 1359547391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359547392, 1359547903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359547904, 1359548159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359548160, 1359548415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359548416, 1359552511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359552512, 1359552767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359552768, 1359553599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359553600, 1359553631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359553632, 1359577087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359577088, 1359609855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359609856, 1359630847, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359630848, 1359631103, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359631104, 1359642623, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359642624, 1359675391, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359675392, 1359708159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359708160, 1359740927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359740928, 1359773695, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359773696, 1359806463, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359806464, 1359839231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359839232, 1359871999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359872000, 1359904767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359904768, 1359937535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359937536, 1359970303, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1359970304, 1360003071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360003072, 1360007167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360007168, 1360011263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360011264, 1360015359, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360015360, 1360019455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360019456, 1360023551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360023552, 1360027647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360027648, 1360031743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360031744, 1360039935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360039936, 1360044031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360044032, 1360048127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360048128, 1360049167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049168, 1360049183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049184, 1360049199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049200, 1360049207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049208, 1360049215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049216, 1360049223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049224, 1360049231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049232, 1360049239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360049240, 1360052223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360052224, 1360056319, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360056320, 1360060415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360060416, 1360064511, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360064512, 1360068607, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360068608, 1360076799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360076800, 1360084991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360084992, 1360089087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360089088, 1360093183, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360093184, 1360101375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360101376, 1360105471, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360105472, 1360109567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360109568, 1360109823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360109824, 1360110591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360110592, 1360110975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360110976, 1360113663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360113664, 1360117759, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360117760, 1360121855, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360121856, 1360125951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360125952, 1360126975, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360126976, 1360127487, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360127488, 1360127999, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360128000, 1360128511, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360128512, 1360129023, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360129024, 1360129535, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360129536, 1360130047, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360130048, 1360130496, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360130497, 1360130559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360130560, 1360131520, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131521, 1360131583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131584, 1360131591, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131592, 1360131595, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131596, 1360131599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131600, 1360131839, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131840, 1360131903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131904, 1360131919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131920, 1360131935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131936, 1360131951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360131952, 1360134143, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360134144, 1360138239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360138240, 1360142335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360142336, 1360146431, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360146432, 1360150527, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360150528, 1360158719, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360158720, 1360162815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360162816, 1360175103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360175104, 1360179199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360179200, 1360183295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360183296, 1360191487, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360191488, 1360195583, N'FO', N'Faroe Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360195584, 1360199679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360199680, 1360203775, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360203776, 1360207871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360207872, 1360211967, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360211968, 1360216063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360216064, 1360224255, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360224256, 1360225663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360225664, 1360225695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360225696, 1360226079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360226080, 1360226111, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360226112, 1360226191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360226192, 1360226199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360226200, 1360228351, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360228352, 1360232447, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360232448, 1360236543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360236544, 1360240639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360240640, 1360244735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360244736, 1360257023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360257024, 1360265215, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360265216, 1360269311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360269312, 1360273407, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360273408, 1360281599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360281600, 1360285695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360285696, 1360289791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360289792, 1360293887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360293888, 1360297983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360297984, 1360302079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360302080, 1360306175, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360306176, 1360310271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360310272, 1360314367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360314368, 1360318463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360318464, 1360322559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360322560, 1360326655, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360326656, 1360330751, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360330752, 1360334847, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360334848, 1360338943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360338944, 1360343039, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360343040, 1360347135, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360347136, 1360351231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360351232, 1360355327, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360355328, 1360359423, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360359424, 1360363519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360363520, 1360367615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360367616, 1360371711, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360371712, 1360375807, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360375808, 1360379903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360379904, 1360383999, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360384000, 1360388095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360388096, 1360392191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360392192, 1360396287, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360396288, 1360400383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360400384, 1360404479, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360404480, 1360404735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360404736, 1360404991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360404992, 1360405247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360405248, 1360405503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360405504, 1360408575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360408576, 1360412671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360412672, 1360421119, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360421120, 1360424959, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360424960, 1360429055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360429056, 1360433151, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360433152, 1360437247, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360437248, 1360441343, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360441344, 1360445439, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360445440, 1360453631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360453632, 1360457727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360457728, 1360461823, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360461824, 1360465919, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360465920, 1360470015, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360470016, 1360474111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360474112, 1360478207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360478208, 1360482303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360482304, 1360486399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360486400, 1360502783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360502784, 1360506879, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360506880, 1360510975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360510976, 1360515071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360515072, 1360519167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360519168, 1360524031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360524032, 1360524287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360524288, 1360527359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360527360, 1360531455, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360531456, 1360535551, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360535552, 1360539647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360539648, 1360543743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360543744, 1360547839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360547840, 1360551935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360551936, 1360556031, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360556032, 1360564223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360564224, 1360568319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360568320, 1360572415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360572416, 1360576511, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360576512, 1360580607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360580608, 1360584703, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360584704, 1360588799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360588800, 1360592895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360592896, 1360596991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360596992, 1360601087, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360601088, 1360605183, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360605184, 1360613375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360613376, 1360617471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360617472, 1360621567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360621568, 1360625663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360625664, 1360629759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360629760, 1360633855, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360633856, 1360637951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360637952, 1360642047, N'FO', N'Faroe Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360642048, 1360643647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360643648, 1360643711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360643712, 1360646143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360646144, 1360650239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360650240, 1360654335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360654336, 1360658431, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360658432, 1360666623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360666624, 1360674815, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360674816, 1360678911, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360678912, 1360683007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360683008, 1360691199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360691200, 1360699391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360699392, 1360703487, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360703488, 1360707583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360707584, 1360711679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360711680, 1360715775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360715776, 1360728063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360728064, 1360732159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360732160, 1360736255, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360736256, 1360740351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360740352, 1360752639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360752640, 1360756735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360756736, 1360760831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360760832, 1360764927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360764928, 1360769023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360769024, 1360773119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360773120, 1360777215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360777216, 1360781311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360781312, 1360785407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360785408, 1360793599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360793600, 1360797695, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360797696, 1360805887, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360805888, 1360809983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360809984, 1360814079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360814080, 1360818175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360818176, 1360822271, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360822272, 1360826367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360826368, 1360830463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360830464, 1360838655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360838656, 1360842751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360842752, 1360846847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360846848, 1360850943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360850944, 1360855039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360855040, 1360855841, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360855842, 1360855851, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360855852, 1360856075, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360856076, 1360856079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360856080, 1360856109, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360856110, 1360856113, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360856114, 1360856133, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360856134, 1360856144, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360856145, 1360859135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360859136, 1360863231, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360863232, 1360867327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360867328, 1360879615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360879616, 1360883711, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360883712, 1360887807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360887808, 1360890367, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360890368, 1360890623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360890624, 1360891903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360891904, 1360892287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360892288, 1360895999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360896000, 1360900095, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360900096, 1360916479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360916480, 1360920575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360920576, 1360932863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360932864, 1360936959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360936960, 1360941055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360941056, 1360945151, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360945152, 1360949247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360949248, 1360953343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360953344, 1360957439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360957440, 1360961535, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360961536, 1360965631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360965632, 1360977919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360977920, 1360987535, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360987536, 1360987647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360987648, 1360987935, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360987936, 1360987983, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360987984, 1360987999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988000, 1360988007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988008, 1360988031, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988032, 1360988039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988040, 1360988047, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988048, 1360988055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988056, 1360988063, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988064, 1360988079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988080, 1360988159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988160, 1360988415, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988416, 1360988927, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360988928, 1360989439, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360989440, 1360989695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360989696, 1360990079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360990080, 1360990207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360990208, 1360990975, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360990976, 1360991231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360991232, 1360991999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360992000, 1360992255, N'SK', N'Slovakia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360992256, 1360993023, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360993024, 1360994047, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360994048, 1360994303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360994304, 1360998399, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1360998400, 1361002495, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361002496, 1361006591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361006592, 1361010687, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361010688, 1361018879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361018880, 1361022975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361022976, 1361027071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361027072, 1361035263, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035264, 1361035527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035528, 1361035535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035536, 1361035547, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035548, 1361035551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035552, 1361035559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035560, 1361035563, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035564, 1361035567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035568, 1361035583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035584, 1361035591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035592, 1361035599, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035600, 1361035607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035608, 1361035615, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035616, 1361035623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035624, 1361035627, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035628, 1361035639, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035640, 1361035643, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035644, 1361035647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035648, 1361035651, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035652, 1361035655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035656, 1361035667, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035668, 1361035671, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035672, 1361035679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035680, 1361035683, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035684, 1361035687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035688, 1361035691, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035692, 1361035695, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035696, 1361035711, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035712, 1361035715, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035716, 1361035719, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035720, 1361035723, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035724, 1361035727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035728, 1361035735, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035736, 1361035743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035744, 1361035751, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035752, 1361035759, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035760, 1361035763, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035764, 1361035767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035768, 1361035779, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035780, 1361035783, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035784, 1361035787, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035788, 1361035791, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035792, 1361035799, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035800, 1361035807, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035808, 1361035811, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035812, 1361035815, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035816, 1361035823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035824, 1361035831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035832, 1361035839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035840, 1361035847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035848, 1361035855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035856, 1361035863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035864, 1361035871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035872, 1361035879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035880, 1361035887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035888, 1361035895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035896, 1361035903, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035904, 1361035907, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035908, 1361035911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035912, 1361035915, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035916, 1361035919, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035920, 1361035923, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035924, 1361035927, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035928, 1361035931, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035932, 1361035935, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035936, 1361035939, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035940, 1361035943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035944, 1361035951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035952, 1361035955, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035956, 1361035959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035960, 1361035963, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035964, 1361035967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035968, 1361035975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035976, 1361035983, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035984, 1361035991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035992, 1361035995, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361035996, 1361035999, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036000, 1361036015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036016, 1361036019, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036020, 1361036027, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036028, 1361036031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036032, 1361036039, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036040, 1361036055, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036056, 1361036063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036064, 1361036071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036072, 1361036079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036080, 1361036087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036088, 1361036095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036096, 1361036103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036104, 1361036111, N'NO', N'Norway') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036112, 1361036119, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036120, 1361036127, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036128, 1361036135, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036136, 1361036143, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036144, 1361036151, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036152, 1361036167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036168, 1361036175, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036176, 1361036191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036192, 1361036199, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036200, 1361036215, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036216, 1361036223, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036224, 1361036231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036232, 1361036239, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036240, 1361036243, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036244, 1361036247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036248, 1361036251, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036252, 1361036255, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036256, 1361036259, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036260, 1361036263, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036264, 1361036271, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036272, 1361036287, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036288, 1361036291, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036292, 1361036295, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036296, 1361036299, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036300, 1361036303, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036304, 1361036307, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036308, 1361036311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036312, 1361036315, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036316, 1361036327, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036328, 1361036335, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036336, 1361036351, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036352, 1361036359, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036360, 1361036367, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036368, 1361036371, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036372, 1361036375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036376, 1361036379, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036380, 1361036383, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036384, 1361036387, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036388, 1361036391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036392, 1361036395, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036396, 1361036403, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036404, 1361036407, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036408, 1361036411, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036412, 1361036415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036416, 1361036419, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036420, 1361036423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036424, 1361036431, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036432, 1361036435, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036436, 1361036455, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036456, 1361036459, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036460, 1361036463, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036464, 1361036471, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036472, 1361036475, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036476, 1361036479, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036480, 1361036487, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036488, 1361036491, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036492, 1361036495, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036496, 1361036507, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036508, 1361036511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036512, 1361036515, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036516, 1361036523, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036524, 1361036527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036528, 1361036531, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036532, 1361036543, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036544, 1361036551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036552, 1361036559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036560, 1361036567, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036568, 1361036579, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036580, 1361036583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036584, 1361036591, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036592, 1361036595, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036596, 1361036599, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036600, 1361036603, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036604, 1361036607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036608, 1361036611, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036612, 1361036623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036624, 1361036631, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036632, 1361036635, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036636, 1361036639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036640, 1361036663, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036664, 1361036667, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036668, 1361036671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036672, 1361036675, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036676, 1361036679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036680, 1361036719, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036720, 1361036727, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036728, 1361036815, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036816, 1361036819, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036820, 1361036823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036824, 1361036827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036828, 1361036831, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036832, 1361036847, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036848, 1361036851, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036852, 1361036863, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036864, 1361036871, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036872, 1361036887, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036888, 1361036891, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036892, 1361036895, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036896, 1361036899, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036900, 1361036919, N'IQ', N'Iraq') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036920, 1361036923, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036924, 1361036927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036928, 1361036935, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036936, 1361036951, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036952, 1361036959, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036960, 1361036971, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036972, 1361036979, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036980, 1361036983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361036984, 1361036999, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037000, 1361037007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037008, 1361037015, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037016, 1361037023, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037024, 1361037055, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037056, 1361037059, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037060, 1361037063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037064, 1361037067, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037068, 1361037071, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037072, 1361037075, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037076, 1361037079, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037080, 1361037083, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037084, 1361037087, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037088, 1361037091, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037092, 1361037119, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037120, 1361037127, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037128, 1361037135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037136, 1361037159, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037160, 1361037167, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037168, 1361037179, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037180, 1361037183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037184, 1361037191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037192, 1361037199, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037200, 1361037203, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037204, 1361037207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037208, 1361037215, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037216, 1361037223, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037224, 1361037231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037232, 1361037271, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037272, 1361037279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037280, 1361037295, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037296, 1361037311, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037312, 1361037319, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037320, 1361037327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037328, 1361037339, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037340, 1361037343, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037344, 1361037359, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037360, 1361037363, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037364, 1361037367, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037368, 1361037387, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037388, 1361037391, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037392, 1361037395, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037396, 1361037407, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037408, 1361037415, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037416, 1361037443, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037444, 1361037447, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037448, 1361037455, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037456, 1361037463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037464, 1361037471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037472, 1361037487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037488, 1361037495, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037496, 1361037503, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037504, 1361037515, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037516, 1361037519, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037520, 1361037527, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037528, 1361037551, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037552, 1361037559, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037560, 1361037567, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037568, 1361037575, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037576, 1361037583, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037584, 1361037587, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037588, 1361037591, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037592, 1361037599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037600, 1361037611, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037612, 1361037615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037616, 1361037619, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037620, 1361037631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037632, 1361037639, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037640, 1361037667, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037668, 1361037671, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037672, 1361037683, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037684, 1361037687, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037688, 1361037695, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037696, 1361037703, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037704, 1361037771, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037772, 1361037775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037776, 1361037783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037784, 1361037823, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037824, 1361037827, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037828, 1361037835, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037836, 1361037839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037840, 1361037847, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037848, 1361037851, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037852, 1361037855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037856, 1361037871, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037872, 1361037875, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037876, 1361037879, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037880, 1361037883, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037884, 1361037891, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037892, 1361037895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037896, 1361037911, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037912, 1361037919, N'TR', N'Turkey') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361037920, 1361038007, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038008, 1361038015, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038016, 1361038023, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038024, 1361038031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038032, 1361038039, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038040, 1361038047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038048, 1361038095, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038096, 1361038103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038104, 1361038127, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038128, 1361038135, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038136, 1361038143, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038144, 1361038147, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038148, 1361038159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038160, 1361038163, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038164, 1361038175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038176, 1361038179, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038180, 1361038191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038192, 1361038199, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038200, 1361038211, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038212, 1361038215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038216, 1361038223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038224, 1361038231, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038232, 1361038239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038240, 1361038247, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038248, 1361038271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038272, 1361038275, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038276, 1361038279, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038280, 1361038287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038288, 1361038295, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038296, 1361038303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038304, 1361038335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361038336, 1361039359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361039360, 1361043455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361043456, 1361051647, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1361051648, 1362100223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362100224, 1362395135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362395136, 1362395183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362395184, 1362395391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362395392, 1362395519, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362395520, 1362395647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362395648, 1362396159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362396160, 1362396415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362396416, 1362396799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362396800, 1362396927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362396928, 1362397183, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362397184, 1362399231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362399232, 1362399263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362399264, 1362399487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362399488, 1362400767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362400768, 1362403327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362403328, 1362403583, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362403584, 1362405887, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362405888, 1362406143, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362406144, 1362407167, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362407168, 1362411519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362411520, 1362413273, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362413274, 1362413567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362413568, 1362413587, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362413588, 1362413823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362413824, 1362414847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362414848, 1362414975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362414976, 1362415359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362415360, 1362415487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362415488, 1362415615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362415616, 1362417663, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362417664, 1362419711, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362419712, 1362423039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362423040, 1362423167, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362423168, 1362423263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362423264, 1362423295, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362423296, 1362423807, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362423808, 1362425855, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362425856, 1362426623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362426624, 1362426879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362426880, 1362427903, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362427904, 1362755583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362755584, 1362886409, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362886410, 1362886413, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362886414, 1362886417, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362886418, 1362886419, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362886420, 1362886655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1362886656, 1363017727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1363017728, 1363148799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1363148800, 1363410943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1363410944, 1363673087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1363673088, 1363935231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1363935232, 1364053511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364053512, 1364053519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364053520, 1364197375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364197376, 1364262911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364262912, 1364328447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364328448, 1364459519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364459520, 1364525055, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364525056, 1364528639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364528640, 1364528895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364528896, 1364533247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364533248, 1364537343, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364537344, 1364721663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364721664, 1364725759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364725760, 1364733951, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364733952, 1364738047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364738048, 1364739071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364739072, 1364739583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364739584, 1364740095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364740096, 1364742143, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364742144, 1364746239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364746240, 1364749311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364749312, 1364749839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364749840, 1364749847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364749848, 1364749855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364749856, 1364749871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364749872, 1364750079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364750080, 1364750335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364750336, 1364754431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364754432, 1364758527, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364758528, 1364762623, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364762624, 1364766719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364766720, 1364770815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364770816, 1364774911, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364774912, 1364779007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364779008, 1364787199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364787200, 1364795391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364795392, 1364799487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364799488, 1364803583, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364803584, 1364811775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364811776, 1364819967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364819968, 1364824063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364824064, 1364828159, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364828160, 1364829439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364829440, 1364829487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364829488, 1364829503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364829504, 1364829527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364829528, 1364832255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364832256, 1364836351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364836352, 1364840447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364840448, 1364844543, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364844544, 1364852735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364852736, 1364856831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364856832, 1364860927, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364860928, 1364865023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364865024, 1364869119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364869120, 1364873215, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364873216, 1364877311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364877312, 1364881407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364881408, 1364885503, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364885504, 1364889599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364889600, 1364893695, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364893696, 1364897791, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364897792, 1364901887, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364901888, 1364905983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364905984, 1364910079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364910080, 1364914175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364914176, 1364918271, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364918272, 1364922367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364922368, 1364926463, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364926464, 1364934655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364934656, 1364938751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364938752, 1364942847, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364942848, 1364946943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364946944, 1364950783, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364950784, 1364951039, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364951040, 1364959231, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364959232, 1364963327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364963328, 1364967423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364967424, 1364971519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364971520, 1364975615, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364975616, 1364979711, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364979712, 1364983807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364983808, 1364991999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364992000, 1364996095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1364996096, 1365000191, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365000192, 1365004287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365004288, 1365008383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365008384, 1365012479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365012480, 1365016575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365016576, 1365020671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365020672, 1365024767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365024768, 1365027839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365027840, 1365027871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365027872, 1365028863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365028864, 1365032959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365032960, 1365041151, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365041152, 1365042175, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365042176, 1365044479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365044480, 1365045247, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365045248, 1365049343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365049344, 1365057535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365057536, 1365061631, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365061632, 1365065727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365065728, 1365073919, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365073920, 1365078015, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365078016, 1365082111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365082112, 1365090303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365090304, 1365094399, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365094400, 1365098495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365098496, 1365102591, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365102592, 1365106687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365106688, 1365110783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365110784, 1365114879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365114880, 1365118975, N'BA', N'Bosnia and Herzegovina') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365118976, 1365127167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365127168, 1365131263, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365131264, 1365139455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365139456, 1365147647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365147648, 1365155839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365155840, 1365164031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365164032, 1365168127, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365168128, 1365172223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365172224, 1365176319, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365176320, 1365180415, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365180416, 1365184511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365184512, 1365192703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365192704, 1365196799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365196800, 1365200895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365200896, 1365204991, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365204992, 1365209087, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365209088, 1365213183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365213184, 1365221375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365221376, 1365225471, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365225472, 1365229567, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365229568, 1365233663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365233664, 1365237759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365237760, 1365241855, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365241856, 1365245951, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1365245952, 1366294527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1366294528, 1367343103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1367343104, 1369440255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369440256, 1369473023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369473024, 1369505791, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369505792, 1369538559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369538560, 1369554943, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369554944, 1369559039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369559040, 1369563135, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369563136, 1369567231, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369567232, 1369571327, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369702400, 1369833471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369833472, 1369964543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369964544, 1369997311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1369997312, 1370030079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370030080, 1370062847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370062848, 1370087423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370087424, 1370091519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370091520, 1370095615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370095616, 1370128383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370128384, 1370161151, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370161152, 1370187775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370187776, 1370188031, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370188032, 1370193919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370193920, 1370226687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370226688, 1370259455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370259456, 1370292223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370292224, 1370299903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370299904, 1370300159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370300160, 1370324991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370324992, 1370357759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370357760, 1370390527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370390528, 1370423295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370423296, 1370423383, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370423384, 1370423391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370423392, 1370424703, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370424704, 1370424831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370424832, 1370427039, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370427040, 1370427055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370427056, 1370427375, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370427376, 1370427391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370427392, 1370428159, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370428160, 1370428927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370428928, 1370428999, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370429000, 1370431743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370431744, 1370431923, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370431924, 1370431927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370431928, 1370431967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370431968, 1370456063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370456064, 1370488831, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370488832, 1370505855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370505856, 1370505871, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370505872, 1370507263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370507264, 1370507519, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370507520, 1370508895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370508896, 1370508911, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370508912, 1370555887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370555888, 1370555903, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370555904, 1370619903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370619904, 1370750975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370750976, 1370767359, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370767360, 1370771455, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370771456, 1370772479, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370772480, 1370772991, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370772992, 1370882047, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1370882048, 1371013119, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371013120, 1371078655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371078656, 1371144191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371144192, 1371201535, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371201536, 1371205631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371205632, 1371209727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371209728, 1371275263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371275264, 1371340799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371340800, 1371406335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371406336, 1371471871, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371471872, 1371537407, N'NO', N'Norway') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371537408, 1371602943, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371602944, 1371668479, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371668480, 1371734015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371734016, 1371799551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371799552, 1371834367, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371834368, 1371836415, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371836416, 1371865087, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371865088, 1371930623, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371930624, 1371996159, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371996160, 1371996863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371996864, 1371996927, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371996928, 1371997183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371997184, 1371997439, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371997440, 1371998207, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371998208, 1371999231, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1371999232, 1372000255, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372000256, 1372004351, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372004352, 1372004607, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372004608, 1372004863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372004864, 1372005375, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372005376, 1372007167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372007168, 1372007455, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372007456, 1372007679, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372007680, 1372007935, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372007936, 1372008127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372008128, 1372008191, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372008192, 1372008607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372008608, 1372008639, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372008640, 1372008703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372008704, 1372008831, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372008832, 1372009599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009600, 1372009631, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009632, 1372009727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009728, 1372009759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009760, 1372009791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009792, 1372009823, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009824, 1372009887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009888, 1372009903, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009904, 1372009983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372009984, 1372010239, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372010240, 1372010751, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372010752, 1372011007, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372011008, 1372011103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372011104, 1372011167, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372011168, 1372011967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372011968, 1372012031, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372012032, 1372012095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372012096, 1372012159, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372012160, 1372012543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372012544, 1372014591, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372014592, 1372015871, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372015872, 1372016639, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372016640, 1372016831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372016832, 1372016847, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372016848, 1372017151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372017152, 1372018687, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372018688, 1372019199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372019200, 1372019455, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372019456, 1372020223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372020224, 1372020735, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372020736, 1372022783, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372022784, 1372023807, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372023808, 1372024831, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372024832, 1372025087, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372025088, 1372025343, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372025344, 1372025599, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372025600, 1372025663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372025664, 1372025695, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372025696, 1372025727, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372025728, 1372025855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372025856, 1372026367, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372026368, 1372026879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372026880, 1372027903, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372027904, 1372028927, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372028928, 1372029439, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372029440, 1372029695, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372029696, 1372029951, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372029952, 1372030975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372030976, 1372031999, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372032000, 1372032511, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372032512, 1372033023, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372033024, 1372033183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372033184, 1372033215, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372033216, 1372033471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372033472, 1372033503, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372033504, 1372035071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372035072, 1372037119, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372037120, 1372037887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372037888, 1372038143, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372038144, 1372038399, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372038400, 1372038655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372038656, 1372039167, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372039168, 1372040191, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372040192, 1372040703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372040704, 1372041215, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372041216, 1372041471, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372041472, 1372041727, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372041728, 1372043263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372043264, 1372043519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372043520, 1372043775, N'NG', N'Nigeria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372043776, 1372044415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372044416, 1372044447, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372044448, 1372044799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372044800, 1372044863, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372044864, 1372045055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045056, 1372045087, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045088, 1372045119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045120, 1372045151, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045152, 1372045215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045216, 1372045247, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045248, 1372045567, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045568, 1372045823, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372045824, 1372046559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372046560, 1372046591, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372046592, 1372047359, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372047360, 1372047615, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372047616, 1372049663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372049664, 1372050175, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372050176, 1372060159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372060160, 1372061695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372061696, 1372069887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372069888, 1372073983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372073984, 1372078079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372078080, 1372082175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372082176, 1372086271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372086272, 1372090367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372090368, 1372094463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372094464, 1372098559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372098560, 1372102655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372102656, 1372106751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372106752, 1372110847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372110848, 1372114943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372114944, 1372119039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372119040, 1372123135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372123136, 1372127231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372127232, 1372131327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372131328, 1372135423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372135424, 1372138255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372138256, 1372138263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372138264, 1372139519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372139520, 1372143615, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372143616, 1372147711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372147712, 1372151807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372151808, 1372159999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372160000, 1372164095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372164096, 1372168191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372168192, 1372172287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372172288, 1372176383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372176384, 1372180479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372180480, 1372184575, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372184576, 1372188671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372188672, 1372192767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372192768, 1372323839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372323840, 1372585983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372585984, 1372610047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372610048, 1372610303, N'VA', N'Holy See (Vatican City State)') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372610304, 1372618751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372618752, 1372651519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372651520, 1372684287, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372684288, 1372685631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372685632, 1372685663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372685664, 1372685951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372685952, 1372686079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372686080, 1372686335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372686336, 1372687359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372687360, 1372687711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372687712, 1372687735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372687736, 1372691455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372691456, 1372691711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372691712, 1372694527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372694528, 1372694655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372694656, 1372694815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372694816, 1372694831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372694832, 1372695551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372695552, 1372695807, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372695808, 1372696063, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372696064, 1372697239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372697240, 1372697247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372697248, 1372700159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372700160, 1372700415, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372700416, 1372700671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372700672, 1372702735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372702736, 1372702847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372702848, 1372702991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372702992, 1372703231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372703232, 1372703263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372703264, 1372703271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372703272, 1372703323, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372703324, 1372703327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372703328, 1372703407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372703408, 1372703423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372703424, 1372713319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372713320, 1372713471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372713472, 1372714239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372714240, 1372714495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372714496, 1372717055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372717056, 1372749823, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372749824, 1372782591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372782592, 1372815359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372815360, 1372848127, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1372848128, 1373110271, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373110272, 1373175807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373175808, 1373241343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373241344, 1373306879, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373306880, 1373372415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373372416, 1373437951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373437952, 1373503487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373503488, 1373519871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373519872, 1373520895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373520896, 1373569023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373569024, 1373634559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1373634560, 1374683135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1374683136, 1375088639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1375088640, 1375089663, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1375089664, 1375207423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1375207424, 1375731711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1375731712, 1375798335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1375798336, 1375798351, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1375798352, 1378877439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1378877440, 1379926015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1379926016, 1380188159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380188160, 1380450303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380450304, 1380712447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380712448, 1380802559, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380802560, 1380804607, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380804608, 1380933631, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380933632, 1380937727, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380937728, 1380974591, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1380974592, 1381105663, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1381105664, 1381236735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1381236736, 1381367807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1381367808, 1381498879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1381498880, 1381761023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1381761024, 1382023167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382023168, 1382024959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382024960, 1382025215, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382025216, 1382039551, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382039552, 1382055423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382055424, 1382055935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382055936, 1382072319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382072320, 1382088703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382088704, 1382091375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382091376, 1382091391, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382091392, 1382091407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382091408, 1382091775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382091776, 1382092031, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382092032, 1382105087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382105088, 1382137855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382137856, 1382154239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382154240, 1382170623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382170624, 1382187007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382187008, 1382203391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382203392, 1382211583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382211584, 1382211711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382211712, 1382211839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382211840, 1382212095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212096, 1382212111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212112, 1382212127, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212128, 1382212143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212144, 1382212159, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212160, 1382212175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212176, 1382212191, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212192, 1382212207, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212208, 1382212223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212224, 1382212239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212240, 1382212287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212288, 1382212479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212480, 1382212607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212608, 1382212863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382212864, 1382213119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382213120, 1382213311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382213312, 1382214079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382214080, 1382214111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382214112, 1382214143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382214144, 1382214271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382214272, 1382214335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382214336, 1382214399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382214400, 1382214655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382214656, 1382215167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382215168, 1382216831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382216832, 1382216895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382216896, 1382216959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382216960, 1382217215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382217216, 1382218623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382218624, 1382218751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382218752, 1382218815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382218816, 1382218911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382218912, 1382218959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382218960, 1382218991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382218992, 1382219775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382219776, 1382252543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382252544, 1382268927, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382268928, 1382285311, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382285312, 1382301695, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382301696, 1382318079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382318080, 1382334463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382334464, 1382350847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382350848, 1382367231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382367232, 1382383615, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382383616, 1382399999, N'DZ', N'Algeria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382400000, 1382416383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382416384, 1382432767, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382432768, 1382449151, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382449152, 1382465535, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382465536, 1382481919, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382481920, 1382498303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382498304, 1382514687, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382514688, 1382531071, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382531072, 1382547455, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382547456, 1382809599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1382809600, 1383071743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383071744, 1383073031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073032, 1383073039, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073040, 1383073119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073120, 1383073135, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073136, 1383073279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073280, 1383073535, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073536, 1383073567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073568, 1383073663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073664, 1383073727, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383073728, 1383079935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383079936, 1383088127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383088128, 1383096319, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383096320, 1383103271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383103272, 1383103279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383103280, 1383103471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383103472, 1383103487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383103488, 1383104015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383104016, 1383104023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383104024, 1383104255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383104256, 1383104511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383104512, 1383112703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383112704, 1383120895, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383120896, 1383129087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383129088, 1383137279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383137280, 1383145471, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383145472, 1383153663, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383153664, 1383161855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383161856, 1383170047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383170048, 1383171743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383171744, 1383171775, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383171776, 1383172559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383172560, 1383172567, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383172568, 1383186431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383186432, 1383194623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383194624, 1383202815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383202816, 1383211007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383211008, 1383219199, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383219200, 1383222015, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383222016, 1383222527, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383222528, 1383222783, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383222784, 1383223039, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383223040, 1383227391, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383227392, 1383239295, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383239296, 1383239423, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383239424, 1383243775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383243776, 1383251967, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383251968, 1383260159, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383260160, 1383268351, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383268352, 1383273983, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383273984, 1383276543, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383276544, 1383284735, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383284736, 1383292927, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383292928, 1383301119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383301120, 1383309311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383309312, 1383317503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383317504, 1383321599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383321600, 1383325695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383325696, 1383333887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383333888, 1383350271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383350272, 1383358463, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383358464, 1383366655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383366656, 1383368703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383368704, 1383368831, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383368832, 1383368847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383368848, 1383369087, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383369088, 1383369119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383369120, 1383369231, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383369232, 1383369247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383369248, 1383369535, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383369536, 1383369567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383369568, 1383369727, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383369728, 1383370751, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383370752, 1383371775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383371776, 1383374335, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383374336, 1383374847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383374848, 1383383039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383383040, 1383391231, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383391232, 1383399423, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383399424, 1383407615, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383407616, 1383415807, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383415808, 1383423999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383424000, 1383432191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383432192, 1383440383, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383440384, 1383448575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383448576, 1383456767, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383456768, 1383464959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383464960, 1383473151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383473152, 1383481343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383481344, 1383481599, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383481600, 1383481615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383481616, 1383481663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383481664, 1383481695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383481696, 1383482367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383482368, 1383482879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383482880, 1383483375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383483376, 1383483383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383483384, 1383497727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383497728, 1383499775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383499776, 1383501055, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383501056, 1383505919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383505920, 1383514111, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383514112, 1383522303, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383522304, 1383530495, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383530496, 1383538687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383538688, 1383546879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383546880, 1383555071, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383555072, 1383563263, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383563264, 1383571455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383571456, 1383579647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383579648, 1383583231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383583232, 1383583263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383583264, 1383587839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383587840, 1383587967, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383587968, 1383588415, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383588416, 1383588479, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383588480, 1383588863, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383588864, 1383589375, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383589376, 1383590911, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383590912, 1383591935, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383591936, 1383596031, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1383596032, 1384120319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384120320, 1384153087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384153088, 1384185855, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384185856, 1384190975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384190976, 1384191231, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384191232, 1384194303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384194304, 1384194559, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384194560, 1384194815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384194816, 1384218623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384218624, 1384251391, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384251392, 1384267775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384267776, 1384284159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384284160, 1384316927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384316928, 1384349695, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384349696, 1384382463, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384382464, 1384415231, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384415232, 1384415743, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384415744, 1384418047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384418048, 1384418303, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384418304, 1384419071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384419072, 1384419327, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384419328, 1384435711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384435712, 1384447743, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384447744, 1384447807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384447808, 1384447999, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384448000, 1384480767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384480768, 1384513535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384513536, 1384546303, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384546304, 1384579071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384579072, 1384611839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384611840, 1384644607, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384644608, 1384660991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384660992, 1384677375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384677376, 1384693759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384693760, 1384710143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384710144, 1384726527, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384726528, 1384742911, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384742912, 1384759295, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384759296, 1384775679, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384775680, 1384792063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384792064, 1384792623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384792624, 1384792639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384792640, 1384793791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384793792, 1384793823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384793824, 1384794879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384794880, 1384795135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384795136, 1384795263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384795264, 1384795327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384795328, 1384795647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384795648, 1384795775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384795776, 1384808447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384808448, 1384808959, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384808960, 1384808967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384808968, 1384808975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384808976, 1384808991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384808992, 1384809007, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809008, 1384809015, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809016, 1384809023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809024, 1384809039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809040, 1384809055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809056, 1384809063, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809064, 1384809071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809072, 1384809087, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809088, 1384809103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384809104, 1384811007, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384811008, 1384811519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384811520, 1384811647, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384811648, 1384812799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384812800, 1384813311, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384813312, 1384816639, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384816640, 1384818463, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384818464, 1384818495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384818496, 1384824831, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384824832, 1384841215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384841216, 1384857599, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384857600, 1384873983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384873984, 1384890367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384890368, 1384923135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384923136, 1384939519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384939520, 1384955903, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384955904, 1384972287, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384972288, 1384973623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384973624, 1384973631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384973632, 1384988671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1384988672, 1385005055, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385005056, 1385021439, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385021440, 1385037823, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385037824, 1385054207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385054208, 1385070591, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385070592, 1385086975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385086976, 1385103359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385103360, 1385119743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385119744, 1385136127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385136128, 1385152511, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385152512, 1385168895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385168896, 1385177087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385177088, 1385185279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385185280, 1385193471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385193472, 1385201663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385201664, 1385209855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385209856, 1385218047, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385218048, 1385226239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385226240, 1385234431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385234432, 1385242623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385242624, 1385250815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385250816, 1385259007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385259008, 1385267199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385267200, 1385275391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385275392, 1385283583, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385283584, 1385291775, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385291776, 1385299967, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385299968, 1385308159, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385308160, 1385310207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385310208, 1385311231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385311232, 1385314303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385314304, 1385315327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385315328, 1385315839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385315840, 1385316095, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385316096, 1385316351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385316352, 1385324543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385324544, 1385332735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385332736, 1385340927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385340928, 1385349119, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385349120, 1385357311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385357312, 1385365503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385365504, 1385373695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385373696, 1385381887, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385381888, 1385398271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385398272, 1385399015, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385399016, 1385399023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385399024, 1385406463, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385406464, 1385414655, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385414656, 1385422847, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385422848, 1385431039, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385431040, 1385439231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385439232, 1385447423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385447424, 1385455615, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385455616, 1385463807, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385463808, 1385480191, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385480192, 1385488383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385488384, 1385496575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385496576, 1385504767, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385504768, 1385512959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385512960, 1385521151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385521152, 1385529343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385529344, 1385537535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385537536, 1385545727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385545728, 1385553919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385553920, 1385554515, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554516, 1385554519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554520, 1385554527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554528, 1385554531, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554532, 1385554719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554720, 1385554735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554736, 1385554783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554784, 1385554791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385554792, 1385557503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385557504, 1385557759, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385557760, 1385562111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385562112, 1385563135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385563136, 1385563903, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385563904, 1385564095, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385564096, 1385564111, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385564112, 1385564127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385564128, 1385564383, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385564384, 1385564415, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385564416, 1385564615, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385564616, 1385565183, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385565184, 1385565439, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385565440, 1385566207, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385566208, 1385566367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385566368, 1385566431, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385566432, 1385566463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385566464, 1385566927, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385566928, 1385566935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385566936, 1385566943, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385566944, 1385567005, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567006, 1385567007, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567008, 1385567071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567072, 1385567087, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567088, 1385567151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567152, 1385567159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567160, 1385567227, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567228, 1385567231, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385567232, 1385568255, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385568256, 1385569407, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385569408, 1385569439, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385569440, 1385569487, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385569488, 1385569503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385569504, 1385569511, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385569512, 1385570287, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385570288, 1385570303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385570304, 1385578495, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385578496, 1385586687, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385586688, 1385594879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385594880, 1385603071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385603072, 1385611263, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385611264, 1385619455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385619456, 1385627647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385627648, 1385635839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385635840, 1385644031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385644032, 1385652223, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385652224, 1385660415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385660416, 1385668607, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385668608, 1385676799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385676800, 1385684991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385684992, 1385824255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385824256, 1385955327, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1385955328, 1386086399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386086400, 1386217471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386217472, 1386283007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386283008, 1386348543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386348544, 1386414079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386414080, 1386479615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386479616, 1386545151, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386545152, 1386577919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386577920, 1386598399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386598400, 1386602495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386602496, 1386610687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386610688, 1386676223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386676224, 1386741759, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1386741760, 1387134975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387134976, 1387155455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387155456, 1387167743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387167744, 1387188223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387188224, 1387249663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387249664, 1387250687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387250688, 1387331583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387331584, 1387397119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387397120, 1387462655, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387462656, 1387528191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387528192, 1387593727, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387593728, 1387659263, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387659264, 1387790335, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1387790336, 1388314623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388314624, 1388322815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388322816, 1388331007, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388331008, 1388339199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388339200, 1388347391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388347392, 1388363775, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388363776, 1388371967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388371968, 1388380159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388380160, 1388388351, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388388352, 1388388607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388388608, 1388388623, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388388624, 1388396543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388396544, 1388404735, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388404736, 1388412927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388412928, 1388421119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388421120, 1388429311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388429312, 1388437503, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388437504, 1388445695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388445696, 1388453887, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388453888, 1388462079, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388462080, 1388470271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388470272, 1388478463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388478464, 1388486655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388486656, 1388494847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388494848, 1388503039, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388503040, 1388519423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388519424, 1388527615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388527616, 1388535807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388535808, 1388543999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388544000, 1388552191, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388552192, 1388560383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388560384, 1388568575, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388568576, 1388576767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388576768, 1388584959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388584960, 1388587495, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388587496, 1388587503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388587504, 1388590079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388590080, 1388590127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388590128, 1388590591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388590592, 1388590719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388590720, 1388591103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388591104, 1388591615, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388591616, 1388591647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388591648, 1388591663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388591664, 1388593151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388593152, 1388601343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388601344, 1388609535, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388609536, 1388617727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388617728, 1388625919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388625920, 1388634111, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388634112, 1388642303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388642304, 1388650495, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388650496, 1388658687, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388658688, 1388666879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388666880, 1388675071, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388675072, 1388677119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388677120, 1388679167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388679168, 1388679423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388679424, 1388679455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388679456, 1388683263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388683264, 1388691455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388691456, 1388699647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388699648, 1388707839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388707840, 1388709887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388709888, 1388711935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388711936, 1388712447, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388712448, 1388713215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388713216, 1388713727, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388713728, 1388713983, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388713984, 1388714751, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388714752, 1388715007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388715008, 1388715071, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388715072, 1388715263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388715264, 1388715519, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388715520, 1388716031, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388716032, 1388724223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388724224, 1388728640, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728641, 1388728673, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728674, 1388728734, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728735, 1388728762, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728763, 1388728783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728784, 1388728799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728800, 1388728815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728816, 1388728820, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388728821, 1388729144, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729145, 1388729160, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729161, 1388729208, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729209, 1388729240, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729241, 1388729280, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729281, 1388729296, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729297, 1388729304, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729305, 1388729320, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729321, 1388729856, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729857, 1388729888, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388729889, 1388731136, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388731137, 1388731391, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388731392, 1388732415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388732416, 1388740607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388740608, 1388748799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388748800, 1388756991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388756992, 1388765183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388765184, 1388773375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388773376, 1388781567, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388781568, 1388789759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388789760, 1388797951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388797952, 1388806143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388806144, 1388814335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388814336, 1388821247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388821248, 1388822527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388822528, 1388830719, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388830720, 1388838911, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388838912, 1388871679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388871680, 1388904447, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388904448, 1388937215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388937216, 1388969983, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1388969984, 1389002751, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389002752, 1389035519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389035520, 1389068287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389068288, 1389101055, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389101056, 1389133823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389133824, 1389166591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389166592, 1389199359, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389199360, 1389199615, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389199616, 1389201023, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201024, 1389201087, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201088, 1389201151, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201152, 1389201279, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201280, 1389201536, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201537, 1389201791, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201792, 1389201919, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201920, 1389201983, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389201984, 1389202191, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202192, 1389202207, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202208, 1389202255, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202256, 1389202271, N'LB', N'Lebanon') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202272, 1389202303, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202304, 1389202319, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202320, 1389202367, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202368, 1389202383, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202384, 1389202399, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202400, 1389202415, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202416, 1389202447, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202448, 1389202455, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389202456, 1389203711, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389203712, 1389203967, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389203968, 1389204351, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389204352, 1389204543, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389204544, 1389205503, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389205504, 1389206271, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389206272, 1389206527, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389206528, 1389207359, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389207360, 1389207391, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389207392, 1389208847, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389208848, 1389208863, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389208864, 1389209855, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389209856, 1389210111, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389210112, 1389212671, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389212672, 1389212927, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389212928, 1389215231, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389215232, 1389217791, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389217792, 1389218303, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389218304, 1389219839, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389219840, 1389221119, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389221120, 1389221631, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389221632, 1389222143, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389222144, 1389222567, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389222568, 1389222575, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389222576, 1389222799, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389222800, 1389222847, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389222848, 1389222911, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389222912, 1389223167, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389223168, 1389223679, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389223680, 1389224191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389224192, 1389225215, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389225216, 1389225471, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389225472, 1389225983, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389225984, 1389226239, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389226240, 1389229055, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389229056, 1389229311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389229312, 1389232063, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389232064, 1389232095, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389232096, 1389232127, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389232128, 1389264895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389264896, 1389264911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389264912, 1389264927, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389264928, 1389264943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389264944, 1389264959, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389264960, 1389265039, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265040, 1389265055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265056, 1389265071, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265072, 1389265079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265080, 1389265087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265088, 1389265119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265120, 1389265127, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265128, 1389265135, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265136, 1389265151, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265152, 1389265167, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265168, 1389265183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265184, 1389265199, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265200, 1389265231, N'ET', N'Ethiopia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265232, 1389265239, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265240, 1389265263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265264, 1389265279, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265280, 1389265407, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265408, 1389265535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265536, 1389265551, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265552, 1389265559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265560, 1389265567, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265568, 1389265591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265592, 1389265599, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265600, 1389265663, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265664, 1389265843, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389265844, 1389266687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389266688, 1389266695, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389266696, 1389266943, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389266944, 1389267199, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389267200, 1389267455, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389267456, 1389267967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389267968, 1389268096, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389268097, 1389268223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389268224, 1389268351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389268352, 1389268479, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389268480, 1389268607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389268608, 1389268735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389268736, 1389269247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389269248, 1389269376, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389269377, 1389269759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389269760, 1389269887, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389269888, 1389270015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389270016, 1389270271, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389270272, 1389272063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272064, 1389272191, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272192, 1389272367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272368, 1389272383, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272384, 1389272447, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272448, 1389272575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272576, 1389272831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272832, 1389272959, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389272960, 1389273087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389273088, 1389273343, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389273344, 1389273599, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389273600, 1389273855, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389273856, 1389274111, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274112, 1389274367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274368, 1389274399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274400, 1389274431, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274432, 1389274463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274464, 1389274623, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274624, 1389274751, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274752, 1389274815, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274816, 1389274879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389274880, 1389275135, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389275136, 1389277183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389277184, 1389278207, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389278208, 1389278719, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389278720, 1389278847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389278848, 1389278975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389278976, 1389279103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389279104, 1389279231, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389279232, 1389279487, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389279488, 1389279743, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389279744, 1389279872, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389279873, 1389279999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389280000, 1389280511, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389280512, 1389280767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389280768, 1389281023, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389281024, 1389281279, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389281280, 1389281791, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389281792, 1389282303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389282304, 1389282559, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389282560, 1389282815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389282816, 1389282943, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389282944, 1389283327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389283328, 1389283583, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389283584, 1389283711, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389283712, 1389283839, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389283840, 1389284351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389284352, 1389286399, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389286400, 1389286527, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389286528, 1389286655, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389286656, 1389287167, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389287168, 1389287423, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389287424, 1389288447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389288448, 1389289471, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389289472, 1389290495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389290496, 1389291775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389291776, 1389292031, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389292032, 1389292799, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389292800, 1389293055, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389293056, 1389293311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389293312, 1389293567, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389293568, 1389296639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389296640, 1389297151, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389297152, 1389297663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389297664, 1389330431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389330432, 1389363199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389363200, 1389370711, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389370712, 1389370719, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389370720, 1389379583, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389379584, 1389395967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389395968, 1389412351, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389412352, 1389428735, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389428736, 1389445119, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389445120, 1389461503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389461504, 1389477887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389477888, 1389494271, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389494272, 1389510655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389510656, 1389527039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389527040, 1389543423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389543424, 1389559039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389559040, 1389559103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389559104, 1389561367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389561368, 1389561375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389561376, 1389562879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389562880, 1389563135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389563136, 1389576191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389576192, 1389592575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389592576, 1389592831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389592832, 1389593087, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389593088, 1389608959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389608960, 1389625343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389625344, 1389641727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389641728, 1389658111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389658112, 1389674495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389674496, 1389690879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389690880, 1389707263, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389707264, 1389723647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389723648, 1389756415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389756416, 1389772799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389772800, 1389789183, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389789184, 1389805567, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389805568, 1389821951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389821952, 1389838335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389838336, 1389854719, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389854720, 1389871103, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389871104, 1389887487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389887488, 1389953023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1389953024, 1390018559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390018560, 1390084095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390084096, 1390149631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390149632, 1390215167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390215168, 1390280703, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390280704, 1390346239, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390346240, 1390395391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390395392, 1390395903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390395904, 1390411775, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1390411776, 1392508927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1392508928, 1394606079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1394606080, 1396703231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396703232, 1396834303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396834304, 1396899839, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396899840, 1396965375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396965376, 1396973567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396973568, 1396981759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396981760, 1396989951, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396989952, 1396998143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1396998144, 1397006335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397006336, 1397014527, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397014528, 1397022719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397022720, 1397030911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397030912, 1397039103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397039104, 1397047295, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397047296, 1397063679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397063680, 1397071871, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397071872, 1397096447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397096448, 1397227519, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397227520, 1397489663, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397489664, 1397751807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1397751808, 1398276095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398276096, 1398800383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398800384, 1398833151, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398833152, 1398849535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398849536, 1398850095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398850096, 1398850559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398850560, 1398851231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398851232, 1398851263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398851264, 1398853119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398853120, 1398865919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398865920, 1398867967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398867968, 1398870015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398870016, 1398872063, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398872064, 1398874111, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398874112, 1398876159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398876160, 1398880255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398880256, 1398882303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398882304, 1398884351, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398884352, 1398886399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398886400, 1398888447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398888448, 1398890495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398890496, 1398892543, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398892544, 1398894591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398894592, 1398896639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398896640, 1398898687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398898688, 1398931455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398931456, 1398964223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398964224, 1398965759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398965760, 1398965887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398965888, 1398967871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398967872, 1398967903, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398967904, 1398972415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398972416, 1398972671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398972672, 1398973951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398973952, 1398974207, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398974208, 1398979583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398979584, 1398979839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398979840, 1398996991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1398996992, 1399029759, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399029760, 1399062527, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399062528, 1399095295, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399095296, 1399128063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399128064, 1399160831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399160832, 1399193599, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399193600, 1399226367, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399226368, 1399259135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399259136, 1399291903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399291904, 1399324671, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399324672, 1399586815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399586816, 1399717887, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399717888, 1399848959, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1399848960, 1400111103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1400111104, 1400373247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1400373248, 1400709119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1400709120, 1400897535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1400897536, 1400963071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1400963072, 1401028607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401028608, 1401094143, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401094144, 1401159679, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401159680, 1401225215, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401225216, 1401241599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401241600, 1401242623, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401242624, 1401243647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401243648, 1401244159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401244160, 1401245695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401245696, 1401264903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401264904, 1401265151, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401265152, 1401270783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401270784, 1401271295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401271296, 1401273599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401273600, 1401274367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401274368, 1401278463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401278464, 1401290751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401290752, 1401356287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401356288, 1401421823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401421824, 1401423135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401423136, 1401423167, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401423168, 1401423199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401423200, 1401423231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401423232, 1401423871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401423872, 1401423903, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401423904, 1401423967, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401423968, 1401423999, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401424000, 1401425151, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401425152, 1401425407, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401425408, 1401425919, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401425920, 1401427967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401427968, 1401430015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401430016, 1401432063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401432064, 1401434111, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401434112, 1401436159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401436160, 1401438207, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401438208, 1401440255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401440256, 1401443487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401443488, 1401443519, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401443520, 1401444351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401444352, 1401446399, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401446400, 1401448447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401448448, 1401450495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401450496, 1401452543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401452544, 1401454591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401454592, 1401456639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401456640, 1401458687, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401458688, 1401460735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401460736, 1401462783, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401462784, 1401464831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401464832, 1401466879, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401466880, 1401468927, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401468928, 1401470975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401470976, 1401473023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401473024, 1401475071, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401475072, 1401479167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401479168, 1401481215, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401481216, 1401485311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401485312, 1401487359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401487360, 1401489407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401489408, 1401491455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401491456, 1401493503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401493504, 1401495551, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401495552, 1401497599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401497600, 1401499647, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401499648, 1401501695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401501696, 1401501791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401501792, 1401502207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401502208, 1401502463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401502464, 1401503743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401503744, 1401505791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401505792, 1401509887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401509888, 1401511935, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401511936, 1401513983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401513984, 1401516031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401518080, 1401520127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401520128, 1401522175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401522176, 1401526271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401526272, 1401528319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401528320, 1401530367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401530368, 1401532415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401532416, 1401534463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401534464, 1401536511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401536512, 1401538559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401538560, 1401539327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401539328, 1401539583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401539584, 1401540607, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401540608, 1401542655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401542656, 1401544703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401544704, 1401546751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401546752, 1401548799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401548800, 1401550847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401550848, 1401552895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401552896, 1401554943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401554944, 1401556991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401556992, 1401563135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401563136, 1401565183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401565184, 1401567231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401567232, 1401569279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401569280, 1401585663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401585664, 1401602047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401602048, 1401618431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401618432, 1401634815, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401634816, 1401651199, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401651200, 1401667583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401667584, 1401683967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401683968, 1401717759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401717760, 1401718015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401718016, 1401728335, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401728336, 1401728351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401728352, 1401749503, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401749504, 1401753087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401753088, 1401753343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401753344, 1401765887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401765888, 1401782271, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401782272, 1401815039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401815040, 1401817087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401817088, 1401819135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401819136, 1401821183, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401821184, 1401825279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401825280, 1401827327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401827328, 1401829375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401829376, 1401831423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401831424, 1401833471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401833472, 1401835519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401835520, 1401837567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401837568, 1401839615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401839616, 1401841663, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401841664, 1401847807, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401847808, 1401849855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401851904, 1401853951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401853952, 1401855999, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401856000, 1401858047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401858048, 1401868287, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401868288, 1401870335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401870336, 1401872383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401872384, 1401874431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401874432, 1401876479, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401876480, 1401878527, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401878528, 1401880575, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401880576, 1401882623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401882624, 1401884671, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401884672, 1401886719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401886720, 1401888767, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401888768, 1401890815, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401890816, 1401892863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401892864, 1401894911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401894912, 1401896959, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401896960, 1401899007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401899008, 1401901055, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401901056, 1401903103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401903104, 1401905151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401905152, 1401907199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401907200, 1401909247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401909248, 1401911295, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401911296, 1401913343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401913344, 1401917439, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401917440, 1401919487, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401919488, 1401921535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401921536, 1401923583, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401923584, 1401925631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401925632, 1401927679, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401927680, 1401929727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401929728, 1401931775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401931776, 1401933823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401933824, 1401935871, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401935872, 1401937919, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401937920, 1401939967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401939968, 1401942015, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401942016, 1401944063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401944064, 1401946111, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401946112, 1401962495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401962496, 1401978879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401978880, 1401995263, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1401995264, 1402011647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402011648, 1402028031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402028032, 1402044415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402044416, 1402060799, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402060800, 1402077183, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402077184, 1402093567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402093568, 1402109951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402109952, 1402142719, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402142720, 1402159103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402159104, 1402175487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402175488, 1402191871, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402191872, 1402208255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402208256, 1402224639, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402224640, 1402241023, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402241024, 1402257407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402257408, 1402273791, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402273792, 1402290175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402290176, 1402291967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402291968, 1402292223, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402292224, 1402295039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402295040, 1402295103, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402295104, 1402305279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402305280, 1402305407, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402305408, 1402306559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402306560, 1402322943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402322944, 1402339327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402339328, 1402355711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402355712, 1402372095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402372096, 1402388479, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402388480, 1402404863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402404864, 1402408959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402408960, 1402413055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402413056, 1402417151, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402417152, 1402421247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402421248, 1402421759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402421760, 1402422271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402422272, 1402422527, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402422528, 1402425343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402425344, 1402425599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402425600, 1402437631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402437632, 1402454015, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402454016, 1402470399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402470400, 1402994687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1402994688, 1403256831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403256832, 1403322367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403322368, 1403387903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403387904, 1403396095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403396096, 1403400191, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403400192, 1403400207, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403400208, 1403400215, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403400216, 1403400219, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403400220, 1403404287, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403404288, 1403412479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403412480, 1403420671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403420672, 1403428863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403428864, 1403437055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403437056, 1403445247, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403445248, 1403461631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403461632, 1403469823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403469824, 1403486207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403486208, 1403494399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403494400, 1403502591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403502592, 1403510783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403510784, 1403518975, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403518976, 1403535359, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403535360, 1403551743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403551744, 1403568127, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403568128, 1403584511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403584512, 1403600895, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403600896, 1403617279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403617280, 1403633663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403633664, 1403650047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403650048, 1403651679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403651680, 1403651711, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403651712, 1403652351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403652352, 1403652479, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403652480, 1403653631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403653632, 1403653823, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403653824, 1403654143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403654144, 1403656191, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403656192, 1403656199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403656200, 1403656207, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403656208, 1403656351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403656352, 1403656383, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403656384, 1403656703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403656704, 1403656959, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403656960, 1403658303, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658304, 1403658319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658320, 1403658399, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658400, 1403658751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658752, 1403658815, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658816, 1403658847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658848, 1403658879, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658880, 1403658911, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658912, 1403658943, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403658944, 1403659263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403659264, 1403659519, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403659520, 1403659839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403659840, 1403659871, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403659872, 1403659903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403659904, 1403660031, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403660032, 1403660223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403660224, 1403660255, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403660256, 1403660287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403660288, 1403660671, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403660672, 1403660735, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403660736, 1403661055, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661056, 1403661183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661184, 1403661215, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661216, 1403661279, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661280, 1403661567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661568, 1403661631, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661632, 1403661663, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661664, 1403661695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661696, 1403661823, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661824, 1403661887, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661888, 1403661983, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403661984, 1403662015, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662016, 1403662047, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662048, 1403662079, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662080, 1403662111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662112, 1403662176, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662177, 1403662207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662208, 1403662271, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662272, 1403662303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662304, 1403662335, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662336, 1403662623, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662624, 1403662655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662656, 1403662719, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662720, 1403662783, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662784, 1403662911, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662912, 1403662943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662944, 1403662975, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403662976, 1403663103, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663104, 1403663359, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663360, 1403663487, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663488, 1403663503, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663504, 1403663527, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663528, 1403663535, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663536, 1403663543, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663544, 1403663567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663568, 1403663575, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663576, 1403663585, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663586, 1403663586, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663587, 1403663587, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663588, 1403663588, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663589, 1403663590, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663591, 1403663871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403663872, 1403664383, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403664384, 1403664447, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403664448, 1403664511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403664512, 1403664639, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403664640, 1403665151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403665152, 1403665919, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403665920, 1403666175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403666176, 1403666431, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403666432, 1403692031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403692032, 1403699199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403699200, 1403715583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403715584, 1403731967, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403731968, 1403748351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403748352, 1403764735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403764736, 1403781119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403781120, 1403797503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403797504, 1403813887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403813888, 1403830271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403830272, 1403846655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403846656, 1403863039, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403863040, 1403879423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403879424, 1403895807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403895808, 1403912191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403912192, 1403928575, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403928576, 1403944959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403944960, 1403961343, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403961344, 1403977727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403977728, 1403994111, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1403994112, 1404010495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404010496, 1404026879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404026880, 1404043263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404043264, 1404051455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404051456, 1404059647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404059648, 1404076031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404076032, 1404084223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404084224, 1404088319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404088320, 1404116991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404116992, 1404125183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404125184, 1404133375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404133376, 1404135423, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404135424, 1404137471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404137472, 1404139519, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404139520, 1404141567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404141568, 1404174335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404174336, 1404189183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404189184, 1404189695, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404189696, 1404198911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404198912, 1404199935, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404199936, 1404200959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404200960, 1404203007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404203008, 1404239871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404239872, 1404305407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404305408, 1404321791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404321792, 1404334079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404334080, 1404338175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404338176, 1404362751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404362752, 1404370943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404370944, 1404379135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404379136, 1404383231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404383232, 1404387327, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404387328, 1404395519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404395520, 1404403711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404403712, 1404411903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404411904, 1404436479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404436480, 1404502015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404502016, 1404567551, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404567552, 1404633087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404633088, 1404698623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404698624, 1404764159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404764160, 1404801023, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404801024, 1404895231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404895232, 1404927999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1404928000, 1405091839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1405091840, 1406140415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406140416, 1406205951, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406205952, 1406271487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406271488, 1406337023, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406337024, 1406402559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406402560, 1406468095, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406468096, 1406533631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406533632, 1406599167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406599168, 1406664703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406664704, 1406672895, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406672896, 1406681087, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406681088, 1406689279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406689280, 1406697471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406697472, 1406705663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406705664, 1406708735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406708736, 1406709759, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406709760, 1406710015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406710016, 1406713855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406713856, 1406717951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406717952, 1406718207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406718208, 1406718975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406718976, 1406719231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406719232, 1406719487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406719488, 1406719743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406719744, 1406719999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406720000, 1406722047, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406722048, 1406730239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406730240, 1406746623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406746624, 1406747391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406747392, 1406747647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406747648, 1406747663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406747664, 1406747679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406747680, 1406747711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406747712, 1406747903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406747904, 1406748415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406748416, 1406748671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406748672, 1406748672, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406748673, 1406748927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406748928, 1406748928, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406748929, 1406749439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406749440, 1406749695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406749696, 1406750719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406750720, 1406750975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406750976, 1406752767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406752768, 1406752783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406752784, 1406753023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406753024, 1406753039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406753040, 1406753791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406753792, 1406754048, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406754049, 1406754303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406754304, 1406754304, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406754305, 1406754559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406754560, 1406754560, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406754561, 1406754815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406754816, 1406763007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406763008, 1406771199, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406771200, 1406779391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406779392, 1406787583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406787584, 1406795775, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406795776, 1406803967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406803968, 1406812159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406812160, 1406820351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406820352, 1406836735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406836736, 1406844927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406844928, 1406853119, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406853120, 1406861311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406861312, 1406869503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406869504, 1406877695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406877696, 1406885887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406885888, 1406894079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406894080, 1406902271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406902272, 1406910463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406910464, 1406918655, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406918656, 1406926335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406926336, 1406926847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406926848, 1406935039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406935040, 1406951423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406951424, 1406959615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406959616, 1406964287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406964288, 1406964319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406964320, 1406964351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406964352, 1406964479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406964480, 1406964735, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406964736, 1406964927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406964928, 1406967295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406967296, 1406967327, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406967328, 1406967807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406967808, 1406975999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406976000, 1406984191, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1406984192, 1407000575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407000576, 1407016959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407016960, 1407025151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407025152, 1407025663, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407025664, 1407025919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407025920, 1407033343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407033344, 1407034367, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407034368, 1407035391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407035392, 1407036415, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407036416, 1407037439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407037440, 1407041535, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407041536, 1407049727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407049728, 1407057919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407057920, 1407066111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407066112, 1407074303, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407074304, 1407082495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407082496, 1407090687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407090688, 1407098879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407098880, 1407107071, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407107072, 1407123455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407123456, 1407131647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407131648, 1407139839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407139840, 1407148031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407148032, 1407156223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407156224, 1407164415, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407164416, 1407172607, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407172608, 1407180799, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407180800, 1407188991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407188992, 1407320063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407320064, 1407363071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407363072, 1407364095, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407364096, 1407410175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407410176, 1407411711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407411712, 1407412223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407412224, 1407415295, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407415296, 1407451135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407451136, 1407483903, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407483904, 1407516671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407516672, 1407520767, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407520768, 1407522047, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407522048, 1407522303, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407522304, 1407522815, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407522816, 1407523071, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523072, 1407523327, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523328, 1407523335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523336, 1407523343, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523344, 1407523351, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523352, 1407523359, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523360, 1407523551, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523552, 1407523559, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523560, 1407523567, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523568, 1407523583, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523584, 1407523839, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407523840, 1407524351, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407524352, 1407524607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407524608, 1407524863, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407524864, 1407527935, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407527936, 1407529023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407529024, 1407529095, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407529096, 1407529103, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407529104, 1407529127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407529128, 1407529135, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407529136, 1407529151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407529152, 1407529191, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407529192, 1407531007, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407531008, 1407531519, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407531520, 1407532543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532544, 1407532551, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532552, 1407532583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532584, 1407532591, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532592, 1407532607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532608, 1407532615, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532616, 1407532623, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532624, 1407532631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532632, 1407532639, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532640, 1407532647, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532648, 1407532655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532656, 1407532671, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532672, 1407532799, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407532800, 1407533055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407533056, 1407533567, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407533568, 1407534079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534080, 1407534335, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534336, 1407534343, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534344, 1407534351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534352, 1407534359, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534360, 1407534360, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534361, 1407534367, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534368, 1407534383, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534384, 1407534391, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534392, 1407534399, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534400, 1407534407, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534408, 1407534415, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534416, 1407534431, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534432, 1407534439, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534440, 1407534447, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534448, 1407534463, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534464, 1407534527, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534528, 1407534535, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534536, 1407534543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534544, 1407534559, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534560, 1407534567, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534568, 1407534575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534576, 1407534583, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534584, 1407534591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534592, 1407534719, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534720, 1407534727, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534728, 1407534735, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534736, 1407534743, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534744, 1407534767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534768, 1407534775, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534776, 1407534783, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534784, 1407534799, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534800, 1407534807, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534808, 1407534815, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534816, 1407534823, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534824, 1407534824, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534825, 1407534830, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534831, 1407534847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407534848, 1407535103, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407535104, 1407535615, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407535616, 1407536127, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536128, 1407536639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536640, 1407536895, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536896, 1407536903, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536904, 1407536935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536936, 1407536943, N'NG', N'Nigeria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536944, 1407536959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536960, 1407536967, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536968, 1407536983, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536984, 1407536991, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407536992, 1407536999, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537000, 1407537007, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537008, 1407537015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537016, 1407537023, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537024, 1407537031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537032, 1407537055, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537056, 1407537063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537064, 1407537071, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537072, 1407537072, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537073, 1407537087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537088, 1407537095, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537096, 1407537103, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537104, 1407537111, N'GM', N'Gambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537112, 1407537119, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537120, 1407537127, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537128, 1407537135, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537136, 1407537143, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537144, 1407537151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407537152, 1407538175, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538176, 1407538687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538688, 1407538751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538752, 1407538783, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538784, 1407538847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538848, 1407538863, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538864, 1407538959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538960, 1407538967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538968, 1407538975, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538976, 1407538983, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538984, 1407538991, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407538992, 1407538999, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407539000, 1407539015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407539016, 1407539023, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407539024, 1407539167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407539168, 1407539175, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407539176, 1407541247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541248, 1407541375, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541376, 1407541544, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541545, 1407541550, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541551, 1407541551, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541552, 1407541559, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541560, 1407541567, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541568, 1407541631, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541632, 1407541695, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541696, 1407541703, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541704, 1407541711, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541712, 1407541719, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541720, 1407541727, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541728, 1407541735, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541736, 1407541743, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407541744, 1407542271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542272, 1407542527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542528, 1407542535, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542536, 1407542543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542544, 1407542551, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542552, 1407542559, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542560, 1407542560, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542561, 1407542567, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542568, 1407542607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542608, 1407542615, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542616, 1407542623, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542624, 1407542631, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542632, 1407542639, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542640, 1407542663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542664, 1407542679, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542680, 1407542695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542696, 1407542701, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542702, 1407542711, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542712, 1407542719, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542720, 1407542727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542728, 1407542735, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542736, 1407542759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542760, 1407542767, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542768, 1407542791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542792, 1407542807, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542808, 1407542815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542816, 1407542823, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542824, 1407542831, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542832, 1407542846, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542847, 1407542855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542856, 1407542879, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542880, 1407542887, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542888, 1407542895, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542896, 1407542903, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407542904, 1407543039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543040, 1407543167, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543168, 1407543183, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543184, 1407543199, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543200, 1407543239, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543240, 1407543247, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543248, 1407543255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543256, 1407543263, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543264, 1407543271, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543272, 1407543279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543280, 1407543287, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407543288, 1407545343, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407545344, 1407546367, N'SL', N'Sierra Leone') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407546368, 1407547391, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407547392, 1407547647, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407547648, 1407547903, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407547904, 1407547959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407547960, 1407547967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407547968, 1407547984, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407547985, 1407547999, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548000, 1407548031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548032, 1407548039, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548040, 1407548056, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548057, 1407548062, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548063, 1407548103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548104, 1407548111, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548112, 1407548119, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548120, 1407548127, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548128, 1407548135, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548136, 1407548143, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548144, 1407548151, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548152, 1407548159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548160, 1407548415, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548416, 1407548543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407548544, 1407549183, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407549184, 1407549439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407549440, 1407582207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407582208, 1407614943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407614944, 1407614951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407614952, 1407614959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407614960, 1407614975, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407614976, 1407680511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407680512, 1407681535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407681536, 1407681639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407681640, 1407681983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407681984, 1407681999, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407682000, 1407682879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407682880, 1407682911, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407682912, 1407683471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407683472, 1407683479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407683480, 1407713279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407713280, 1407778815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407778816, 1407842303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407842304, 1407842367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407842368, 1407844351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407844352, 1407909887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407909888, 1407975423, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1407975424, 1408040959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408040960, 1408106495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408106496, 1408172031, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408172032, 1408237567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408237568, 1408270335, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408270336, 1408303103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408303104, 1408335871, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408335872, 1408336879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408336880, 1408336887, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408336888, 1408368639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408368640, 1408376831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408376832, 1408385023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408385024, 1408393215, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408393216, 1408401407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408401408, 1408434175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408434176, 1408436223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408436224, 1408438271, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408438272, 1408440319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408440320, 1408442367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408442368, 1408444415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408444416, 1408450559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408450560, 1408454655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408454656, 1408456703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408456704, 1408458751, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408458752, 1408460799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408460800, 1408462847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408462848, 1408464895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408464896, 1408466943, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408466944, 1408499711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408499712, 1408532479, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408532480, 1408583167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408583168, 1408583679, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408583680, 1408584191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408584192, 1408584703, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408584704, 1408590847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408590848, 1408591103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408591104, 1408591871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408591872, 1408592127, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408592128, 1408592639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408592640, 1408592895, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408592896, 1408598015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408598016, 1408630783, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408630784, 1408651215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408651216, 1408651223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408651224, 1408663551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408663552, 1408696319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408696320, 1408729087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408729088, 1408761855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1408761856, 1409286143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1409286144, 1409433599, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1409433600, 1409434623, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1409434624, 1409548287, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1409548288, 1409810431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1409810432, 1409941503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1409941504, 1410007039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410007040, 1410007551, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410007552, 1410007807, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410007808, 1410008071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008072, 1410008079, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008080, 1410008095, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008096, 1410008111, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008112, 1410008351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008352, 1410008383, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008384, 1410008447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008448, 1410008511, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008512, 1410008527, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008528, 1410008543, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008544, 1410008575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008576, 1410008639, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008640, 1410008703, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008704, 1410008831, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008832, 1410008847, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008848, 1410008863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008864, 1410008895, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410008896, 1410009855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410009856, 1410009919, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410009920, 1410009967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410009968, 1410009983, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410009984, 1410010111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010112, 1410010175, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010176, 1410010207, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010208, 1410010367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010368, 1410010399, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010400, 1410010447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010448, 1410010455, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010456, 1410010495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010496, 1410010559, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010560, 1410010623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010624, 1410010639, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010640, 1410010879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410010880, 1410011135, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410011136, 1410011647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410011648, 1410011711, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410011712, 1410012159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410012160, 1410013183, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013184, 1410013439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013440, 1410013471, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013472, 1410013535, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013536, 1410013567, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013568, 1410013695, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013696, 1410013727, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013728, 1410013759, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013760, 1410013887, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013888, 1410013919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013920, 1410013951, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013952, 1410013983, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410013984, 1410014047, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014048, 1410014079, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014080, 1410014335, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014336, 1410014399, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014400, 1410014463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014464, 1410014591, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014592, 1410014719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014720, 1410014847, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014848, 1410014879, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014880, 1410014883, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014884, 1410014884, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014885, 1410014885, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014886, 1410014886, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014887, 1410014887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014888, 1410014895, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014896, 1410014903, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014904, 1410014911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014912, 1410014927, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014928, 1410014935, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014936, 1410014943, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014944, 1410014951, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014952, 1410014959, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014960, 1410014960, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014961, 1410014961, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014962, 1410014963, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014964, 1410014964, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014965, 1410014966, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014967, 1410014967, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014968, 1410014968, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014969, 1410014969, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014970, 1410014972, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014973, 1410014974, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410014975, 1410015007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015008, 1410015231, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015232, 1410015263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015264, 1410015358, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015359, 1410015359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015360, 1410015423, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015424, 1410015487, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015488, 1410015743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015744, 1410015775, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015776, 1410015807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015808, 1410015871, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015872, 1410015935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410015936, 1410015999, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016000, 1410016255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016256, 1410016319, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016320, 1410016383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016384, 1410016415, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016416, 1410016447, N'PA', N'Panama') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016448, 1410016575, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016576, 1410016607, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016608, 1410016639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016640, 1410016671, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016672, 1410016703, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016704, 1410016831, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016832, 1410016863, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016864, 1410016895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410016896, 1410017023, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410017024, 1410017055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410017056, 1410017119, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410017120, 1410017151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410017152, 1410017535, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410017536, 1410017791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410017792, 1410018047, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018048, 1410018111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018112, 1410018143, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018144, 1410018175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018176, 1410018191, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018192, 1410018207, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018208, 1410018303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018304, 1410018559, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018560, 1410018607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018608, 1410018623, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018624, 1410018831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018832, 1410018839, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018840, 1410018847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018848, 1410018871, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410018872, 1410019071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410019072, 1410019327, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410019328, 1410019423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410019424, 1410019455, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410019456, 1410019583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410019584, 1410019687, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410019688, 1410019839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410019840, 1410020095, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410020096, 1410020103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410020104, 1410020111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410020112, 1410020351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410020352, 1410020863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410020864, 1410021119, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021120, 1410021183, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021184, 1410021185, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021186, 1410021186, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021187, 1410021188, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021189, 1410021215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021216, 1410021247, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021248, 1410021311, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021312, 1410021375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021376, 1410021503, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021504, 1410021567, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021568, 1410021599, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021600, 1410021631, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021632, 1410021663, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021664, 1410021695, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021696, 1410021823, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021824, 1410021855, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410021856, 1410022399, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022400, 1410022463, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022464, 1410022527, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022528, 1410022591, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022592, 1410022655, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022656, 1410022719, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022720, 1410022783, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022784, 1410022815, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022816, 1410022847, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022848, 1410022911, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410022912, 1410024191, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410024192, 1410024287, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410024288, 1410025087, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025088, 1410025279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025280, 1410025311, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025312, 1410025375, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025376, 1410025407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025408, 1410025439, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025440, 1410025471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025472, 1410025503, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025504, 1410025517, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025518, 1410025727, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025728, 1410025759, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025760, 1410025791, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025792, 1410025983, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410025984, 1410026015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026016, 1410026047, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026048, 1410026111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026112, 1410026143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026144, 1410026239, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026240, 1410026367, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026368, 1410026431, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026432, 1410026463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026464, 1410026751, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026752, 1410026815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026816, 1410026847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026848, 1410026943, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410026944, 1410027007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410027008, 1410027263, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410027264, 1410027519, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410027520, 1410027647, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410027648, 1410027775, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410027776, 1410029087, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029088, 1410029151, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029152, 1410029567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029568, 1410029607, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029608, 1410029631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029632, 1410029663, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029664, 1410029679, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029680, 1410029695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029696, 1410029711, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410029712, 1410030079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410030080, 1410030335, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410030336, 1410030591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410030592, 1410030599, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410030600, 1410030607, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410030608, 1410030847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410030848, 1410031103, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410031104, 1410031231, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410031232, 1410031359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410031360, 1410031615, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410031616, 1410032127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410032128, 1410033151, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410033152, 1410033407, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410033408, 1410033663, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410033664, 1410034175, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410034176, 1410034943, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410034944, 1410035199, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035200, 1410035215, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035216, 1410035231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035232, 1410035295, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035296, 1410035455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035456, 1410035583, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035584, 1410035711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035712, 1410035839, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035840, 1410035967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410035968, 1410036015, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410036016, 1410036223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410036224, 1410036239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410036240, 1410072575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410072576, 1410203903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410203904, 1410203911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410203912, 1410203919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410203920, 1410203935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410203936, 1410203943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410203944, 1410203999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204000, 1410204007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204008, 1410204119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204120, 1410204127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204128, 1410204151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204152, 1410204155, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204156, 1410204955, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204956, 1410204959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410204960, 1410205079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205080, 1410205087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205088, 1410205143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205144, 1410205151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205152, 1410205183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205184, 1410205695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205696, 1410205807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205808, 1410205815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205816, 1410205823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410205824, 1410206207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206208, 1410206223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206224, 1410206239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206240, 1410206255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206256, 1410206263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206264, 1410206271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206272, 1410206279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206280, 1410206287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206288, 1410206303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206304, 1410206463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206464, 1410206479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206480, 1410206535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206536, 1410206543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206544, 1410206887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206888, 1410206895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410206896, 1410207103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207104, 1410207111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207112, 1410207163, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207164, 1410207167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207168, 1410207215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207216, 1410207627, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207628, 1410207647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207648, 1410207871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207872, 1410207895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207896, 1410207903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207904, 1410207911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410207912, 1410208895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410208896, 1410208911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410208912, 1410210367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410210368, 1410210375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410210376, 1410210943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410210944, 1410211015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410211016, 1410212095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410212096, 1410212175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410212176, 1410214143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410214144, 1410214431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410214432, 1410215687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410215688, 1410215695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410215696, 1410216191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410216192, 1410216255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410216256, 1410216319, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410216320, 1410216351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410216352, 1410216391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410216392, 1410216395, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410216396, 1410216399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410216400, 1410217055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410217056, 1410218111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410218112, 1410218191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410218192, 1410218199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410218200, 1410218295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410218296, 1410219135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410219136, 1410219199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410219200, 1410220159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410220160, 1410220199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410220200, 1410221119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410221120, 1410221167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410221168, 1410221631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410221632, 1410221663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410221664, 1410223167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410223168, 1410223175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410223176, 1410223615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410223616, 1410223871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410223872, 1410226431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410226432, 1410226623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410226624, 1410226655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410226656, 1410227023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227024, 1410227039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227040, 1410227087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227088, 1410227095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227096, 1410227155, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227156, 1410227159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227160, 1410227247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227248, 1410227255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227256, 1410227551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227552, 1410227559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227560, 1410227591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227592, 1410227599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227600, 1410227687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410227688, 1410228223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410228224, 1410228479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410228480, 1410228991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410228992, 1410229247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410229248, 1410230271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230272, 1410230383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230384, 1410230399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230400, 1410230607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230608, 1410230611, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230612, 1410230719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230720, 1410230783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230784, 1410230791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230792, 1410230799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410230800, 1410231039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410231040, 1410231295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410231296, 1410231719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410231720, 1410231727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410231728, 1410231807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410231808, 1410232319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410232320, 1410232407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410232408, 1410232415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410232416, 1410232703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410232704, 1410232711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410232712, 1410232831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410232832, 1410233087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410233088, 1410233495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410233496, 1410233503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410233504, 1410234035, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234036, 1410234039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234040, 1410234063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234064, 1410234079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234080, 1410234111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234112, 1410234623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234624, 1410234655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234656, 1410234663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234664, 1410234775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234776, 1410234783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234784, 1410234799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234800, 1410234807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234808, 1410234927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234928, 1410234975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410234976, 1410235087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235088, 1410235103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235104, 1410235119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235120, 1410235135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235136, 1410235263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235264, 1410235295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235296, 1410235375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235376, 1410235383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235384, 1410235391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235392, 1410235647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235648, 1410235695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235696, 1410235711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235712, 1410235855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235856, 1410235863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235864, 1410235879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235880, 1410235895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410235896, 1410236031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236032, 1410236039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236040, 1410236071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236072, 1410236079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236080, 1410236159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236160, 1410236631, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236632, 1410236639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236640, 1410236671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236672, 1410236711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236712, 1410236719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236720, 1410236831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236832, 1410236847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236848, 1410236895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236896, 1410236903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236904, 1410236983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410236984, 1410237007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237008, 1410237095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237096, 1410237119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237120, 1410237175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237176, 1410237439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237440, 1410237767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237768, 1410237775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237776, 1410237951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410237952, 1410238223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238224, 1410238247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238248, 1410238255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238256, 1410238263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238264, 1410238271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238272, 1410238367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238368, 1410238383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238384, 1410238447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238448, 1410238455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238456, 1410238463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238464, 1410238535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238536, 1410238559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238560, 1410238567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238568, 1410238591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238592, 1410238655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238656, 1410238695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238696, 1410238703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238704, 1410238767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238768, 1410238783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238784, 1410238975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410238976, 1410239231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410239232, 1410239559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410239560, 1410239567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410239568, 1410239583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410239584, 1410268671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410268672, 1410269183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410269184, 1410334719, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410334720, 1410341887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410341888, 1410342911, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410342912, 1410351103, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410351104, 1410359295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410359296, 1410367487, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410367488, 1410375679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410375680, 1410383871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410383872, 1410392063, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410392064, 1410397183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410397184, 1410397439, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410397440, 1410399487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410399488, 1410399743, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410399744, 1410400063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410400064, 1410400127, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410400128, 1410400255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410400256, 1410408447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410408448, 1410416639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410416640, 1410424831, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410424832, 1410433023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410433024, 1410441215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410441216, 1410449407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410449408, 1410457599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410457600, 1410465791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410465792, 1410473983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410473984, 1410490367, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410490368, 1410498559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410498560, 1410506751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410506752, 1410514943, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410514944, 1410523135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410523136, 1410531327, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410531328, 1410539519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410539520, 1410542591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410542592, 1410543103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410543104, 1410547711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410547712, 1410555903, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410555904, 1410564095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410564096, 1410572287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410572288, 1410573439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410573440, 1410573567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410573568, 1410574727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410574728, 1410574735, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410574736, 1410575111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410575112, 1410575119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410575120, 1410575295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410575296, 1410575327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410575328, 1410575359, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410575360, 1410575839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410575840, 1410575855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410575856, 1410588671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410588672, 1410596863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410596864, 1410605055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410605056, 1410613247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410613248, 1410621439, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410621440, 1410629631, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410629632, 1410637823, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410637824, 1410646015, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410646016, 1410654207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410654208, 1410662399, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410662400, 1410670591, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410670592, 1410678783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410678784, 1410686975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410686976, 1410695167, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410695168, 1410703359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410703360, 1410711551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410711552, 1410719743, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410719744, 1410727935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410727936, 1410736127, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410736128, 1410744319, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410744320, 1410744575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410744576, 1410744831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410744832, 1410745599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410745600, 1410752511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410752512, 1410755071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410755072, 1410755583, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410755584, 1410760703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410760704, 1410768895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410768896, 1410777087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410777088, 1410785279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410785280, 1410793471, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410793472, 1410801663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410801664, 1410818047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410818048, 1410826239, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410826240, 1410834431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410834432, 1410842623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410842624, 1410850815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410850816, 1410859007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1410859008, 1411383295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411383296, 1411448831, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411448832, 1411449855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411449856, 1411450111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411450112, 1411450367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411450368, 1411450623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411450624, 1411451391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411451392, 1411451903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411451904, 1411452159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411452160, 1411452415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411452416, 1411453183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411453184, 1411454207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411454208, 1411454975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411454976, 1411455743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411455744, 1411456255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411456256, 1411456511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411456512, 1411457279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411457280, 1411457535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411457536, 1411465215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411465216, 1411465471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411465472, 1411481855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411481856, 1411483903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411483904, 1411514367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411514368, 1411579903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411579904, 1411645439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411645440, 1411710975, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411710976, 1411717127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411717128, 1411717135, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411717136, 1411717183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411717184, 1411717191, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411717192, 1411717367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411717368, 1411717375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411717376, 1411776511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411776512, 1411780607, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411780608, 1411784703, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411784704, 1411788799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411788800, 1411792895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411792896, 1411796991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411796992, 1411805183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411805184, 1411809279, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411809280, 1411813375, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411813376, 1411817471, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411817472, 1411821567, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411821568, 1411825663, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411825664, 1411829759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411829760, 1411833855, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411833856, 1411837951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411842048, 1411907583, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411907584, 1411911679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411911680, 1411915775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411915776, 1411919871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411919872, 1411923967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411923968, 1411940351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411940352, 1411973119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411973120, 1411978255, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411978256, 1411978271, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1411978272, 1412002047, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412002048, 1412002055, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412002056, 1412002815, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412002816, 1412002831, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412002832, 1412002943, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412002944, 1412003007, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412003008, 1412003071, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412003072, 1412003079, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412003080, 1412005887, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412005888, 1412038655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412038656, 1412071423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412071424, 1412104191, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412104192, 1412136959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412136960, 1412169727, N'BG', N'Bulgaria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412169728, 1412202495, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412202496, 1412235263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412235264, 1412237567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412237568, 1412237823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412237824, 1412300799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412300800, 1412333567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412333568, 1412366335, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412366336, 1412399103, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412399104, 1412415487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412415488, 1412415999, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412416000, 1412416255, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412416256, 1412416511, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412416512, 1412428799, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412428800, 1412430079, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412430080, 1412430847, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412430848, 1412431871, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412431872, 1412562943, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412562944, 1412628479, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412628480, 1412641791, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412641792, 1412642815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412642816, 1412644863, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412644864, 1412661247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412661248, 1412677631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412677632, 1412685823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412685824, 1412694015, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412694016, 1412710399, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412710400, 1412726783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412726784, 1412743167, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412743168, 1412775935, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412775936, 1412792319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412792320, 1412798463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412798464, 1412800511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412800512, 1412804607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412804608, 1412808703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412808704, 1412825087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412825088, 1412830463, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412830464, 1412841471, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412841472, 1412857855, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412857856, 1412874239, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412874240, 1412890623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412890624, 1412907007, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412907008, 1412923391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412923392, 1412939775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412939776, 1412956159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1412956160, 1413480447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1413480448, 1414004735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1414004736, 1414266879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1414266880, 1414529023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1414529024, 1415053311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415053312, 1415184383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415184384, 1415315455, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415315456, 1415446527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415446528, 1415501823, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415501824, 1415503871, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415503872, 1415504895, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415504896, 1415512063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415512064, 1415520255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415520256, 1415528447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415528448, 1415546879, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415546880, 1415577599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1415577600, 1416101887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1416101888, 1416364031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1416364032, 1416626175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1416626176, 1416840703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1416840704, 1416840959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1416840960, 1416857610, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1416857611, 1416857612, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1416857613, 1417150463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1417150464, 1417674751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1417674752, 1421869055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1421869056, 1422393343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422393344, 1422393599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422393600, 1422458879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422458880, 1422475263, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422475264, 1422491647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422491648, 1422508031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422508032, 1422512127, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422512128, 1422516223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422516224, 1422520319, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422520320, 1422524415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422524416, 1422589951, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422589952, 1422655487, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422655488, 1422721023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422721024, 1422729215, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422729216, 1422737407, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422737408, 1422745599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422745600, 1422753791, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422753792, 1422761983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422761984, 1422778367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422778368, 1422786559, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422786560, 1422852095, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422852096, 1422856575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422856576, 1422856639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422856640, 1422857471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422857472, 1422857727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422857728, 1422857855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422857856, 1422857919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422857920, 1422858143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422858144, 1422858239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422858240, 1422858623, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422858624, 1422917631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1422917632, 1423441919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1423441920, 1423704063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1423704064, 1423966207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1423966208, 1424097279, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424097280, 1424228351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424228352, 1424359423, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424359424, 1424490495, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424490496, 1424523263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424523264, 1424556031, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424556032, 1424588799, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424588800, 1424588983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424588984, 1424588991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424588992, 1424589311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424589312, 1424589567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424589568, 1424590719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424590720, 1424590727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424590728, 1424590735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424590736, 1424591423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424591424, 1424592639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424592640, 1424593407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424593408, 1424593663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424593664, 1424593727, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424593728, 1424593791, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424593792, 1424593919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424593920, 1424593967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424593968, 1424593983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424593984, 1424594055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424594056, 1424594063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424594064, 1424594175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424594176, 1424595175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424595176, 1424595179, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424595180, 1424595455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424595456, 1424596479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424596480, 1424596991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424596992, 1424597503, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424597504, 1424597759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424597760, 1424598015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424598016, 1424599039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424599040, 1424599271, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424599272, 1424599295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424599296, 1424599551, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424599552, 1424599839, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424599840, 1424600063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424600064, 1424600319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424600320, 1424600575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424600576, 1424600831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424600832, 1424601087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424601088, 1424601343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424601344, 1424601599, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424601600, 1424601855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424601856, 1424602111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424602112, 1424602623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424602624, 1424602879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424602880, 1424602911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424602912, 1424602927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424602928, 1424602935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424602936, 1424602943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424602944, 1424603007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424603008, 1424603135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424603136, 1424603263, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424603264, 1424603391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424603392, 1424603647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424603648, 1424603903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424603904, 1424604159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424604160, 1424604415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424604416, 1424605003, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424605004, 1424605007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424605008, 1424605079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424605080, 1424605439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424605440, 1424605567, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424605568, 1424607223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424607224, 1424607231, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424607232, 1424607487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424607488, 1424607775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424607776, 1424608031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424608032, 1424608127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424608128, 1424608255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424608256, 1424608511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424608512, 1424608639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424608640, 1424609023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424609024, 1424609055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424609056, 1424609151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424609152, 1424609279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424609280, 1424609395, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424609396, 1424609407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424609408, 1424609551, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424609552, 1424610303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424610304, 1424610559, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424610560, 1424610623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424610624, 1424610687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424610688, 1424610815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424610816, 1424611071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424611072, 1424611167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424611168, 1424611183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424611184, 1424611327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424611328, 1424611583, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424611584, 1424612095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424612096, 1424612351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424612352, 1424612607, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424612608, 1424612671, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424612672, 1424612863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424612864, 1424613119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424613120, 1424613375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424613376, 1424613631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424613632, 1424614143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424614144, 1424614399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424614400, 1424614655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424614656, 1424614911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424614912, 1424615167, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424615168, 1424615423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424615424, 1424615935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424615936, 1424616191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424616192, 1424616447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424616448, 1424616495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424616496, 1424616511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424616512, 1424616631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424616632, 1424616703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424616704, 1424616959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424616960, 1424617215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424617216, 1424617395, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424617396, 1424617399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424617400, 1424617407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424617408, 1424617423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424617424, 1424617471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424617472, 1424617727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424617728, 1424618239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424618240, 1424618495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424618496, 1424618751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424618752, 1424619007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619008, 1424619199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619200, 1424619215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619216, 1424619775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619776, 1424619807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619808, 1424619811, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619812, 1424619911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619912, 1424619967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424619968, 1424620031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424620032, 1424621055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424621056, 1424621567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424621568, 1424625663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424625664, 1424629759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424629760, 1424637951, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424637952, 1424642047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424642048, 1424646143, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424646144, 1424650239, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424650240, 1424654335, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424654336, 1424687103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424687104, 1424719871, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424719872, 1424722431, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424722432, 1424723199, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424723200, 1424724735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424724736, 1424724991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424724992, 1424727039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424727040, 1424727295, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424727296, 1424727551, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424727552, 1424728063, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424728064, 1424728319, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424728320, 1424729855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424729856, 1424730367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424730368, 1424730623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424730624, 1424730879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424730880, 1424733183, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424733184, 1424733951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424733952, 1424735103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424735104, 1424736127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424736128, 1424736383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424736384, 1424736895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424736896, 1424737151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424737152, 1424737279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424737280, 1424737407, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424737408, 1424737535, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424737536, 1424738815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424738816, 1424739839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424739840, 1424739967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424739968, 1424740095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424740096, 1424746495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424746496, 1424749055, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424749056, 1424749311, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424749312, 1424750079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424750080, 1424750335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424750336, 1424750591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424750592, 1424750847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424750848, 1424751103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424751104, 1424751359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424751360, 1424751615, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424751616, 1424752127, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424752128, 1424752383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424752384, 1424752639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424752640, 1424785407, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424785408, 1424818175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424818176, 1424850943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424850944, 1424883711, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424883712, 1424916479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424916480, 1424949247, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424949248, 1424982015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1424982016, 1425014783, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425014784, 1425031167, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425031168, 1425047551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425047552, 1425063935, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425063936, 1425080319, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425080320, 1425096703, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425096704, 1425113087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425113088, 1425121535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425121536, 1425122303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425122304, 1425145855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425145856, 1425162239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425162240, 1425178623, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425178624, 1425195007, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425195008, 1425211391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425211392, 1425227775, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425227776, 1425244159, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425244160, 1425260543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425260544, 1425276927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425276928, 1425293311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425293312, 1425309695, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425309696, 1425326079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425326080, 1425342463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425342464, 1425358847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425358848, 1425375231, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425375232, 1425391615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425391616, 1425407999, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425408000, 1425424383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425424384, 1425424463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425424464, 1425424479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425424480, 1425424543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425424544, 1425424639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425424640, 1425424895, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425424896, 1425425151, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425425152, 1425426303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425426304, 1425426319, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425426320, 1425426343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425426344, 1425426352, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425426353, 1425426431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425426432, 1425428479, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425428480, 1425430527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425430528, 1425432575, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425432576, 1425434623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425434624, 1425436671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425436672, 1425438719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425438720, 1425440767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425440768, 1425442815, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425442816, 1425444863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425444864, 1425446911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425446912, 1425448959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425448960, 1425451007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425451008, 1425455103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425455104, 1425457151, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425457152, 1425459199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425459200, 1425461247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425461248, 1425463295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425463296, 1425465343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425465344, 1425467391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425467392, 1425469439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425469440, 1425471487, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425471488, 1425473535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425473536, 1425506303, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425506304, 1425522687, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425522688, 1425539071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425539072, 1425801215, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425801216, 1425817599, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425817600, 1425833983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425833984, 1425850367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425850368, 1425866751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425866752, 1425883135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425883136, 1425899519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425899520, 1425915903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425915904, 1425932287, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425932288, 1425948671, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425948672, 1425965055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965056, 1425965100, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965101, 1425965112, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965113, 1425965116, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965117, 1425965120, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965121, 1425965182, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965183, 1425965183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965184, 1425965503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965504, 1425965567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965568, 1425965568, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965569, 1425965572, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965573, 1425965576, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965577, 1425965580, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965581, 1425965584, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965585, 1425965588, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965589, 1425965592, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965593, 1425965631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425965632, 1425966080, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966081, 1425966088, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966089, 1425966104, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966105, 1425966128, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966129, 1425966144, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966145, 1425966152, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966153, 1425966208, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966209, 1425966224, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966225, 1425966239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966240, 1425966271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966272, 1425966335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966336, 1425966463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966464, 1425966591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966592, 1425966608, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966609, 1425966624, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966625, 1425966655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966656, 1425966719, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966720, 1425966720, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966721, 1425966728, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966729, 1425966735, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966736, 1425966751, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966752, 1425966784, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966785, 1425966808, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966809, 1425966815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966816, 1425966847, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966848, 1425966852, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966853, 1425966896, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966897, 1425966911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966912, 1425966975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425966976, 1425967039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967040, 1425967103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967104, 1425967104, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967105, 1425967120, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967121, 1425967359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967360, 1425967679, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967680, 1425967871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967872, 1425967876, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967877, 1425967892, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967893, 1425967896, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967897, 1425967904, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967905, 1425967912, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967913, 1425967924, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967925, 1425967928, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967929, 1425967940, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967941, 1425967967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425967968, 1425967999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425968000, 1425968127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425968128, 1425968639, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425968640, 1425968703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425968704, 1425968831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425968832, 1425968895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425968896, 1425969023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969024, 1425969199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969200, 1425969215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969216, 1425969279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969280, 1425969535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969536, 1425969663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969664, 1425969727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969728, 1425969791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969792, 1425969855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969856, 1425969983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425969984, 1425970047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970048, 1425970111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970112, 1425970175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970176, 1425970176, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970177, 1425970180, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970181, 1425970184, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970185, 1425970188, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970189, 1425970192, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970193, 1425970239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970240, 1425970303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970304, 1425970431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970432, 1425970495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970496, 1425970687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970688, 1425970688, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970689, 1425970751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970752, 1425970943, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425970944, 1425971007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971008, 1425971071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971072, 1425971199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971200, 1425971455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971456, 1425971711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971712, 1425971727, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971728, 1425971743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971744, 1425971775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971776, 1425971839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971840, 1425971903, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425971904, 1425972223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425972224, 1425972671, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425972672, 1425972735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425972736, 1425972927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425972928, 1425972991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425972992, 1425973183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973184, 1425973247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973248, 1425973248, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973249, 1425973260, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973261, 1425973264, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973265, 1425973268, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973269, 1425973272, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973273, 1425973276, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973277, 1425973280, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973281, 1425973300, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973301, 1425973308, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973309, 1425973332, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973333, 1425973336, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973337, 1425973439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973440, 1425973503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973504, 1425973759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973760, 1425973823, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973824, 1425973887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425973888, 1425974143, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425974144, 1425974207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425974208, 1425974463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425974464, 1425974527, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425974528, 1425974783, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425974784, 1425974847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425974848, 1425974911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425974912, 1425975039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975040, 1425975103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975104, 1425975167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975168, 1425975296, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975297, 1425975360, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975361, 1425975423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975424, 1425975487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975488, 1425975551, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975552, 1425975615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425975616, 1425976063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976064, 1425976064, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976065, 1425976126, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976127, 1425976127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976128, 1425976191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976192, 1425976255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976256, 1425976319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976320, 1425976320, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976321, 1425976328, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976329, 1425976336, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976337, 1425976344, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976345, 1425976352, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976353, 1425976368, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976369, 1425976372, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976373, 1425976380, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976381, 1425976388, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976389, 1425976392, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976393, 1425976432, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976433, 1425976440, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976441, 1425976448, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976449, 1425976464, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976465, 1425976767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976768, 1425976831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976832, 1425976832, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976833, 1425976852, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976853, 1425976896, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976897, 1425976932, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976933, 1425976936, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976937, 1425976944, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976945, 1425976960, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425976961, 1425977008, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977009, 1425977016, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977017, 1425977040, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977041, 1425977087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977088, 1425977088, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977089, 1425977151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977152, 1425977215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977216, 1425977279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977280, 1425977343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977344, 1425977855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425977856, 1425978111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978112, 1425978367, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978368, 1425978368, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978369, 1425978388, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978389, 1425978389, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978390, 1425978623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978624, 1425978624, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978625, 1425978879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425978880, 1425979071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979072, 1425979135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979136, 1425979327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979328, 1425979391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979392, 1425979392, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979393, 1425979400, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979401, 1425979412, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979413, 1425979416, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979417, 1425979436, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979437, 1425979456, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979457, 1425979460, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979461, 1425979464, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979465, 1425979472, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979473, 1425979476, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979477, 1425979480, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979481, 1425979488, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979489, 1425979503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979504, 1425979519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979520, 1425979583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979584, 1425979652, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979653, 1425979656, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979657, 1425979660, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979661, 1425979692, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979693, 1425979704, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979705, 1425979708, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979709, 1425979711, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979712, 1425979775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979776, 1425979839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979840, 1425979903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979904, 1425979904, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979905, 1425979968, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979969, 1425979976, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979977, 1425979984, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979985, 1425979998, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425979999, 1425979999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425980000, 1425980031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425980032, 1425980095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425980096, 1425980159, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425980160, 1425980287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425980288, 1425980351, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425980352, 1425980415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425980416, 1425981055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425981056, 1425981183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425981184, 1425981311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425981312, 1425981439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425981440, 1425997823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1425997824, 1426014207, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426014208, 1426030591, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426030592, 1426046975, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426046976, 1426063359, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426063360, 1426587647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426587648, 1426604031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426604032, 1426620415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426620416, 1426653183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426653184, 1426669567, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426669568, 1426685951, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426685952, 1426702335, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426702336, 1426718719, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426718720, 1426731007, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426731008, 1426731063, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426731064, 1426731071, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426731072, 1426731103, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426731104, 1426731263, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426731264, 1426731775, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426731776, 1426735103, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426735104, 1426751487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426751488, 1426767871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426767872, 1426774591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426774592, 1426774655, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426774656, 1426774807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426774808, 1426774815, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426774816, 1426775087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775088, 1426775095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775096, 1426775111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775112, 1426775119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775120, 1426775183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775184, 1426775191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775192, 1426775231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775232, 1426775239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775240, 1426775247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775248, 1426775255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775256, 1426775263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775264, 1426775271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775272, 1426775543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775544, 1426775551, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775552, 1426775559, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426775560, 1426776063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426776064, 1426776079, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426776080, 1426776215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426776216, 1426776223, N'AD', N'Andorra') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426776224, 1426779135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426779136, 1426779199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426779200, 1426779431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426779432, 1426779439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426779440, 1426779999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780000, 1426780007, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780008, 1426780031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780032, 1426780039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780040, 1426780047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780048, 1426780103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780104, 1426780111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780112, 1426780359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780360, 1426780367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780368, 1426780383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780384, 1426780391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780392, 1426780399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780400, 1426780447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780448, 1426780455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780456, 1426780511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780512, 1426780519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780520, 1426780543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780544, 1426780551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780552, 1426780583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780584, 1426780591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780592, 1426780631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780632, 1426780639, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780640, 1426780663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780664, 1426780671, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780672, 1426780751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780752, 1426780759, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780760, 1426780775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780776, 1426780791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780792, 1426780839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780840, 1426780847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780848, 1426780863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780864, 1426780871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780872, 1426780895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780896, 1426780911, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426780912, 1426781007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781008, 1426781015, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781016, 1426781079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781080, 1426781087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781088, 1426781095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781096, 1426781127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781128, 1426781135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781136, 1426781207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781208, 1426781215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781216, 1426781703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781704, 1426781711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426781712, 1426783671, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426783672, 1426783675, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426783676, 1426784255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426784256, 1426800639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426800640, 1426817023, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426817024, 1426833407, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426833408, 1426849791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426849792, 1426850335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426850336, 1426850367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426850368, 1426850463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426850464, 1426850495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426850496, 1426851519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426851520, 1426851583, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426851584, 1426852351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426852352, 1426852607, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426852608, 1426855679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426855680, 1426855808, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426855809, 1426855935, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426855936, 1426865151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426865152, 1426866175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426866176, 1426882559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426882560, 1426898943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426915328, 1426931711, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426931712, 1426948095, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426948096, 1426964479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426964480, 1426980863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426980864, 1426997247, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1426997248, 1427013631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427013632, 1427030015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427030016, 1427046399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427046400, 1427062783, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427062784, 1427095551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427095552, 1427111935, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427111936, 1427177471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427177472, 1427243007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427243008, 1427308543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427308544, 1427374079, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427374080, 1427439615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427439616, 1427505151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427505152, 1427570687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427570688, 1427636223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427636224, 1427668991, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427668992, 1427701759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427701760, 1427767295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427767296, 1427800063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427800064, 1427832831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427832832, 1427865599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427865600, 1427898367, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427898368, 1427914751, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427914752, 1427931135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427931136, 1427947519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427947520, 1427963903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427963904, 1427980287, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427980288, 1427996671, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1427996672, 1428013055, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428013056, 1428029439, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428029440, 1428045823, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428045824, 1428062207, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428062208, 1428078591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428078592, 1428094975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428094976, 1428103167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428103168, 1428111871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428111872, 1428113919, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428113920, 1428119551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428119552, 1428121599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428121600, 1428123647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428123648, 1428127743, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428127744, 1428129791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428129792, 1428131839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428131840, 1428133887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428133888, 1428135935, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428135936, 1428137983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428137984, 1428140031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428140032, 1428142079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428142080, 1428143167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428143168, 1428143230, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428143231, 1428143615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428143616, 1428143871, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428143872, 1428144127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428144128, 1428147359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428147360, 1428147375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428147376, 1428147391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428147392, 1428152319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1428160512, 1429209087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1429209088, 1430257663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1430257664, 1430388735, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1430388736, 1430519807, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1430519808, 1430650879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1430650880, 1430781951, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1430781952, 1431044095, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431044096, 1431306239, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431306240, 1431568383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431568384, 1431830527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431830528, 1431838719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431838720, 1431846911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431846912, 1431855103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431855104, 1431863295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431863296, 1431863551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431863552, 1431863583, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431863584, 1431863807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431863808, 1431863839, N'PT', N'Portugal') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431863840, 1431867391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431867392, 1431867647, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431867648, 1431871487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431871488, 1431879679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431879680, 1431887871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431887872, 1431896063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431896064, 1431904255, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431904256, 1431912447, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431912448, 1431920639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431920640, 1431928831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431928832, 1431937023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431937024, 1431945215, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431945216, 1431953407, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431953408, 1431961599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431961600, 1431969791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431969792, 1431977983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431977984, 1431986175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431986176, 1431994367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1431994368, 1432002559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432002560, 1432010751, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432010752, 1432018943, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432018944, 1432027135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432027136, 1432035327, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432035328, 1432043519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432043520, 1432051711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432051712, 1432059903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432059904, 1432068095, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432068096, 1432076287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432076288, 1432084479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432084480, 1432092671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432092672, 1432100863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432100864, 1432109055, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432109056, 1432117247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432117248, 1432125439, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432125440, 1432127487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432127488, 1432127551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432127552, 1432129023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432129024, 1432129279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432129280, 1432131583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432131584, 1432133631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432133632, 1432150015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432150016, 1432158207, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432158208, 1432159487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432159488, 1432159743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432159744, 1432159871, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432159872, 1432160255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432160256, 1432160511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432160512, 1432165247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432165248, 1432165375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432165376, 1432166143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432166144, 1432166399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432166400, 1432174591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432174592, 1432182783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432182784, 1432190975, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432190976, 1432199167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432199168, 1432207359, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432207360, 1432215551, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432215552, 1432223743, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432223744, 1432240127, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432240128, 1432248319, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432248320, 1432255487, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432255488, 1432256511, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432256512, 1432264703, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432264704, 1432272895, N'AD', N'Andorra') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432272896, 1432281087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432281088, 1432289279, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432289280, 1432297471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432297472, 1432305663, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432305664, 1432313855, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432313856, 1432322047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432322048, 1432338431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432338432, 1432346623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432346624, 1432346879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432346880, 1432347135, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432347136, 1432352767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432352768, 1432353279, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432353280, 1432353791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1432353792, 1433403391, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433403392, 1433407711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433407712, 1433408255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433408256, 1433411583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433411584, 1433419775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433419776, 1433427967, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433427968, 1433436159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433436160, 1433444351, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433444352, 1433452543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433452544, 1433460735, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433460736, 1433468927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433468928, 1433477119, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433477120, 1433485311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433485312, 1433493503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433493504, 1433501695, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433501696, 1433509887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433509888, 1433518079, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433518080, 1433526271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433526272, 1433534463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433534464, 1433542655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433542656, 1433550847, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433550848, 1433559039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433559040, 1433567231, N'PS', N'Palestinian Territory, Occupied') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433567232, 1433575423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433575424, 1433583615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433583616, 1433591807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433591808, 1433599999, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433600000, 1433602303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433602304, 1433602319, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433602320, 1433608191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433608192, 1433616383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433616384, 1433624575, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433624576, 1433632767, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433632768, 1433640959, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433640960, 1433649151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433649152, 1433657343, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433657344, 1433665535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433665536, 1433673727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433673728, 1433681919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433681920, 1433690111, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433690112, 1433698303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433698304, 1433706495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433706496, 1433714687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433714688, 1433722879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433722880, 1433731071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433731072, 1433739263, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433739264, 1433747455, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433747456, 1433755647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433755648, 1433763839, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433763840, 1433765887, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433765888, 1433766911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433766912, 1433769983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433769984, 1433771007, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433771008, 1433772031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433772032, 1433788415, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433788416, 1433796607, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433796608, 1433804799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433804800, 1433812991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433812992, 1433821183, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433821184, 1433829375, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433829376, 1433833471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433833472, 1433835519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433835520, 1433837567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433837568, 1433839615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433839616, 1433841663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433841664, 1433843711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433843712, 1433845759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433845760, 1433847807, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433847808, 1433849855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433849856, 1433851903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433851904, 1433853951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433853952, 1433855999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433856000, 1433858047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433858048, 1433860095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433860096, 1433862143, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433862144, 1433862783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433862784, 1433862847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433862848, 1433864191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433864192, 1433866239, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433866240, 1433868287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433868288, 1433870335, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433870336, 1433872383, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433872384, 1433874431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433874432, 1433876479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433876480, 1433878527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433878528, 1433880575, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433880576, 1433882623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433882624, 1433884671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433884672, 1433886719, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433886720, 1433888767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433888768, 1433890815, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433890816, 1433892863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433892864, 1433894911, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433894912, 1433896959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433896960, 1433899007, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433899008, 1433901055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433901056, 1433905151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433905152, 1433907199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433907200, 1433909247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433909248, 1433911295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433911296, 1433913343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433913344, 1433917439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433917440, 1433919487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433919488, 1433921535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433921536, 1433923583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433923584, 1433924095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433924096, 1433924351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433924352, 1433924415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433924416, 1433925631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433925632, 1433927679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1433927680, 1434189823, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434189824, 1434451967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434451968, 1434517503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434550272, 1434583039, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434583040, 1434615807, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434615808, 1434648575, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434648576, 1434681343, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434681344, 1434714111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434714112, 1434746879, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434746880, 1434779647, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434779648, 1434812415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434812416, 1434845183, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434845184, 1434877951, N'FI', N'Finland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434877952, 1434910719, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434910720, 1434943487, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434943488, 1434976255, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1434976256, 1435107327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1435107328, 1435238399, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1435238400, 1435500543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1435500544, 1436024831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436024832, 1436090367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436090368, 1436155903, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436155904, 1436221439, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436221440, 1436286975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436286976, 1436418047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436418048, 1436420095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436420096, 1436422143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436422144, 1436424191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436424192, 1436426239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436426240, 1436428287, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436428288, 1436430335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436430336, 1436432383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436432384, 1436436479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436436480, 1436438527, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436438528, 1436440575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436440576, 1436442623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436442624, 1436444671, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436444672, 1436446719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436446720, 1436450815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436450816, 1436452863, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436452864, 1436454911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436454912, 1436456959, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436456960, 1436459007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436459008, 1436461055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436461056, 1436463103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436463104, 1436463951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436463952, 1436463967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436463968, 1436465151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436465152, 1436467199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436467200, 1436469247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436469248, 1436471295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436471296, 1436471743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436471744, 1436471807, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436471808, 1436473343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436473344, 1436475391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436475392, 1436477439, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436477440, 1436481535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436481536, 1436483583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436483584, 1436485631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436485632, 1436487679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436487680, 1436489727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436489728, 1436491775, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436491776, 1436495871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436495872, 1436497919, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436497920, 1436499967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436499968, 1436504063, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436504064, 1436508159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436508160, 1436510207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436510208, 1436512255, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436512256, 1436514303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436514304, 1436516351, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436516352, 1436520447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436520448, 1436522495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436522496, 1436524543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436524544, 1436526591, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436526592, 1436528639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436528640, 1436530687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436530688, 1436532735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436532736, 1436535839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436535840, 1436535855, N'ET', N'Ethiopia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436535856, 1436535943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436535944, 1436535951, N'ET', N'Ethiopia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436535952, 1436535999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436536000, 1436536007, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436536008, 1436536831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436536832, 1436538879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436538880, 1436540927, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436540928, 1436542975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436542976, 1436545023, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436545024, 1436547071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436547072, 1436549119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436549120, 1436811263, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1436811264, 1437073407, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1437073408, 1437335551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1437335552, 1437597695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1437597696, 1438121983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438121984, 1438187519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438187520, 1438253055, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438253056, 1438318591, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438318592, 1438384127, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438384128, 1438400511, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438400512, 1438433279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438433280, 1438515199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438515200, 1438523391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438523392, 1438524063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438524064, 1438580735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438580736, 1438646271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438646272, 1438662655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438662656, 1438679039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438679040, 1438695423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438695424, 1438711807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438711808, 1438728191, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438728192, 1438744575, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438744576, 1438760959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438760960, 1438777343, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438777344, 1438793727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438793728, 1438810111, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438810112, 1438826495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438826496, 1438842879, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438842880, 1438859263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438859264, 1438873357, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438873358, 1438873359, N'A1', N'Anonymous Proxy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438873360, 1438873365, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438873366, 1438873369, N'A1', N'Anonymous Proxy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438873370, 1438874389, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438874390, 1438874397, N'A1', N'Anonymous Proxy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438874398, 1438874411, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438874412, 1438874413, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438874414, 1438875223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438875224, 1438875255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438875256, 1438875647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438875648, 1438875903, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438875904, 1438876159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438876160, 1438876415, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438876416, 1438876927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438876928, 1438877183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438877184, 1438877439, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438877440, 1438877695, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438877696, 1438877951, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438877952, 1438878719, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438878720, 1438878975, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438878976, 1438880255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438880256, 1438880767, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438880768, 1438881791, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438881792, 1438892031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438892032, 1438892287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438892288, 1438900223, N'AQ', N'Antarctica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438900224, 1438908415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438908416, 1438924799, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438924800, 1438941183, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438941184, 1438957567, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438957568, 1438973951, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438973952, 1438994175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438994176, 1438994431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438994432, 1438994619, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438994620, 1438994623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438994624, 1438994751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438994752, 1438994759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438994760, 1438994763, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438994764, 1438995039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438995040, 1438995047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438995048, 1438995067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438995068, 1438995071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1438995072, 1439000575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439000576, 1439000831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439000832, 1439000839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439000840, 1439002623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439002624, 1439006567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439006568, 1439006575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439006576, 1439006671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439006672, 1439006675, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439006676, 1439006719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439006720, 1439023103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439023104, 1439039487, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439039488, 1439055871, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439055872, 1439072255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439072256, 1439088639, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439088640, 1439105023, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439105024, 1439121407, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439121408, 1439154175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439154176, 1439170559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439170560, 1439236095, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439236096, 1439301631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439301632, 1439367167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439367168, 1439375375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439375376, 1439383295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439383296, 1439432703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439432704, 1439498239, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439498240, 1439535103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439535104, 1439536127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439536128, 1439549439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439549440, 1439550463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439550464, 1439556351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439556352, 1439556607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439556608, 1439558655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439558656, 1439558911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439558912, 1439560191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439560192, 1439560447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439560448, 1439563775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439563776, 1439629311, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439629312, 1439694847, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439694848, 1439825919, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439825920, 1439956991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1439956992, 1440251903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440251904, 1440284671, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440284672, 1440317439, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440317440, 1440350207, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440350208, 1440382975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440382976, 1440415743, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440415744, 1440448511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440448512, 1440481279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440481280, 1440514047, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440514048, 1440546815, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440546816, 1440579583, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440579584, 1440645119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440645120, 1440677887, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440677888, 1440710655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440710656, 1440743423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1440743424, 1441267711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441267712, 1441275903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441275904, 1441284095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441284096, 1441292287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441292288, 1441300479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441300480, 1441308671, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441308672, 1441312767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441312768, 1441316863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441316864, 1441325055, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441325056, 1441327303, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441327304, 1441327311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441327312, 1441333247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441333248, 1441349631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441349632, 1441357823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441357824, 1441366015, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441366016, 1441374207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441374208, 1441382399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441382400, 1441390591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441390592, 1441398783, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441398784, 1441415167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441415168, 1441423359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441423360, 1441431551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441431552, 1441433087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441433088, 1441433599, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441433600, 1441439743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441439744, 1441447935, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441447936, 1441456127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441456128, 1441464319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441464320, 1441468671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441468672, 1441470719, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441470720, 1441472511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441472512, 1441480703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441480704, 1441488895, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441488896, 1441492223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441492224, 1441492479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441492480, 1441497087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441497088, 1441505279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441505280, 1441521663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441521664, 1441529855, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441529856, 1441538047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441538048, 1441546239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441546240, 1441554431, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441554432, 1441562623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441562624, 1441570815, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441570816, 1441579007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441579008, 1441587199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441587200, 1441599231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441599232, 1441600511, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441600512, 1441603583, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441603584, 1441611775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441611776, 1441619967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441619968, 1441628159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441628160, 1441636351, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441636352, 1441644543, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441644544, 1441652735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441652736, 1441660927, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441669120, 1441677311, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441677312, 1441685503, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441685504, 1441693695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441693696, 1441701887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441701888, 1441710079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441710080, 1441718271, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441718272, 1441726463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441726464, 1441734655, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441734656, 1441742847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441742848, 1441751039, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441751040, 1441755519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441755520, 1441755583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441755584, 1441759231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441759232, 1441767423, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441767424, 1441775615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441775616, 1441783807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441783808, 1441791999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1441792000, 1442316287, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442316288, 1442316583, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442316584, 1442316591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442316592, 1442321455, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442321456, 1442321463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442321464, 1442381823, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442381824, 1442447359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442447360, 1442512895, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442512896, 1442578431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442578432, 1442643967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442643968, 1442709503, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442709504, 1442775039, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442775040, 1442779135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442779136, 1442783231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442783232, 1442787327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442787328, 1442791423, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442791424, 1442795519, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442795520, 1442799615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442799616, 1442803711, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442803712, 1442807807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442807808, 1442811903, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442811904, 1442815999, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442816000, 1442820095, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442820096, 1442824191, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442824192, 1442828287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442828288, 1442832383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442832384, 1442836479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442836480, 1442840575, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1442840576, 1444937727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1444937728, 1445068799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1445068800, 1445199871, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1445199872, 1445330943, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1445330944, 1445396479, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1445396480, 1445429247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1445429248, 1445462015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1445462016, 1445986303, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1445986304, 1446051839, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446051840, 1446117375, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446117376, 1446182911, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446182912, 1446248447, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446248448, 1446313983, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446313984, 1446445055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446445056, 1446510591, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446510592, 1446543359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446543360, 1446576127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446576128, 1446608895, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446608896, 1446641663, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446641664, 1446674431, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446674432, 1446707199, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446707200, 1446739967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446739968, 1446772735, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446772736, 1446805503, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446805504, 1446838271, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446838272, 1446862079, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446862080, 1446862591, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446862592, 1446871039, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446871040, 1446903807, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446903808, 1446904071, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904072, 1446904079, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904080, 1446904095, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904096, 1446904111, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904112, 1446904119, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904120, 1446904127, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904128, 1446904135, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904136, 1446904143, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904144, 1446904151, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904152, 1446904159, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904160, 1446904167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904168, 1446904175, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904176, 1446904831, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904832, 1446904835, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446904836, 1446920191, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446920192, 1446936575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446936576, 1446952959, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446952960, 1446969343, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446969344, 1446985727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1446985728, 1447010303, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1447010304, 1447018495, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1447018496, 1447026687, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1447026688, 1448083455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1448083456, 1449132031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449132032, 1449394175, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449394176, 1449459711, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449459712, 1449525247, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449525248, 1449590783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449590784, 1449656319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449656320, 1449717759, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449717760, 1449718783, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449718784, 1449840639, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449840640, 1449852927, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449852928, 1449918463, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449918464, 1449951231, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449951232, 1449983999, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449984000, 1449988095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449988096, 1449989119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449989120, 1449992191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1449992192, 1450000127, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450000128, 1450000383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450000384, 1450008575, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450008576, 1450016767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450016768, 1450024959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450024960, 1450033151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450033152, 1450041343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450041344, 1450049535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450049536, 1450057727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450057728, 1450065919, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450065920, 1450066175, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450066176, 1450074111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450074112, 1450082303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450082304, 1450088447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450088448, 1450088959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450088960, 1450090495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450090496, 1450106879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450106880, 1450115071, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450115072, 1450123263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450123264, 1450131455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450131456, 1450139647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450139648, 1450147839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450147840, 1450156031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450156032, 1450164223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450164224, 1450166271, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450166272, 1450168319, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450168320, 1450170367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450170368, 1450172415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450172416, 1450174463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450174464, 1450176511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450176512, 1450178559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450178560, 1450180607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450180608, 1450311679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450311680, 1450442751, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450442752, 1450704895, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450704896, 1450860543, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450860544, 1450864639, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1450864640, 1451173887, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1451173888, 1451175935, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1451175936, 1451229183, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1451229184, 1455423487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1455423488, 1459617791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1459617792, 1461714943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1461714944, 1462763519, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1462763520, 1463812095, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1463812096, 1464074239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464074240, 1464095743, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464095744, 1464111103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464111104, 1464120319, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464120320, 1464139775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464139776, 1464172287, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464172288, 1464336383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464336384, 1464467455, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464467456, 1464598527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464598528, 1464860671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1464860672, 1465384959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1465384960, 1465647103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1465647104, 1465909247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1465909248, 1465942015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1465942016, 1465974783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1465974784, 1466007551, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466007552, 1466040319, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466040320, 1466073087, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466073088, 1466097663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466097664, 1466099711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466099712, 1466101759, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466101760, 1466103807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466103808, 1466104575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466104576, 1466105599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466105600, 1466105855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466114048, 1466122239, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466122240, 1466130431, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466130432, 1466138623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466138624, 1466171391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466171392, 1466204159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466204160, 1466236927, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466236928, 1466241023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466241024, 1466245119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466249216, 1466253311, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466253312, 1466257407, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466257408, 1466261503, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466261504, 1466265599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466265600, 1466269695, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466269696, 1466302463, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466302464, 1466335231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466335232, 1466367999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466368000, 1466400767, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466400768, 1466433535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466433536, 1466499071, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466499072, 1466564607, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466564608, 1466630143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466630144, 1466695679, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466695680, 1466761215, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466761216, 1466826751, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466826752, 1466892287, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466892288, 1466957823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1466957824, 1467219967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467219968, 1467236351, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467236352, 1467252735, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467252736, 1467269119, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467269120, 1467285503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467285504, 1467301887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467301888, 1467318271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467318272, 1467334655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467334656, 1467351039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467351040, 1467367423, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467367424, 1467383807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467383808, 1467400191, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467400192, 1467416575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467416576, 1467432959, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467432960, 1467449343, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467449344, 1467457535, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467457536, 1467465727, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467465728, 1467465759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467465760, 1467465791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467465792, 1467465855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467465856, 1467466015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467466016, 1467466495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467466496, 1467466751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467466752, 1467467903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467467904, 1467468031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467468032, 1467468111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467468112, 1467468119, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467468120, 1467473919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467473920, 1467482111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467482112, 1467613183, N'BG', N'Bulgaria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467613184, 1467744255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467744256, 1467875327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467875328, 1467940863, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1467940864, 1468006399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1468006400, 1472200703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472200704, 1472226463, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472226464, 1472226479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472226480, 1472259207, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472259208, 1472259231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472259232, 1472259247, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472259248, 1472259255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472259256, 1472264799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472264800, 1472264807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472264808, 1472266239, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472266240, 1472269375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472269376, 1472269379, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472269380, 1472331775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472331776, 1472397311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472397312, 1472462847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472462848, 1472528383, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472528384, 1472593919, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472593920, 1472659455, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472659456, 1472724991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472724992, 1472856063, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472856064, 1472987135, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1472987136, 1473249279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1473249280, 1473642495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1473642496, 1473740799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1473740800, 1473773567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1473773568, 1474297855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474297856, 1474330623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474330624, 1474396159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474396160, 1474428927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474428928, 1474461695, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474461696, 1474494463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474494464, 1474527231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474527232, 1474559999, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474560000, 1474592767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474592768, 1474625535, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474625536, 1474658303, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474658304, 1474691071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474691072, 1474723839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474756608, 1474822143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474822144, 1474887679, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474887680, 1474888687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474888688, 1474888703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474888704, 1474953215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1474953216, 1475018751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475018752, 1475084287, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475084288, 1475086335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475086336, 1475092479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475092480, 1475094527, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475094528, 1475096575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475096576, 1475098623, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475098624, 1475102719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475102720, 1475104767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475104768, 1475106815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475106816, 1475108863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475108864, 1475110911, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475110912, 1475112959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475112960, 1475115007, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475115008, 1475117055, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475117056, 1475119103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475119104, 1475121151, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475121152, 1475123199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475123200, 1475123263, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475123264, 1475125247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475125248, 1475127295, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475127296, 1475127551, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475127552, 1475129343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475129344, 1475131391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475131392, 1475133439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475133440, 1475135487, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475135488, 1475137535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475137536, 1475139583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475139584, 1475141631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475141632, 1475143679, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475143680, 1475145727, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475145728, 1475147775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475147776, 1475149823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475149824, 1475151871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475151872, 1475153919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475153920, 1475155967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475155968, 1475158015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475158016, 1475160063, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475160064, 1475162111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475162112, 1475170303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475170304, 1475172351, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475172352, 1475174399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475174400, 1475176447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475176448, 1475178495, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475178496, 1475180543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475180544, 1475184639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475184640, 1475186687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475186688, 1475188735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475188736, 1475190783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475190784, 1475192831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475192832, 1475194879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475194880, 1475196927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475196928, 1475198975, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475198976, 1475201023, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475201024, 1475203071, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475203072, 1475205119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475205120, 1475206911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475206912, 1475206927, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475206928, 1475206943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475206944, 1475206959, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475206960, 1475206975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475206976, 1475206991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475206992, 1475207007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207008, 1475207023, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207024, 1475207039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207040, 1475207055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207056, 1475207071, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207072, 1475207087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207088, 1475207103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207104, 1475207151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207152, 1475207167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207168, 1475207263, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207264, 1475207295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207296, 1475207423, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207424, 1475207679, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475207680, 1475208191, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475208192, 1475209215, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475209216, 1475211263, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475211264, 1475213311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475213312, 1475215359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475215360, 1475223551, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475223552, 1475233791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475233792, 1475235839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475235840, 1475237887, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475237888, 1475239935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475239936, 1475241983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475241984, 1475244031, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244032, 1475244159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244160, 1475244175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244176, 1475244191, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244192, 1475244207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244208, 1475244223, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244224, 1475244287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244288, 1475244543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475244544, 1475245311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475245312, 1475246079, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475246080, 1475248127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475248128, 1475250175, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475250176, 1475252223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475252224, 1475254271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475254272, 1475256319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475256320, 1475258367, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475258368, 1475260415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475260416, 1475262463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475262464, 1475266559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475266560, 1475268607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475268608, 1475270655, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475270656, 1475272703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475272704, 1475274751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475274752, 1475276799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475276800, 1475278847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475278848, 1475280895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475280896, 1475282943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475282944, 1475284991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475284992, 1475287039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475287040, 1475289087, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475289088, 1475291135, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475291136, 1475293183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475293184, 1475295231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475295232, 1475297279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475297280, 1475299327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475299328, 1475301375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475301376, 1475303423, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475303424, 1475305471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475305472, 1475307519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475307520, 1475309567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475309568, 1475311615, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475311616, 1475313663, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475313664, 1475317759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475317760, 1475319807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475319808, 1475321855, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475321856, 1475323903, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475323904, 1475327999, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475328000, 1475330047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475330048, 1475332095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475332096, 1475334143, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475334144, 1475336191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475336192, 1475338239, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475338240, 1475340287, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475340288, 1475342335, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475342336, 1475344383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475344384, 1475346431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475346432, 1475362815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475362816, 1475379199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475379200, 1475411967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475411968, 1475428351, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475428352, 1475444735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475444736, 1475461119, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475461120, 1475477503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475477504, 1475493887, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475493888, 1475510271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475510272, 1475543039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475543040, 1475559423, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475575808, 1475592191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475592192, 1475608575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475608576, 1475624959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475624960, 1475641343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475641344, 1475657727, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475657728, 1475674111, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475674112, 1475690495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475690496, 1475706879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475706880, 1475723263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475723264, 1475739647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475739648, 1475756031, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475756032, 1475772415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475772416, 1475788799, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475788800, 1475805183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475805184, 1475821567, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475821568, 1475837951, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475837952, 1475846143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475846144, 1475854335, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475854336, 1475862527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475862528, 1475866623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475866624, 1475868671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475868672, 1475870719, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475870720, 1475878911, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475878912, 1475887103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475887104, 1475895295, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475895296, 1475895551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475895552, 1475895807, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475895808, 1475911679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475911680, 1475919871, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475919872, 1475928063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475928064, 1475952639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475952640, 1475952895, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475952896, 1475955199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475955200, 1475955327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475955328, 1475955455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475955456, 1475955519, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475955520, 1475955711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475955712, 1475955839, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475955840, 1475955967, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475955968, 1475956223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475956224, 1475956479, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475956480, 1475960831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475960832, 1475961087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475961088, 1475969023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475969024, 1475977215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475977216, 1475985407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475985408, 1475993599, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1475993600, 1476009983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476009984, 1476018175, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476018176, 1476026367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476026368, 1476034559, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476034560, 1476042751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476042752, 1476050943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476050944, 1476067327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476067328, 1476075519, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476075520, 1476083711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476083712, 1476116479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476116480, 1476124671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476124672, 1476132863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476132864, 1476141055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476141056, 1476149247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476149248, 1476157439, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476157440, 1476165375, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476165376, 1476165631, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476165632, 1476173823, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476173824, 1476182015, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476182016, 1476190207, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476190208, 1476198399, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476198400, 1476206591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476206592, 1476214783, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476214784, 1476222975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476222976, 1476231167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476231168, 1476239359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476239360, 1476247551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476247552, 1476263935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476263936, 1476272127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476272128, 1476280319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476280320, 1476288511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476288512, 1476296703, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476296704, 1476304895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476304896, 1476313087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476313088, 1476317183, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476317184, 1476317695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476317696, 1476321279, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476321280, 1476329471, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476329472, 1476337663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476337664, 1476345855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476345856, 1476354047, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476354048, 1476357119, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476357120, 1476362239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476362240, 1476370431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476370432, 1476378623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476378624, 1476386815, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476386816, 1476395007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1476395008, 1478492159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1478492160, 1480589311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1480589312, 1481637887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481637888, 1481646079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481646080, 1481654271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481654272, 1481662463, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481662464, 1481671167, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481671168, 1481671423, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481671424, 1481678847, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481678848, 1481687039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481687040, 1481695231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481695232, 1481703423, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481703424, 1481711615, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481711616, 1481719807, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481719808, 1481727999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481728000, 1481736191, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481736192, 1481744383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481744384, 1481752575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481752576, 1481760767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481760768, 1481768959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481768960, 1481777151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481777152, 1481785343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481785344, 1481793535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481793536, 1481801727, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481801728, 1481809919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481809920, 1481818111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481818112, 1481826303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481826304, 1481834495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481834496, 1481842687, N'GL', N'Greenland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481842688, 1481850879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481850880, 1481859071, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481859072, 1481867263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481867264, 1481875455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481875456, 1481883647, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481883648, 1481891839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481891840, 1481900031, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481900032, 1481908223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481908224, 1481916415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481916416, 1481924607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481924608, 1481932799, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481932800, 1481940991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481940992, 1481949183, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481949184, 1481957375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481957376, 1481965567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481965568, 1481973759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481973760, 1481981951, N'FO', N'Faroe Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481981952, 1481990143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481990144, 1481998335, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1481998336, 1482006527, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482006528, 1482022911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482022912, 1482031103, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482031104, 1482039295, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482039296, 1482047487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482047488, 1482055679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482055680, 1482063871, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482063872, 1482072063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482072064, 1482080255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482080256, 1482088447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482088448, 1482096639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482096640, 1482104831, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482104832, 1482113023, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482113024, 1482121215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482121216, 1482129407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482129408, 1482137599, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482137600, 1482145791, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482145792, 1482153983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482153984, 1482162175, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482162176, 1482686463, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482686464, 1482948607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1482948608, 1483210751, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1483210752, 1483735039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1483735040, 1483866111, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1483997184, 1484128255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1484128256, 1484259327, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1484259328, 1484783615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1484783616, 1484849151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1484849152, 1484914687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1484914688, 1484980223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1484980224, 1485045759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1485045760, 1485111295, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1485111296, 1485242367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1485242368, 1485307903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1485307904, 1485832191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1485832192, 1485963263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1485963264, 1486028799, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486028800, 1486061567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486061568, 1486094335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486094336, 1486127103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486127104, 1486159871, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486159872, 1486192639, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486192640, 1486225407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486225408, 1486258175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486258176, 1486290943, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486290944, 1486292991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486292992, 1486295039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486295040, 1486297087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486297088, 1486299135, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486299136, 1486301183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486301184, 1486303231, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486303232, 1486305279, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486305280, 1486307327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486307328, 1486309375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486309376, 1486311423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486311424, 1486313471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486313472, 1486317567, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486317568, 1486321663, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486321664, 1486323711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486323712, 1486325759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486325760, 1486327807, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486327808, 1486329855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486329856, 1486331903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486331904, 1486331919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486331920, 1486333951, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486333952, 1486335999, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486336000, 1486338047, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486338048, 1486340095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486340096, 1486342143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486342144, 1486344191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486344192, 1486346239, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486346240, 1486348287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486348288, 1486350335, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486350336, 1486352383, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486352384, 1486354431, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486354432, 1486356479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486356480, 1486618623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486618624, 1486684159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486684160, 1486749695, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486749696, 1486815231, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486815232, 1486880767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1486880768, 1488977919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1488977920, 1489240063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489240064, 1489305599, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489305600, 1489338367, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489371136, 1489436671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489436672, 1489502207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489502208, 1489534975, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489534976, 1489567743, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489567744, 1489600511, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489600512, 1489633279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489633280, 1489666047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489666048, 1489698815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489698816, 1489731583, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489731584, 1489764351, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489764352, 1489797119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489797120, 1489829887, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489829888, 1489862655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489862656, 1489928191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489928192, 1489960959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489960960, 1489993727, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1489993728, 1490026495, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490026496, 1490042879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490042880, 1490059263, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490059264, 1490075647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490075648, 1490092031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490092032, 1490108415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490108416, 1490113535, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490113536, 1490124287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490124288, 1490124799, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490124800, 1490157567, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490157568, 1490173951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490173952, 1490190335, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490190336, 1490206719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490206720, 1490223103, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490223104, 1490255871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490255872, 1490272255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490272256, 1490288639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490288640, 1490305023, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490305024, 1490321407, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490321408, 1490337791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490337792, 1490354175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490354176, 1490370559, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490386944, 1490403327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490403328, 1490419711, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490419712, 1490436095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490436096, 1490452479, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490452480, 1490468863, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490468864, 1490484223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490484224, 1490484479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490484480, 1490501631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490501632, 1490518015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490518016, 1490534399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490534400, 1490550783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490550784, 1490616319, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490616320, 1490681855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490681856, 1490747391, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490747392, 1490812927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490812928, 1490878463, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490878464, 1490879487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490879488, 1490880511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490880512, 1490881535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490881536, 1490882559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490882560, 1490883583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490883584, 1490943999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1490944000, 1491075071, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1491075072, 1493172223, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1493172224, 1493303295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1493303296, 1493434367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1493434368, 1493565439, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1493565440, 1493696511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1493696512, 1493958655, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494220800, 1494228991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494228992, 1494237183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494745088, 1494777855, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494810624, 1494843391, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494843392, 1494876159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494876160, 1494908927, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494908928, 1494941695, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494941696, 1494974463, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1494974464, 1495007231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1495007232, 1495039999, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1495269376, 1495326719, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1495326720, 1495330815, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1495330816, 1495334911, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1495334912, 1495335935, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1495335936, 1496317951, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1496317952, 1497366527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1497366528, 1498415103, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1498415104, 1499463679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1499463680, 1499594751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1499594752, 1499725823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1499725824, 1499856895, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1499856896, 1499987967, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1499987968, 1499996159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1499996160, 1500004351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500004352, 1500020735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500020736, 1500028927, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500028928, 1500037119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500037120, 1500045311, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500045312, 1500061695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500061696, 1500069887, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500069888, 1500078079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500078080, 1500086271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500086272, 1500094463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500094464, 1500102655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500102656, 1500110847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500110848, 1500119039, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500119040, 1500127231, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500127232, 1500135423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500135424, 1500135551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500135552, 1500135615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500135616, 1500135679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500135680, 1500135935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500135936, 1500138239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500138240, 1500138367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500138368, 1500143615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500143616, 1500151807, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500151808, 1500153855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500153856, 1500155903, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500155904, 1500157951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500157952, 1500159999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500160000, 1500162047, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500162048, 1500164095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500164096, 1500166143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500166144, 1500168191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500168192, 1500170239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500170240, 1500172287, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500172288, 1500174335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500174336, 1500176383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500176384, 1500178431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500178432, 1500180479, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500180480, 1500180735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500180736, 1500180863, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500180864, 1500182527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500182528, 1500184575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500184576, 1500186623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500186624, 1500188671, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500188672, 1500190719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500190720, 1500192767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500192768, 1500194815, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500194816, 1500196863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500196864, 1500198911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500198912, 1500200959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500200960, 1500203007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500203008, 1500205055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500205056, 1500207103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500207104, 1500209151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500209152, 1500211199, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500211200, 1500217343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500217344, 1500219391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500219392, 1500221439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500221440, 1500223487, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500223488, 1500225535, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500225536, 1500227583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500227584, 1500229631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500229632, 1500231679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500231680, 1500233727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500233728, 1500237823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500237824, 1500241919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500241920, 1500243967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500243968, 1500246015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500246016, 1500248063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500248064, 1500250111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500250112, 1500266495, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500266496, 1500282879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500282880, 1500299263, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500299264, 1500315647, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500315648, 1500332031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500332032, 1500348415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500348416, 1500397567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500397568, 1500413951, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500413952, 1500430335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500430336, 1500446719, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500446720, 1500463103, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500463104, 1500479487, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500479488, 1500495871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500495872, 1500512255, N'BA', N'Bosnia and Herzegovina') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500512256, 1500643327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500643328, 1500774399, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500774400, 1500905471, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1500905472, 1501036543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1501036544, 1501298687, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1501298688, 1501560831, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1501560832, 1501822975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1501822976, 1502085119, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502085120, 1502216191, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502216192, 1502347263, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502347264, 1502478335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502478336, 1502609407, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502609408, 1502610175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502610176, 1502625791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502625792, 1502642175, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502642176, 1502658559, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502658560, 1502674943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502674944, 1502691327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502691328, 1502692415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502692416, 1502692479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502692480, 1502707711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502707712, 1502724095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502724096, 1502740479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502740480, 1502756863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502756864, 1502773247, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502773248, 1502789631, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502789632, 1502806015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502806016, 1502822399, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502822400, 1502838783, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502838784, 1502855167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502855168, 1502871551, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502871552, 1502887935, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502887936, 1502904319, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502904320, 1502920703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502920704, 1502937087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502937088, 1502953471, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502953472, 1502969855, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502969856, 1502974463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502974464, 1502975487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502975488, 1502975743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502975744, 1502975999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502976000, 1502977055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502977056, 1502978047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502978048, 1502979103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502979104, 1502979111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502979112, 1502980095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502980096, 1502980159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502980160, 1502980351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502980352, 1502980607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502980608, 1502986255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502986256, 1502986495, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502986496, 1502986511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502986512, 1502986751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502986752, 1502987455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502987456, 1502987519, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502987520, 1502987775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502987776, 1502988031, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1502988032, 1503002623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503002624, 1503019007, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503019008, 1503051775, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503051776, 1503068159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503068160, 1503084543, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503084544, 1503100927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503100928, 1503117311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503117312, 1503133695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503133696, 1503395839, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503395840, 1503657983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503657984, 1503690751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503690752, 1503723519, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503723520, 1503789055, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503789056, 1503821823, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503854592, 1503887359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503887360, 1503920127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503920128, 1503985663, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1503985664, 1504018431, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504018432, 1504051199, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504051200, 1504083967, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504083968, 1504116735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504116736, 1504149503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504149504, 1504247807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504247808, 1504313343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504313344, 1504378879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504378880, 1504444415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504444416, 1504509951, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504509952, 1504575487, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504575488, 1504641023, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504641024, 1504706559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504706560, 1504837631, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504837632, 1504968703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1504968704, 1505099775, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505099776, 1505230847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505230848, 1505239039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505239040, 1505247231, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505247232, 1505255423, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505255424, 1505263615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505263616, 1505271807, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505271808, 1505273087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505273088, 1505273091, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505273092, 1505279999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505280000, 1505296383, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505296384, 1505304575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505304576, 1505312767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505312768, 1505320959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505320960, 1505325055, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505325056, 1505329151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505329152, 1505337343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505337344, 1505345535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505345536, 1505353727, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505353728, 1505361919, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505361920, 1505370111, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505370112, 1505378303, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505378304, 1505386495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505386496, 1505394687, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505394688, 1505402879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505402880, 1505411071, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505411072, 1505419263, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505419264, 1505427455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505427456, 1505435647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505435648, 1505443839, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505443840, 1505460223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505460224, 1505461247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505461248, 1505476607, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505476608, 1505484799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505484800, 1505492991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505492992, 1505501183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505501184, 1505509375, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505509376, 1505517567, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505517568, 1505525759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505525760, 1505533951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505533952, 1505542143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505542144, 1505550335, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505550336, 1505566719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505566720, 1505574911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505574912, 1505583103, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505583104, 1505591295, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505591296, 1505607679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505607680, 1505615871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505615872, 1505624063, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505624064, 1505632255, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505632256, 1505648639, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505648640, 1505656831, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505656832, 1505665023, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505665024, 1505673215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505673216, 1505681407, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505681408, 1505689599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505689600, 1505697791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505697792, 1505705983, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505705984, 1505714175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505714176, 1505722367, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505722368, 1505738751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505738752, 1505746943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505746944, 1505755135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1505755136, 1506017279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506017280, 1506279423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506279424, 1506312191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506312192, 1506316287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506316288, 1506322431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506322432, 1506324479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506324480, 1506328575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506328576, 1506330623, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506330624, 1506332671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506332672, 1506334719, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506344960, 1506377727, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506377728, 1506410495, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506410496, 1506443263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506443264, 1506445311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506445312, 1506445519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506445520, 1506447359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506447360, 1506447455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506447456, 1506447487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506447488, 1506447871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506447872, 1506448895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506448896, 1506449151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506449152, 1506450431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506450432, 1506450719, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506450720, 1506454527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506454528, 1506455039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506455040, 1506475519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506475520, 1506476031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506476032, 1506508799, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506508800, 1506541567, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506541568, 1506574335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506574336, 1506591743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506591744, 1506607103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506607104, 1506639871, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506639872, 1506672639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506705408, 1506740223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506740224, 1506742271, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506742272, 1506744319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506744320, 1506746367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506746368, 1506748415, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506748416, 1506750463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506750464, 1506752511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506752512, 1506754559, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506754560, 1506758655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506758656, 1506760703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506760704, 1506764799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506764800, 1506766847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506766848, 1506768895, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506768896, 1506770943, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506770944, 1506775039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506775040, 1506777087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506777088, 1506783231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506803712, 1506869247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506869248, 1506934783, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1506934784, 1507000319, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507000320, 1507065855, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507065856, 1507131391, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507131392, 1507196927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507196928, 1507262463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507262464, 1507327999, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507328000, 1507393535, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507393536, 1507459071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1507852288, 1508114431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508114432, 1508376575, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508376576, 1508392959, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508392960, 1508442111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508442112, 1508458495, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508458496, 1508474879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508474880, 1508491263, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508491264, 1508507647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508507648, 1508524031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508524032, 1508540415, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508540416, 1508556799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508556800, 1508573183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508573184, 1508589567, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508589568, 1508605951, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508605952, 1508622335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508622336, 1508638719, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508638720, 1508655103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508655104, 1508671487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508671488, 1508687871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508687872, 1508704255, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508704256, 1508720639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508720640, 1508737023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508835328, 1508851711, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1508900864, 1509163007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509163008, 1509425151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509425152, 1509429247, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509429248, 1509433343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509433344, 1509437439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509437440, 1509441535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509441536, 1509445631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509445632, 1509449727, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1509949440, 1518338047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1522532352, 1523580927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1524629504, 1525678079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1555891392, 1555891407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1564695840, 1564695855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1584782000, 1584782015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1607925760, 1607991295, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1609950720, 1609950975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1862270976, 1862271231, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1883218548, 1883218551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1883218552, 1883218555, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (1883218580, 1883218583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030043136, 2030043391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030059520, 2030108671, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030108672, 2030125055, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030125056, 2030141439, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030141440, 2030239743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030305280, 2030436351, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030436352, 2030501887, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2030567424, 2032926719, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2032926720, 2032992255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033057792, 2033319935, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033319936, 2033321983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033336320, 2033352703, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033352704, 2033356799, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033369088, 2033377279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033385472, 2033451007, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033451008, 2033483775, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033516544, 2033582079, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033582080, 2033614847, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033614848, 2033623039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033664000, 2033696767, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033696768, 2033713151, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2033713152, 2033975295, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2034213776, 2034213779, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2034213780, 2034213783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2034213788, 2034213791, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2034237440, 2034499583, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2034499584, 2034761727, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2034761728, 2034892799, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2035023872, 2035154943, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2035154944, 2035220479, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2035220480, 2035253247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2035286016, 2035548159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2035810304, 2035875839, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2035875840, 2035941375, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2036596736, 2036600831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2038382592, 2038415359, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2038415360, 2038423551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2038431744, 2040528895, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2042626048, 2044723199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2046705664, 2046722047, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2046722048, 2046754815, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2046754816, 2046820607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2050048000, 2050064383, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2050064384, 2050080767, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2050097152, 2050099199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2053324800, 2053332991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2053341184, 2053373951, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2053373952, 2053378047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2059862016, 2059927551, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2059927552, 2059935743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2063482880, 2063499263, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2063499264, 2063532031, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2063532032, 2063597823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2066825216, 2066833407, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2066841600, 2066874367, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2066874368, 2066876415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2070102016, 2070118399, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2070118400, 2070151167, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2070151168, 2070155263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2076672000, 2076704767, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2076704768, 2076712959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080276480, 2080309247, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080309248, 2080374783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080374784, 2080636927, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080636928, 2080702463, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080702464, 2080767999, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080768000, 2080776191, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080784384, 2080800767, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080800768, 2080817151, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080817152, 2080825343, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080833536, 2080899071, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2080899072, 2081423359, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2081423360, 2081554431, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2081554432, 2081619967, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2081619968, 2081636351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2081685504, 2081816575, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2081947648, 2082209791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2082209792, 2082275327, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2082275328, 2082308095, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2082308096, 2082316287, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2082324480, 2082340863, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2082340864, 2082406399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2082471936, 2083028991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083028992, 2083045375, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083061760, 2083127295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083127296, 2083160063, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083192832, 2083258367, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083258368, 2083323903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083389440, 2083454975, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083454976, 2083471359, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083471360, 2083487743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083487744, 2083504127, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083520512, 2083734583, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083734584, 2083734591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2083734592, 2084569087, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2084569088, 2085617663, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2085617664, 2085683199, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2085683200, 2085748735, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2085748736, 2085814271, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2085814272, 2085847039, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2085847040, 2086141951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2086141952, 2086666239, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2086666240, 2087190527, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087190528, 2087452671, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087452672, 2087452927, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087454720, 2087456767, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087456768, 2087458815, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087458816, 2087460863, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087460864, 2087462911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087462912, 2087464959, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087464960, 2087467007, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087467008, 2087469055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087469056, 2087485439, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087485440, 2087501823, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087501824, 2087518207, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087520256, 2087522303, N'FM', N'Micronesia, Federated States of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087534592, 2087542783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087550976, 2087649279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087649280, 2087714815, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2087714816, 2088239103, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2088239104, 2088370175, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2088501248, 2088632319, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2088763392, 2089287679, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2089287680, 2089549823, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2089549824, 2089943039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2089943040, 2089959423, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2089959424, 2089967615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2089975808, 2090041343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090041344, 2090074111, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090074112, 2090401791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090467328, 2090565631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090565632, 2090573823, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090582016, 2090590207, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090598400, 2090663935, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090663936, 2090680319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090680320, 2090688511, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090696704, 2090729471, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090729472, 2090733567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090762240, 2090778623, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090778624, 2090786815, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090795008, 2090860543, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2090860544, 2091384831, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2091384832, 2091450367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2091646976, 2091778047, N'CN', N'China') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2091909120, 2092957695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2092957696, 2093088767, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093088768, 2093154303, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093154304, 2093187071, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093219840, 2093285375, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093285376, 2093301759, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093318144, 2093383679, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093416448, 2093432831, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093432832, 2093449215, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093449216, 2093481983, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2093481984, 2094006271, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2094006272, 2094268415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2094530560, 2094596095, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2094596096, 2094628863, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2094661632, 2094792703, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2094792704, 2096136191, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096168960, 2096234495, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096234496, 2096300031, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096300032, 2096332799, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096332800, 2096340991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096349184, 2096365567, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096365568, 2096431103, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096496640, 2096513023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096529408, 2096627711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096627712, 2096889855, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2096889856, 2096955391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097020928, 2097037311, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097037312, 2097053695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097053696, 2097086463, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097086464, 2097479679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097479680, 2097545215, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097545216, 2097610751, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097610752, 2097643519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097643520, 2097676287, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2097676288, 2098200575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2098200576, 2098724863, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2098724864, 2098855935, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2098987008, 2099183615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2099183616, 2099199999, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2099200000, 2099216383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2099216384, 2099232767, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2099232768, 2100297727, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2100297728, 2100854783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2100887552, 2100953087, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2100953088, 2100969471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2100985856, 2101018623, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101018624, 2101084159, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101084160, 2101116927, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101116928, 2101149695, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101149696, 2101182463, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101215232, 2101231615, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101231616, 2101239807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101248000, 2101264383, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101280768, 2101288959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101297152, 2101313535, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101313536, 2101346303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2101346304, 2103640063, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2103640064, 2103705599, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2103705600, 2103967743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2103967744, 2105540607, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2105540608, 2107637759, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2107637760, 2108162047, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2108162048, 2108227583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2108293120, 2108358655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2108358656, 2108424191, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2108424192, 2108686335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2108686336, 2109734911, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2109734912, 2110783487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110783488, 2110799871, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110799872, 2110816255, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110816256, 2110832639, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110849024, 2110865407, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110865408, 2110881791, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110881792, 2110897919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110897920, 2110898431, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110898432, 2110914559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2110914560, 2110980095, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111045632, 2111078399, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111111168, 2111143935, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111176704, 2111193087, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111209472, 2111217663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111225856, 2111242239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111242240, 2111258623, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111258624, 2111266815, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111275008, 2111307775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111307776, 2111832063, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2111832064, 2112487423, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2112487424, 2112618495, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2112618496, 2112749567, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2112880640, 2113683455, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113683456, 2113684095, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684096, 2113684159, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684160, 2113684223, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684224, 2113684271, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684272, 2113684287, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684288, 2113684351, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684352, 2113684431, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684432, 2113684439, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684440, 2113684735, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684736, 2113684991, N'TW', N'Taiwan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113684992, 2113685503, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113685504, 2113686271, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113686272, 2113686527, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113686528, 2113686783, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113686784, 2113687039, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113687040, 2113687551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113687552, 2113688319, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113688320, 2113689087, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113689088, 2113689343, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113689344, 2113689599, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113689600, 2113699839, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113699840, 2113716223, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113716224, 2113732607, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113732608, 2113748991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113765376, 2113798143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113798144, 2113830911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113830912, 2113847295, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113863680, 2113929215, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2113929216, 2130706431, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2147483648, 2147942399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2147942400, 2148007935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2148007936, 2148220515, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2148220516, 2148220535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2148220536, 2148229151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2148229152, 2148229183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2148229184, 2148532223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2148532224, 2148597759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2148597760, 2150039551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2150039552, 2150105087, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2150105088, 2150236159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2150236160, 2150301695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2150301696, 2150367231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2150367232, 2151743487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2152726528, 2153119743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2153119744, 2153250815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2153250816, 2153578495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2153578496, 2153644031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2153644032, 2153906175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2153906176, 2153971711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2153971712, 2154037247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2154037248, 2154102783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2154102784, 2156003327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156003328, 2156134399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156134400, 2156265471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156265472, 2156331007, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156331008, 2156593151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156593152, 2156658687, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156724224, 2156855295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156855296, 2156920831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156920832, 2156986367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2156986368, 2159017983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159017984, 2159083519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159083520, 2159149055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159149056, 2159280127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159280128, 2159542271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159542272, 2159607807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159607808, 2159869951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159869952, 2159935487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2159935488, 2160525311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2160525312, 2160590847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2160590848, 2160656383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2160656384, 2160721919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2160721920, 2161508351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2161508352, 2161573887, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2161573888, 2162687999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2162688000, 2162753535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2162753536, 2162819071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2162884608, 2163212287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163212288, 2163277823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163277824, 2163408895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163408896, 2163474431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163474432, 2163605503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163605504, 2163671039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163671040, 2163867647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163867648, 2163933183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2163933184, 2164981759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2164981760, 2165112831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165112832, 2165178367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165178368, 2165309439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165309440, 2165374975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165374976, 2165440511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165506048, 2165571583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165571584, 2165637119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165637120, 2165964799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2165964800, 2166030335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2166030336, 2166095871, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2166095872, 2166292479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2166292480, 2166358015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2166358016, 2166571007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2166571008, 2166575103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2166575104, 2168193023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2168193024, 2168258559, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2168258560, 2168651775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2168651776, 2168717311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2168717312, 2168782847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2168782848, 2168913919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2168913920, 2169372671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2169372672, 2169438207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2169438208, 2170028031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170028032, 2170093567, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170093568, 2170159103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170159104, 2170224639, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170224640, 2170421247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170421248, 2170486783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170486784, 2170552319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170552320, 2170617855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170617856, 2170683391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170683392, 2170814463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170814464, 2170879999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170880000, 2170945535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2170945536, 2171011071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2171011072, 2171076607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2171076608, 2171142143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2171142144, 2172452863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172452864, 2172518399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172518400, 2172583935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172583936, 2172649471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172649472, 2172715007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172715008, 2172780543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172780544, 2172911615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172911616, 2172977151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2172977152, 2173173759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2173173760, 2173239295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2173239296, 2173435903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2173501440, 2173566975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2173566976, 2173632511, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2173632512, 2173698047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2173698048, 2175336447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175336448, 2175401983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175401984, 2175598591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175598592, 2175664127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175664128, 2175729663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175729664, 2175795199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175795200, 2175860735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175860736, 2175926271, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175926272, 2175991807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2175991808, 2176057343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2176057344, 2176122879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2176122880, 2176450559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2176450560, 2176516095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2176516096, 2176581631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2176581632, 2176974847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2176974848, 2177105919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2177105920, 2177302527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2177302528, 2177368063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2177368064, 2177695743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2177761280, 2177826815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2177826816, 2177892351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2177892352, 2177957887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2177957888, 2178351103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2178351104, 2178416639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2178416640, 2178482175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2178482176, 2178547711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2178547712, 2179465215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2179530752, 2179596287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2179596288, 2179661823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2179661824, 2179989503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2179989504, 2180186111, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2180186112, 2180448255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2180448256, 2180513791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2180513792, 2180579327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2180579328, 2180644863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2180644864, 2180907007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2180907008, 2180972543, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2180972544, 2181824511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2181824512, 2181890047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2181890048, 2182021119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2182021120, 2182086655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2182086656, 2182610943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2182610944, 2182676479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2182676480, 2182873087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2182873088, 2182938623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2182938624, 2183135231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2183135232, 2183200767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2183200768, 2183266303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2183266304, 2183331839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2183331840, 2183462911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2183462912, 2183528447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2183528448, 2184577023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2184577024, 2184642559, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2184642560, 2184708095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2184708096, 2184773631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2184773632, 2184904703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2184904704, 2185035775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185035776, 2185166847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185166848, 2185232383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185232384, 2185363455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185363456, 2185428991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185428992, 2185494527, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185494528, 2185560063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185560064, 2185625599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185625600, 2185822207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185822208, 2185887743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185887744, 2185953279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2185953280, 2186018815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186018816, 2186149887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186149888, 2186215423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186215424, 2186280959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186280960, 2186412031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186412032, 2186477567, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186477568, 2186543103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186543104, 2186608639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186608640, 2186739711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186739712, 2186805247, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186805248, 2186870783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186870784, 2186936319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2186936320, 2187067391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187067392, 2187132927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187132928, 2187263999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187264000, 2187329535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187329536, 2187460607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187460608, 2187526143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187526144, 2187591679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187591680, 2187657215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187657216, 2187722751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187722752, 2187788287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187788288, 2187853823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187853824, 2187919359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2187919360, 2188378111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188378112, 2188443647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188443648, 2188509183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188509184, 2188574719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188574720, 2188640255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188640256, 2188705791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188705792, 2188902399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188902400, 2188967935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2188967936, 2189099007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189099008, 2189164543, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189164544, 2189230079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189230080, 2189295615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189295616, 2189557759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189557760, 2189623295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189623296, 2189754367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189754368, 2189819903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189819904, 2189950975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2189950976, 2190016511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2190016512, 2190082047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2190082048, 2190737407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2190737408, 2190802943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2190802944, 2190868479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2190868480, 2191065087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191065088, 2191130623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191130624, 2191196159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191196160, 2191261695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191261696, 2191392767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191392768, 2191458303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191458304, 2191523839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191523840, 2191589375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191589376, 2191654911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2191654912, 2192769023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2192769024, 2192834559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2192900096, 2193031167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193031168, 2193096703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193096704, 2193162239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193227776, 2193293311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193293312, 2193358847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193358848, 2193424383, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193424384, 2193489919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193489920, 2193555455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193555456, 2193620991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193620992, 2193686527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193752064, 2193817599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193817600, 2193883135, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2193883136, 2194014207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2194014208, 2194079743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2194079744, 2194538495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2194538496, 2194604031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2194604032, 2194669567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2194669568, 2194735103, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2194735104, 2194800639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2194800640, 2195193855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2195193856, 2195324927, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2195324928, 2195455999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2195456000, 2195521535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2195521536, 2195652607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2195652608, 2195718143, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2195718144, 2195783679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2195783680, 2196045823, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2196045824, 2196111359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2196111360, 2196439039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2196439040, 2197094399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197094400, 2197159935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197159936, 2197225471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197225472, 2197422079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197422080, 2197487615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197487616, 2197553151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197553152, 2197815295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197880832, 2197946367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2197946368, 2204172287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204172288, 2204237823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204237824, 2204303359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204303360, 2204368895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204434432, 2204499967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204499968, 2204565503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204565504, 2204631039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204631040, 2204696575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204696576, 2204893183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2204958720, 2205089791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2205089792, 2205155327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2205155328, 2205286399, N'JP', N'Japan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2205286400, 2205351935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2205351936, 2205483007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2205483008, 2205548543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2205548544, 2206269439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2206269440, 2206334975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2206334976, 2206400511, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2206400512, 2206466047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2206466048, 2207121407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2207121408, 2207449087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2207449088, 2207711231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2207711232, 2207776767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2207776768, 2207842303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2207842304, 2207907839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2207907840, 2207973375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2207973376, 2208038911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208038912, 2208235519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208235520, 2208301055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208301056, 2208366591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208366592, 2208432127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208432128, 2208563199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208563200, 2208759807, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208759808, 2208890879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208890880, 2208956415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2208956416, 2209021951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209021952, 2209087487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209087488, 2209153023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209153024, 2209218559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209218560, 2209284095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209284096, 2209349631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209349632, 2209415167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209415168, 2209480703, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209480704, 2209546239, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209546240, 2209611775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209611776, 2209677311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209677312, 2209742847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209742848, 2209939455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2209939456, 2210004991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2210004992, 2210136063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2210136064, 2210201599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2210201600, 2210594815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2210594816, 2210660351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2210660352, 2210725887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2210725888, 2211053567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211053568, 2211119103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211119104, 2211184639, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211184640, 2211250175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211250176, 2211315711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211315712, 2211381247, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211381248, 2211446783, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211446784, 2211643391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211643392, 2211708927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211708928, 2211774463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211774464, 2211839999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2211840000, 2212036607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212036608, 2212102143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212102144, 2212233215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212233216, 2212298751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212364288, 2212495359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212495360, 2212560895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212560896, 2212691967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212691968, 2212757503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212757504, 2212823039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212823040, 2212954111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2212954112, 2213019647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213019648, 2213085183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213085184, 2213150719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213150720, 2213216255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213216256, 2213281791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213281792, 2213347327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213347328, 2213412863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213412864, 2213675007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213675008, 2213740543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213740544, 2213806079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213806080, 2213937151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2213937152, 2214002687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2214002688, 2214068223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2214068224, 2214133759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2214133760, 2214264831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2214264832, 2214330367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2214330368, 2214461439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2214461440, 2214526975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2214592512, 2215313407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2215313408, 2215378943, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2215378944, 2215706623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2215706624, 2215772159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2215772160, 2218786815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2218786816, 2219769855, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2219769856, 2224160767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224160768, 2224226303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224226304, 2224357375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224357376, 2224422911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224422912, 2224488447, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224488448, 2224619519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224619520, 2224685055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224685056, 2224750591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224750592, 2224816127, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224816128, 2224881663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2224947200, 2225405951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2225405952, 2225733631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2225733632, 2225799167, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2225799168, 2225864703, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2225864704, 2226126847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226126848, 2226192383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226192384, 2226323455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226323456, 2226388991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226388992, 2226454527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226454528, 2226520063, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226520064, 2226585599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226585600, 2226651135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226716672, 2226782207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226782208, 2226847743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226847744, 2226913279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2226913280, 2227372031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2227372032, 2227437567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2227437568, 2227503103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2227503104, 2227634175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2227634176, 2227699711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2227699712, 2227830783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2227830784, 2229141503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229141504, 2229207039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229207040, 2229338111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229338112, 2229403647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229403648, 2229469183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229469184, 2229534719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229534720, 2229600255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229600256, 2229665791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229665792, 2229796863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229796864, 2229862399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229862400, 2229927935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229927936, 2229993471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2229993472, 2230583295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2230583296, 2230648831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2230648832, 2230714367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2230714368, 2230779903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2230779904, 2230910975, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2230910976, 2231042047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2231042048, 2231107583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2231107584, 2231173119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2231173120, 2231238655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2231238656, 2231304191, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2231369728, 2248146943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2248146944, 2248409087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2248409088, 2248605695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2248605696, 2248671231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2248671232, 2249326591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249326592, 2249392127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249457664, 2249523199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249523200, 2249588735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249588736, 2249654271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249654272, 2249785343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249785344, 2249850879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249850880, 2249916415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249916416, 2249973759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249973760, 2249981951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2249981952, 2250047487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250047488, 2250113023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250113024, 2250178559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250178560, 2250244095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250244096, 2250375167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250375168, 2250440703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250440704, 2250506239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250506240, 2250571775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250571776, 2250637311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2250637312, 2251227135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2251227136, 2251292671, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2251292672, 2251685887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2251685888, 2251751423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2251751424, 2251948031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2251948032, 2252013567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2252013568, 2252079103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2252079104, 2252210175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2252210176, 2253062143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253062144, 2253127679, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253127680, 2253193215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253193216, 2253455359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253455360, 2253520895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253520896, 2253586431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253586432, 2253651967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253651968, 2253848575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253848576, 2253914111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2253914112, 2254045183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2254110720, 2255421439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2255421440, 2255683583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2255683584, 2255749119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2255749120, 2255814655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2255814656, 2255880191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2255880192, 2255945727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2255945728, 2256011263, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2256011264, 2256666623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2256666624, 2256732159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2256732160, 2257190911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257190912, 2257256447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257256448, 2257453055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257453056, 2257518591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257518592, 2257584127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257584128, 2257649663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257649664, 2257780735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257780736, 2257846271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257846272, 2257911807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257911808, 2257977343, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2257977344, 2258042879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258042880, 2258108415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258108416, 2258173951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258173952, 2258239487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258239488, 2258305023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258305024, 2258370559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258370560, 2258436095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258436096, 2258567167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258567168, 2258591775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258591776, 2258591807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258591808, 2258591847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258591848, 2258591855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258591856, 2258591871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258591872, 2258591935, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258591936, 2258592255, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258592256, 2258592415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258592416, 2258592511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258592512, 2258592767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258592768, 2258594975, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258594976, 2258594991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258594992, 2258595199, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595200, 2258595231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595232, 2258595263, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595264, 2258595351, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595352, 2258595359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595360, 2258595455, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595456, 2258595463, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595464, 2258595471, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595472, 2258595551, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595552, 2258595591, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595592, 2258595599, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595600, 2258595603, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595604, 2258595607, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595608, 2258595855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595856, 2258595863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258595864, 2258596991, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258596992, 2258597055, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258597056, 2258597071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258597072, 2258597087, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258597088, 2258598399, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258598400, 2258598431, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258598432, 2258600737, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258600738, 2258600741, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258600742, 2258600855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258600856, 2258600859, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258600860, 2258601199, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258601200, 2258601207, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258601208, 2258601343, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258601344, 2258601471, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258601472, 2258604799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258604800, 2258605055, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258605056, 2258605183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258605184, 2258606879, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258606880, 2258606895, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258606896, 2258606959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258606960, 2258606963, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258606964, 2258606967, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258606968, 2258606971, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258606972, 2258606975, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258606976, 2258607087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607088, 2258607103, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607104, 2258607295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607296, 2258607335, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607336, 2258607343, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607344, 2258607351, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607352, 2258607487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607488, 2258607519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607520, 2258607535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258607536, 2258632703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258632704, 2258698239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2258698240, 2259222527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259222528, 2259288063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259288064, 2259353599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259353600, 2259419135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259419136, 2259681279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259681280, 2259746815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259746816, 2259812351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259812352, 2259877887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259877888, 2259943423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2259943424, 2260008959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260008960, 2260140031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260140032, 2260205567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260205568, 2260271103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260271104, 2260467711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260467712, 2260533247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260533248, 2260598783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260598784, 2260664319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260664320, 2260729855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260729856, 2260991999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2260992000, 2261057535, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261057536, 2261188607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261188608, 2261254143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261254144, 2261385215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261385216, 2261450751, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261450752, 2261516287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261516288, 2261647359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261647360, 2261712895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261712896, 2261778431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261778432, 2261843967, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261843968, 2261975039, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2261975040, 2262040575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262040576, 2262106111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262106112, 2262171647, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262171648, 2262237183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262237184, 2262499327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262499328, 2262630399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262630400, 2262761471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262761472, 2262892543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262892544, 2262958079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2262958080, 2263023615, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2263023616, 2263089151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2263089152, 2263678975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2263678976, 2263744511, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2263744512, 2263810047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2263810048, 2263875583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2263875584, 2264203263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2264203264, 2264268799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2264268800, 2264334335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2264334336, 2264399871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2264399872, 2265710591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2265710592, 2265776127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2265776128, 2276786175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2276786176, 2276851711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2276851712, 2277769215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2277769216, 2277772543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2277772544, 2277772799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2277772800, 2277834751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2277834752, 2291204095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291204096, 2291269631, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291269632, 2291400703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291400704, 2291466239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291466240, 2291728383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291728384, 2291859455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291859456, 2291924991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291924992, 2291990527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2291990528, 2292056063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292056064, 2292121599, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292121600, 2292187135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292187136, 2292383743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292383744, 2292449279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292449280, 2292514815, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292514816, 2292776959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292842496, 2292908031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292908032, 2292973567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2292973568, 2293039103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2293039104, 2293104639, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2293104640, 2293891071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2293891072, 2293956607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2293956608, 2294022143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2294022144, 2294677503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2294677504, 2294743039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2294743040, 2294808575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2294808576, 2294874111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2294874112, 2294939647, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2294939648, 2295201791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2295201792, 2295267327, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2295267328, 2296446975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2296446976, 2296512511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2296512512, 2296774655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2296774656, 2296840191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2296840192, 2296905727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2296905728, 2297167871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2297167872, 2297233407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2297233408, 2297298943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2297298944, 2297364479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2297364480, 2297626623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2297626624, 2297692159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2297692160, 2299461631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2299461632, 2299527167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2299527168, 2299592703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2299592704, 2299658239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2299658240, 2300641279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2300641280, 2300706815, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2300706816, 2300772351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2300772352, 2301296639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2301296640, 2301362175, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2301362176, 2301427711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2301427712, 2301558783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2301558784, 2301624319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2301624320, 2301755391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2301755392, 2301820927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2301820928, 2302083071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2302083072, 2302214143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2302214144, 2302279679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2302279680, 2302345215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2302345216, 2302541823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2302541824, 2302607359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2302672896, 2302935039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2302935040, 2303000575, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303000576, 2303262719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303262720, 2303328255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303328256, 2303393791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303393792, 2303459327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303459328, 2303524863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303524864, 2303852543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303852544, 2303918079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2303918080, 2304507903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2304507904, 2304573439, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2304573440, 2304638975, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2304638976, 2304704511, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2304704512, 2304770047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2304770048, 2304835583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2304835584, 2305097727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305097728, 2305163263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305163264, 2305359871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305359872, 2305425407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305425408, 2305556479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305556480, 2305622015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305622016, 2305687551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305687552, 2305753087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305753088, 2305818623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2305818624, 2306146303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306146304, 2306211839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306211840, 2306342911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306342912, 2306408447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306408448, 2306473983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306473984, 2306539519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306539520, 2306932735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306932736, 2306998271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2306998272, 2307129343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2307129344, 2307194879, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2307194880, 2307260415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2307260416, 2307522559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2307522560, 2307588095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2307588096, 2308112383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308112384, 2308177919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308177920, 2308243455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308243456, 2308308991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308308992, 2308505599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308505600, 2308571135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308571136, 2308636671, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308636672, 2308702207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308702208, 2308767743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308767744, 2308833279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308833280, 2308898815, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2308898816, 2309160959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309160960, 2309226495, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309226496, 2309357567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309357568, 2309423103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309423104, 2309750783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309750784, 2309816319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309816320, 2309881855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309881856, 2309947391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2309947392, 2310668287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2310668288, 2310733823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2310733824, 2310864895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2310864896, 2310930431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2310930432, 2310995967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2310995968, 2311061503, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311061504, 2311127039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311127040, 2311192575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311192576, 2311258111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311258112, 2311323647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311323648, 2311847935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311847936, 2311913471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311913472, 2311979007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2311979008, 2312044543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312044544, 2312110079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312110080, 2312175615, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312175616, 2312437759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312437760, 2312503295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312503296, 2312634367, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312634368, 2312699903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312699904, 2312765439, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312765440, 2312830975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312830976, 2312896511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312896512, 2312962047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2312962048, 2313093119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2313093120, 2313158655, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2313158656, 2313224191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2313224192, 2313289727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2313289728, 2313355263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2313355264, 2314731519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2314731520, 2314797055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2314797056, 2314862591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2314862592, 2314993663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2314993664, 2315059199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315059200, 2315124735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315124736, 2315190271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315321344, 2315452415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315452416, 2315517951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315517952, 2315583487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315583488, 2315649023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315649024, 2315714559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315714560, 2315780095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315780096, 2315911167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2315911168, 2316042239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316042240, 2316173311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316173312, 2316238847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316238848, 2316500991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316500992, 2316566527, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316566528, 2316632063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316632064, 2316697599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316697600, 2316763135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316763136, 2316828671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316828672, 2316959743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2316959744, 2317221887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317221888, 2317287423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317287424, 2317484031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317484032, 2317549567, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317549568, 2317615103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317680640, 2317811711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317811712, 2317877247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317877248, 2317942783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2317942784, 2318008319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2318008320, 2318139391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2318139392, 2318204927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2318204928, 2318401535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2318401536, 2318467071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2318467072, 2318598143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2318598144, 2318663679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2318663680, 2319253503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319253504, 2319319039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319319040, 2319384575, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319384576, 2319450111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319450112, 2319581183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319581184, 2319646719, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319646720, 2319843327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319843328, 2319908863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319908864, 2319974399, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2319974400, 2320039935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320039936, 2320105471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320105472, 2320171007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320171008, 2320236543, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320236544, 2320302079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320302080, 2320367615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320367616, 2320433151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320433152, 2320564223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320564224, 2320629759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320629760, 2320695295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2320695296, 2321547263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2321547264, 2321612799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2321678336, 2321743871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2321809408, 2321874943, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2321874944, 2321940479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2321940480, 2322006015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2322006016, 2322071551, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2322071552, 2322137087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2322137088, 2322202623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2322202624, 2322268159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2322268160, 2322333695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2322333696, 2322923519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323054592, 2323185663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323316736, 2323382271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323382272, 2323447807, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323447808, 2323775487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323775488, 2323841023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323841024, 2323906559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323906560, 2323972095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2323972096, 2324037631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2324037632, 2324103167, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2324103168, 2327379967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2327511040, 2327838719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2327838720, 2327969791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2327969792, 2328035327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328035328, 2328100863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328100864, 2328231935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328231936, 2328297471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328297472, 2328313855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328313856, 2328317951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328317952, 2328494079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328494080, 2328559615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328559616, 2328625151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328690688, 2328756223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328756224, 2328821759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2328821760, 2329083903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329083904, 2329149439, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329149440, 2329280511, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329280512, 2329346047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329346048, 2329411583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329411584, 2329477119, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329477120, 2329542655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329542656, 2329608191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329673728, 2329739263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329739264, 2329804799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329804800, 2329870335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2329870336, 2330263551, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2330263552, 2330394623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2330394624, 2330460159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2330460160, 2330525695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2330525696, 2330591231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2330591232, 2330656767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2330656768, 2330722303, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2330722304, 2331181055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331181056, 2331246591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331246592, 2331443199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331443200, 2331508735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331508736, 2331574271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331574272, 2331639807, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331639808, 2331770879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331770880, 2331836415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331836416, 2331901951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2331901952, 2331967487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2332033024, 2332622847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2332688384, 2332753919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2332753920, 2334064639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2334064640, 2334916607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2334916608, 2334982143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2334982144, 2335178751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335178752, 2335244287, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335244288, 2335309823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335309824, 2335375359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335375360, 2335506431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335506432, 2335571967, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335571968, 2335637503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335637504, 2335768575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335768576, 2335834111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335834112, 2335899647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335899648, 2335965183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2335965184, 2336161791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2336161792, 2336227327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2336227328, 2336358399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2336358400, 2336423935, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2336423936, 2336882687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2336882688, 2336948223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2336948224, 2337013759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337013760, 2337210367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337210368, 2337275903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337275904, 2337341439, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337341440, 2337406975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337406976, 2337472511, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337472512, 2337538047, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337538048, 2337669119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337669120, 2337734655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337734656, 2337865727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337865728, 2337931263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337931264, 2337996799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2337996800, 2338062335, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338062336, 2338075391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338075392, 2338075647, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338075648, 2338084863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338084864, 2338085375, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338085376, 2338085631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338085632, 2338086143, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338086144, 2338087423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338087424, 2338087679, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338087680, 2338108927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338108928, 2338109951, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338109952, 2338115071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338115072, 2338115839, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338115840, 2338126591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338126592, 2338127615, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338127616, 2338127871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338127872, 2338324479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338324480, 2338390015, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338390016, 2338455551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338455552, 2338521087, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338521088, 2338586623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338586624, 2338652159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338717696, 2338783231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338783232, 2338848767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338848768, 2338914303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2338914304, 2339962879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2339962880, 2340028415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340028416, 2340093951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340093952, 2340159487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340159488, 2340225023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340225024, 2340421631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340421632, 2340487167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340552704, 2340618239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340618240, 2340683775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340683776, 2340749311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340749312, 2340814847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340814848, 2340880383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2340880384, 2341273599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341273600, 2341339135, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341339136, 2341404671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341404672, 2341470207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341470208, 2341535743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341535744, 2341601279, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341601280, 2341732351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341797888, 2341863423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341928960, 2341994495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2341994496, 2342060031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342060032, 2342125567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342125568, 2342191103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342256640, 2342322175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342322176, 2342387711, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342387712, 2342453247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342518784, 2342584319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342584320, 2342649855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342649856, 2342715391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342715392, 2342780927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342780928, 2342846463, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342846464, 2342911999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342912000, 2342977535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2342977536, 2343043071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343043072, 2343108607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343108608, 2343174143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343239680, 2343370751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343370752, 2343436287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343436288, 2343501823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343501824, 2343567359, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343632896, 2343698431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343698432, 2343763967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343763968, 2343829503, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2343829504, 2344091647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344091648, 2344157183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344157184, 2344222719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344288256, 2344353791, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344353792, 2344419327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344550400, 2344579071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344579072, 2344583167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344583168, 2344589311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344589312, 2344591359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344591360, 2344597503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344597504, 2344599551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2344599552, 2344615935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2346582016, 2346647551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2346647552, 2346713087, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2346778624, 2346844159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2347040768, 2347106303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2347106304, 2347171839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2347171840, 2353856511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2353856512, 2353922047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2353922048, 2353987583, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2353987584, 2354053119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354053120, 2354118655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354118656, 2354184191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354184192, 2354249727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354249728, 2354315263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354315264, 2354380799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354380800, 2354446335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354446336, 2354511871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354511872, 2354577407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354577408, 2354839551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354839552, 2354905087, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2354905088, 2355036159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355036160, 2355101695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355101696, 2355167231, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355167232, 2355232767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355232768, 2355305583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355305584, 2355305591, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355305592, 2355691519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355691520, 2355757055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355757056, 2355953663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2355953664, 2357919743, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2357919744, 2358509567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2358509568, 2358575103, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2358640640, 2358706175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2358706176, 2358771711, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2358771712, 2359230463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359230464, 2359295999, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359296000, 2359361535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359361536, 2359427071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359427072, 2359558143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359558144, 2359623679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359623680, 2359689215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359689216, 2359754751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359754752, 2359820287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359820288, 2359885823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2359885824, 2360672255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2360672256, 2360737791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2360737792, 2360868863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2360868864, 2360934399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2360934400, 2361327615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2361327616, 2361393151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2361393152, 2361458687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2361458688, 2361524223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2361524224, 2361917439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2361917440, 2361982975, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2361982976, 2362114047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2362114048, 2362179583, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2362179584, 2362245119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2362441728, 2363883519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2363883520, 2363949055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2363949056, 2364014591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2364014592, 2364080127, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2364080128, 2364517024, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2364517025, 2364517038, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2364517039, 2365390847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2365390848, 2365456383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2365456384, 2365521919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2365587456, 2366032639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2366032640, 2366032895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2366032896, 2366033663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2366033664, 2366033919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2366033920, 2366035711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2366035712, 2366035967, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2366035968, 2367487999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2367488000, 2367553535, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2367553536, 2371158015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371158016, 2371223551, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371223552, 2371289087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371289088, 2371616767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371616768, 2371682303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371682304, 2371747839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371747840, 2371878911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371878912, 2371944447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2371944448, 2372009983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372009984, 2372075519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372075520, 2372206591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372272128, 2372337663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372337664, 2372403199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372403200, 2372665343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372665344, 2372730879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372730880, 2372796415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372796416, 2372993023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2372993024, 2373058559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373058560, 2373124095, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373124096, 2373189631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373189632, 2373255167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373255168, 2373451775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373451776, 2373517311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373517312, 2373582847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373582848, 2373648383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373648384, 2373910527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373910528, 2373976063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2373976064, 2374107135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2374107136, 2374172671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2374172672, 2374238207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2374238208, 2374303743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2374303744, 2374369279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2374565888, 2374631423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2374696960, 2374959103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2374959104, 2375024639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375024640, 2375090175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375090176, 2375155711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375155712, 2375221247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375221248, 2375286783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375286784, 2375352319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375352320, 2375642583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375642584, 2375642591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2375642592, 2376269823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2376269824, 2376335359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2376335360, 2376597503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2376597504, 2376663039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2376663040, 2376728575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2376794112, 2376859647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2376859648, 2376925183, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2376925184, 2377056255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377056256, 2377121791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377121792, 2377187327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377187328, 2377252863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377252864, 2377318399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377318400, 2377449471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377449472, 2377515007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377515008, 2377842687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377842688, 2377908223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2377908224, 2378170367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378170368, 2378235903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378235904, 2378301439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378301440, 2378366975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378366976, 2378694655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378694656, 2378760191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378760192, 2378825727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378825728, 2378891263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378891264, 2378956799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2378956800, 2379218943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2379218944, 2379284479, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2379284480, 2380201983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380201984, 2380267519, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380267520, 2380398591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380398592, 2380464127, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380464128, 2380529663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380529664, 2380595199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380595200, 2380660735, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380660736, 2380726271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380726272, 2380791807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2380791808, 2381381631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381381632, 2381447167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381447168, 2381512703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381512704, 2381578239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381578240, 2381643775, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381643776, 2381709311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381709312, 2381905919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381905920, 2381971455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2381971456, 2382036991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2382036992, 2382102527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2382102528, 2382168063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2382168064, 2382233599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2382233600, 2382299135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2382364672, 2385430319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2385430320, 2385430335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2385430336, 2385430655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2385430656, 2385430687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2385430688, 2385431295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2385431296, 2385431551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2385431552, 2387542015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2387542016, 2387607551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2387607552, 2394947583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2394947584, 2395013119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2395013120, 2395209727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2395340800, 2399141887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2399141888, 2401828863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2401828864, 2401894399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2401894400, 2402222079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2402222080, 2402287615, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2402287616, 2402418687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2402418688, 2402484223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2402484224, 2402549759, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2402549760, 2402680831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2402680832, 2402746367, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2402746368, 2403401727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2403401728, 2403467263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2403467264, 2404974591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2404974592, 2405040127, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405040128, 2405105663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405105664, 2405171199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405171200, 2405236735, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405236736, 2405302271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405302272, 2405367807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405367808, 2405433343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405433344, 2405498879, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405498880, 2405564415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405564416, 2405629951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405629952, 2405695487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2405695488, 2406088703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2406088704, 2406285311, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2406285312, 2406809599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2406809600, 2406875135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2406875136, 2406940671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2406940672, 2407006207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407006208, 2407071743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407071744, 2407137279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407137280, 2407333887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407333888, 2407399423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407399424, 2407464959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407464960, 2407530495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407530496, 2407596031, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407596032, 2407661567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407661568, 2407727103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2407727104, 2408054783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2408054784, 2408120319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2408185856, 2409627647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2409627648, 2409693183, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2409693184, 2409758719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2409758720, 2409824255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2409824256, 2409955327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2409955328, 2410086399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410086400, 2410151935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410151936, 2410217471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410217472, 2410283007, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410283008, 2410348543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410348544, 2410414079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410414080, 2410545151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410545152, 2410610687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410610688, 2410676223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410676224, 2410938367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2410938368, 2411003903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2411003904, 2411462655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2411462656, 2411593727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2411593728, 2411986943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2411986944, 2412052479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412052480, 2412314623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412314624, 2412380159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412445696, 2412576767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412576768, 2412642303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412642304, 2412773375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412838912, 2412904447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412904448, 2412969983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2412969984, 2413297663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413297664, 2413363199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413363200, 2413428735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413428736, 2413494271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413494272, 2413625343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413625344, 2413690879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413690880, 2413821951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413821952, 2413887487, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413887488, 2413953023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2413953024, 2414411775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2414411776, 2414477311, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2414477312, 2414542847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2414542848, 2414673919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2414673920, 2414739455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2414739456, 2414804991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2414804992, 2414870527, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2414870528, 2415198207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415198208, 2415263743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415263744, 2415394815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415394816, 2415460351, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415460352, 2415656959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415656960, 2415722495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415722496, 2415788031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415788032, 2415853567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2415984640, 2416050175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2416050176, 2416115711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2416115712, 2416181247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2416181248, 2416246783, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2416246784, 2416312319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2416312320, 2416377855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2416443392, 2416967679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2416967680, 2417033215, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417033216, 2417229823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417229824, 2417295359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417295360, 2417360895, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417360896, 2417426431, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417426432, 2417491967, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417491968, 2417557503, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417557504, 2417688575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417688576, 2417754111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2417754112, 2418016255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2418016256, 2418081791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2418081792, 2418606079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2418606080, 2418671615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2418671616, 2418737151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2418737152, 2418868223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2418868224, 2419326975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2419392512, 2419458047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2419458048, 2419523583, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2419523584, 2419589119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2419589120, 2419654655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2419654656, 2419720191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2419720192, 2420047871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2420047872, 2420113407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2420113408, 2420178943, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2420178944, 2420244479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2420244480, 2420310015, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2420310016, 2420899839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2420899840, 2420965375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2420965376, 2421096447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421096448, 2421161983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421161984, 2421293055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421293056, 2421358591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421358592, 2421424127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421424128, 2421489663, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421489664, 2421555199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421555200, 2421620735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421620736, 2421686271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2421686272, 2422145023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2422145024, 2422210559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2422210560, 2422276095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2422276096, 2422341631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2422341632, 2422407167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2422407168, 2423128063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2423128064, 2423193599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2423193600, 2423717887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2423717888, 2423783423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2423783424, 2423848959, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2423848960, 2423914495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2423914496, 2423980031, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2423980032, 2424045567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2424045568, 2424111103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2424111104, 2424242175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2424242176, 2424307711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2424307712, 2424438783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2424438784, 2425159679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2425159680, 2425421823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2425421824, 2425487359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2425487360, 2426667007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2426667008, 2426732543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2426732544, 2426798079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2426798080, 2426929151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2426929152, 2426994687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2426994688, 2427256831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2427256832, 2427322367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2427322368, 2427453439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2427453440, 2427584511, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2427584512, 2427650047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2427650048, 2427846655, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2427846656, 2428567551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2428567552, 2428633087, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2428633088, 2428698623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2428698624, 2428960767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2428960768, 2429026303, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429026304, 2429091839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429091840, 2429288447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429288448, 2429353983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429353984, 2429419519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429419520, 2429485055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429485056, 2429616127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429616128, 2429681663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429681664, 2429878271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429878272, 2429943807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2429943808, 2430009343, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2430009344, 2430205951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2430205952, 2430271487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2430271488, 2432172031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2432172032, 2432237567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2432237568, 2432696319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2432696320, 2433810431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2433810432, 2433875967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2433875968, 2435071999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2435072000, 2435088383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2435088384, 2436300799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2436300800, 2436366335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2436366336, 2447376383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447376384, 2447441919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447441920, 2447507455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447507456, 2447572991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447572992, 2447638527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447638528, 2447679819, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447679820, 2447679839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447679840, 2447704063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447704064, 2447769599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447769600, 2447835135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447835136, 2447900671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447900672, 2447966207, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2447966208, 2448031743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448031744, 2448097279, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448097280, 2448162815, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448162816, 2448228351, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448228352, 2448293887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448293888, 2448359423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448359424, 2448490495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448490496, 2448556031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448556032, 2448621567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448621568, 2448687103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448687104, 2448752639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448752640, 2448818175, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448818176, 2448883711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448883712, 2448922367, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448922368, 2448927487, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448927488, 2448949247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2448949248, 2449014783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449014784, 2449080319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449080320, 2449145855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449145856, 2449211391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449211392, 2449276927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449276928, 2449407999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449539072, 2449604607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449604608, 2449670143, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449670144, 2449735679, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449735680, 2449801215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2449801216, 2450194431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2450194432, 2450259967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2450259968, 2450718719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2450718720, 2450784255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2450784256, 2450849791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2450849792, 2450915327, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2450915328, 2452619263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2452619264, 2452684799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2452684800, 2452750335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2452750336, 2452815871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2452815872, 2452881407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2452881408, 2453143551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453143552, 2453209087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453209088, 2453340159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453340160, 2453405695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453471232, 2453536767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453536768, 2453602303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453602304, 2453667839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453667840, 2453733375, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453733376, 2453798911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453864448, 2453929983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2453929984, 2454061055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454061056, 2454126591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454126592, 2454192127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454192128, 2454257663, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454257664, 2454388735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454388736, 2454454271, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454454272, 2454519807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454519808, 2454585343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454585344, 2454716415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454716416, 2454781951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454781952, 2454847487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454847488, 2454851583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454851584, 2454851839, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454851840, 2454853119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454853120, 2454853375, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454853376, 2454887423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454887424, 2454887679, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454887680, 2454913023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454913024, 2454978559, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2454978560, 2455175167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2455175168, 2455240703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2455240704, 2455306239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2455306240, 2455371775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2455437312, 2455830527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2455830528, 2455896063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2455896064, 2456027135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456027136, 2456092671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456092672, 2456158207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456158208, 2456223743, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456223744, 2456289279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456289280, 2456354815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456354816, 2456420351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456420352, 2456485887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456485888, 2456551423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456551424, 2456616959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456616960, 2456682495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456682496, 2456748031, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456748032, 2456813567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456813568, 2456879103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2456879104, 2457075711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2457075712, 2457141247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2457141248, 2457206783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2457206784, 2457272319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2457272320, 2457337855, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2457337856, 2457599999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2457600000, 2457665535, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2457665536, 2458058751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458058752, 2458124287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458124288, 2458189823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458189824, 2458255359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458255360, 2458320895, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458320896, 2458386431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458386432, 2458451967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458451968, 2458648575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458648576, 2458714111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458714112, 2458779647, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458779648, 2458910719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458910720, 2458976255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458976256, 2458995511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458995512, 2458995519, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2458995520, 2459631615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2459631616, 2459697151, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2459697152, 2459828223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2459893760, 2459959295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2459959296, 2460024831, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460024832, 2460090367, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460090368, 2460155903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460155904, 2460221439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460221440, 2460286975, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460286976, 2460549119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460549120, 2460614655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460614656, 2460680191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460680192, 2460745727, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460745728, 2460811263, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460811264, 2460876799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460876800, 2460942335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2460942336, 2461007871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461007872, 2461138943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461138944, 2461204479, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461204480, 2461270015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461270016, 2461401087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461401088, 2461466623, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461466624, 2461794303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461794304, 2461859839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461859840, 2461990911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2461990912, 2462056447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2462056448, 2462121983, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2462121984, 2462187519, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2462187520, 2462253055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2462253056, 2462384127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2462384128, 2463236095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463236096, 2463367167, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463432704, 2463498239, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463498240, 2463629311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463629312, 2463694847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463694848, 2463825919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463825920, 2463891455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463891456, 2463911935, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463911936, 2463916031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463916032, 2463956991, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2463956992, 2464022527, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464022528, 2464153599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464153600, 2464219135, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464219136, 2464284671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464284672, 2464350207, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464350208, 2464415743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464415744, 2464481279, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464481280, 2464546815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464546816, 2464743423, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464743424, 2464808959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464808960, 2464874495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2464874496, 2465726463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2465726464, 2465791999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2465792000, 2465857535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2465857536, 2465923071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2465988608, 2466054143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466054144, 2466119679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466119680, 2466185215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466250752, 2466643967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466643968, 2466709503, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466709504, 2466775039, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466775040, 2466840575, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466840576, 2466906111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466906112, 2466971647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2466971648, 2467037183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2467037184, 2467102719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2467102720, 2467233791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2467233792, 2468020223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468020224, 2468085759, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468085760, 2468151295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468151296, 2468174847, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468174848, 2468175359, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468175360, 2468216831, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468216832, 2468282367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468282368, 2468347903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468347904, 2468478975, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468478976, 2468937727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2468937728, 2469003263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469003264, 2469068799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469068800, 2469134335, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469134336, 2469199871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469199872, 2469265407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469265408, 2469396479, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469396480, 2469658623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469658624, 2469724159, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469724160, 2469789695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469789696, 2469855231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2469855232, 2470182911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470182912, 2470248447, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470248448, 2470510591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470510592, 2470576127, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470576128, 2470641663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470641664, 2470707199, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470707200, 2470772735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470772736, 2470838271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2470838272, 2471165951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471165952, 2471231487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471231488, 2471297023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471297024, 2471362559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471362560, 2471428095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471428096, 2471690239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471690240, 2471821311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471821312, 2471886847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2471886848, 2472083455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472083456, 2472148991, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472148992, 2472214527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472214528, 2472280063, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472280064, 2472345599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472345600, 2472411135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472411136, 2472476671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472476672, 2472542207, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472542208, 2472607743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472607744, 2472673279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472673280, 2472869887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472869888, 2472935423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2472935424, 2473000959, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2473000960, 2473394175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2473394176, 2473459711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2473459712, 2473525247, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2473525248, 2473656319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2473656320, 2474049535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474049536, 2474115071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474115072, 2474246143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474246144, 2474377215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474377216, 2474442751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474442752, 2474508287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474508288, 2474573823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474573824, 2474639359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474639360, 2474901503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474901504, 2474967039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2474967040, 2475556863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2475556864, 2475622399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2475622400, 2475687935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2475687936, 2475884543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2475884544, 2476277759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476277760, 2476474367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476474368, 2476539903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476539904, 2476605439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476605440, 2476670975, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476670976, 2476802047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476802048, 2476867583, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476867584, 2476998655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2476998656, 2477195263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477195264, 2477260799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477260800, 2477457407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477457408, 2477522943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477522944, 2477588479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477588480, 2477654015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477654016, 2477719551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477719552, 2477785087, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477785088, 2477850623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2477850624, 2478047231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478047232, 2478112767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478112768, 2478178303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478178304, 2478309375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478309376, 2478374911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478374912, 2478440447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478440448, 2478505983, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478505984, 2478571519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478571520, 2478702591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478702592, 2478899199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2478899200, 2478964735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479030272, 2479095807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479095808, 2479161343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479161344, 2479226879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479226880, 2479357951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479357952, 2479423487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479423488, 2479489023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479489024, 2479620095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479620096, 2479685631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479685632, 2479947775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2479947776, 2480013311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480013312, 2480078847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480078848, 2480209919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480209920, 2480275455, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480275456, 2480340991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480340992, 2480406527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480406528, 2480668671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480668672, 2480734207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2480734208, 2481192959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2481192960, 2481455103, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2481455104, 2481520639, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2481520640, 2481848319, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2481848320, 2482175999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482176000, 2482208767, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482208768, 2482216959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482216960, 2482225151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482225152, 2482233343, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482233344, 2482241535, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482241536, 2482634751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482634752, 2482700287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482700288, 2482765823, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482765824, 2482831359, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2482831360, 2482962431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2483093504, 2483159039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2483159040, 2483224575, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2483224576, 2483290111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2483290112, 2483421183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2483421184, 2483486719, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2483486720, 2486566911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2486566912, 2486632447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2486632448, 2486697983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2486697984, 2486763519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2486763520, 2486960127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2486960128, 2487025663, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2487025664, 2488205311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2488205312, 2488270847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2488270848, 2488336383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2488336384, 2488401919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2488401920, 2488532991, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2488532992, 2488795135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2488795136, 2488860671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2488860672, 2490236927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2490236928, 2490302463, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2490302464, 2490695679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2490695680, 2490761215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2490761216, 2491154431, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2491154432, 2491875327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2491875328, 2492006399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492006400, 2492071935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492071936, 2492137471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492137472, 2492203007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492203008, 2492268543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492268544, 2492399615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492399616, 2492465151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492465152, 2492530687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492530688, 2492596223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492596224, 2492727295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492727296, 2492792831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492792832, 2492923903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492923904, 2492989439, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2492989440, 2493513727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2493513728, 2493579263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2493579264, 2493644799, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2493644800, 2494103551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2494103552, 2494169087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2494169088, 2494562303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2494562304, 2494627839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2494627840, 2494889983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2494889984, 2494955519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2494955520, 2495021055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495021056, 2495152127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495152128, 2495217663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495217664, 2495283199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495283200, 2495348735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495348736, 2495807487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495807488, 2495873023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495873024, 2495938559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2495938560, 2496004095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2496004096, 2496069631, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2496069632, 2496135167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2496135168, 2496200703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2496200704, 2497682431, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2497682432, 2497683455, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2497683456, 2498475007, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2498475008, 2498476031, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2498476032, 2499477503, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2499477504, 2499543039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2499543040, 2499674111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2499674112, 2499739647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2499805184, 2503016447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2503016448, 2503081983, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2503081984, 2503671807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2503671808, 2503737343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2503737344, 2506293247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2506293248, 2506358783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2506358784, 2508455935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2508455936, 2508521471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2508521472, 2508587007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2508587008, 2508652543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2508652544, 2508718079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2508718080, 2508914687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2508914688, 2508980223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2508980224, 2509242367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509242368, 2509307903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509307904, 2509373439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509373440, 2509438975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509504512, 2509570047, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509570048, 2509832191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509832192, 2509897727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509897728, 2509963263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2509963264, 2510028799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2510028800, 2510094335, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2510094336, 2510159871, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2510159872, 2510749695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2510749696, 2510815231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2510815232, 2510946303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2510946304, 2511011839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2511011840, 2511077375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2511077376, 2511339519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2511339520, 2511405055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2511405056, 2512715775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2512715776, 2512781311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2512781312, 2512912383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2512912384, 2513502207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2513502208, 2513567743, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2513567744, 2513633279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2513633280, 2513698815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2513698816, 2513764351, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2513764352, 2514419711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2514419712, 2514485247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2514485248, 2514514431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2514514432, 2514514687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2514514688, 2515599359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2515599360, 2515664895, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2515664896, 2515832831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2515832832, 2515833855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2515833856, 2516254719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2516254720, 2516320255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2516320256, 2516451327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2516451328, 2516516863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2516582400, 2523201535, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2523201536, 2523267071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2523267072, 2523529215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2523529216, 2523594751, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2523594752, 2523660287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2523660288, 2524971007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2524971008, 2525036543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2525036544, 2525102079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2525102080, 2525233151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2525233152, 2525298687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2525298688, 2525626367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2525757440, 2525822975, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2525822976, 2526085119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2526085120, 2526216191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2526216192, 2526412799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2526412800, 2526478335, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2526478336, 2526543871, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2526543872, 2526937087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2526937088, 2527002623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2527002624, 2527133695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2527133696, 2527461375, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2527461376, 2527920127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2527920128, 2527985663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2527985664, 2528051199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2528051200, 2528116735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2528116736, 2528247807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2528247808, 2528313343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2528313344, 2528575487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2528575488, 2528641023, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2528641024, 2528706559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2528706560, 2529034239, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2529034240, 2529099775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2529099776, 2529165311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2529165312, 2529492991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2529492992, 2529558527, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2529558528, 2529886207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2529886208, 2529951743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2529951744, 2530017279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530017280, 2530082815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530082816, 2530148351, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530148352, 2530213887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530213888, 2530541567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530541568, 2530607103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530607104, 2530672639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530672640, 2530803711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530803712, 2530869247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2530869248, 2531459071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2531459072, 2531524607, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2531524608, 2531590143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2531590144, 2531655679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2531655680, 2532048895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532048896, 2532114431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532114432, 2532179967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532179968, 2532376575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532376576, 2532442111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532442112, 2532507647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532507648, 2532573183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532573184, 2532638719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2532638720, 2533031935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2533031936, 2533097471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2533097472, 2533228543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2533228544, 2533294079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2533359616, 2539978751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2539978752, 2540240895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2540240896, 2540306431, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2540306432, 2540896255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2540896256, 2540961791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2540961792, 2541223935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2541223936, 2541289471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2541289472, 2541682687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2541682688, 2541748223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2541748224, 2541813759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2541813760, 2541879295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2541879296, 2541944831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2541944832, 2542075903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2542075904, 2542141439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2542141440, 2542206975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2542206976, 2542272511, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2542272512, 2542338047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2542338048, 2543583231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2543583232, 2543648767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2543648768, 2543714303, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2543714304, 2543779839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2543779840, 2544500735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2544500736, 2544566271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2544566272, 2544631807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2544631808, 2544697343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2544697344, 2544828415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2544828416, 2544893951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2544893952, 2544959487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2544959488, 2545025023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545025024, 2545090559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545090560, 2545156095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545156096, 2545221631, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545221632, 2545287167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545287168, 2545352703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545352704, 2545418239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545418240, 2545614847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545614848, 2545680383, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545680384, 2545745919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545745920, 2545811455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2545811456, 2546771647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2546771648, 2546771679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2546771680, 2547187711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2547187712, 2547318783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2547318784, 2547515391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2550136832, 2554462207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2554462208, 2554527743, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2554527744, 2554789887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2554789888, 2554855423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2554855424, 2554920959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2554920960, 2554986495, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2554986496, 2555052031, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555052032, 2555117567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555117568, 2555183103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555183104, 2555248639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555248640, 2555314175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555314176, 2555445247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555445248, 2555510783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555510784, 2555576319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555576320, 2555641855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555641856, 2555707391, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555707392, 2555903999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555904000, 2555969535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2555969536, 2556035071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556035072, 2556100607, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556100608, 2556166143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556166144, 2556231679, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556231680, 2556362751, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556362752, 2556428287, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556428288, 2556493823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556493824, 2556559359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556559360, 2556624895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556624896, 2556690431, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556690432, 2556755967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2556755968, 2557018111, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557018112, 2557083647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557083648, 2557542399, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557542400, 2557607935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557607936, 2557673471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557673472, 2557739007, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557739008, 2557870079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557870080, 2557935615, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2557935616, 2558918655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2558918656, 2558984191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2558984192, 2559246335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559246336, 2559311871, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559311872, 2559508479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559508480, 2559574015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559574016, 2559770623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559770624, 2559836159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559836160, 2559901695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559901696, 2559967231, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2559967232, 2560032767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2560032768, 2560098303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2560098304, 2560163839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2560163840, 2560229375, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2560229376, 2560644607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2560644608, 2560644863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2560644864, 2561015807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2561671168, 2564947967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2564947968, 2565013503, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2565013504, 2565210111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2566979584, 2567045119, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2567045120, 2567110655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2567176192, 2567241727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2567241728, 2567307263, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2567307264, 2567897087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2567897088, 2567962623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2567962624, 2568028159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2568028160, 2568093695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2568093696, 2568159231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2568159232, 2568224767, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2568224768, 2568290303, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2568290304, 2569601023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2569601024, 2569666559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2569666560, 2569863167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2569863168, 2569994239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2569994240, 2570125311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2570125312, 2570190847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2570190848, 2572681215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2572681216, 2572746751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2572746752, 2572943359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2572943360, 2573402111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2573402112, 2573467647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2573467648, 2573533183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2573533184, 2573598719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2573598720, 2573926399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2573926400, 2573991935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2573991936, 2574123007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2574123008, 2574188543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2574188544, 2574254079, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2574254080, 2574319615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2574319616, 2574647295, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2583691264, 2584018943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584018944, 2584084479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584084480, 2584215551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584215552, 2584281087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584281088, 2584346623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584346624, 2584412159, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584412160, 2584477695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584477696, 2584608767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584608768, 2584805375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2584805376, 2585001983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2585001984, 2585067519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2585067520, 2585788415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2585788416, 2585853951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2585853952, 2585985023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2585985024, 2587951103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2600534016, 2600665087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2600665088, 2600730623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2600730624, 2600796159, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2600796160, 2601123839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2601123840, 2601189375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2601320448, 2601451519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2601451520, 2601517055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2601517056, 2602565631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2602565632, 2602631167, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2602631168, 2604007423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604007424, 2604072959, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604072960, 2604138495, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604138496, 2604204031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604204032, 2604335103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604335104, 2604400639, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604400640, 2604466175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604466176, 2604531711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604531712, 2604597247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604597248, 2604793855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604793856, 2604859391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604859392, 2604990463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2604990464, 2605055999, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2605056000, 2605121535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2605121536, 2605187071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2605187072, 2605252607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2605252608, 2605318143, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2605318144, 2607349759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2607349760, 2607415295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2607415296, 2609053695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609053696, 2609119231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609119232, 2609250303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609250304, 2609381375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609381376, 2609446911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609446912, 2609512447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609512448, 2609643519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609643520, 2609709055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609709056, 2609774591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609840128, 2609971199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2609971200, 2610036735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2610036736, 2610823167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2610823168, 2610888703, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2610888704, 2610954239, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2610954240, 2611019775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2611019776, 2612592639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2612592640, 2612658175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2612658176, 2612723711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2612723712, 2612789247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2612789248, 2613051391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613051392, 2613116927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613116928, 2613182463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613182464, 2613247999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613248000, 2613313535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613379072, 2613444607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613444608, 2613510143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613510144, 2613706751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613706752, 2613772287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613772288, 2613837823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613837824, 2613903359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613903360, 2613968895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2613968896, 2614034431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2614034432, 2614099967, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2614099968, 2614165503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2614165504, 2614231039, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2614231040, 2614296575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2614296576, 2614362111, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2614362112, 2615083007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615083008, 2615148543, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615148544, 2615345151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615345152, 2615410687, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615410688, 2615476223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615476224, 2615541759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615541760, 2615607295, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615607296, 2615672831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2615672832, 2616262655, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2616262656, 2616524799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2616524800, 2616590335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2616590336, 2616786943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2616786944, 2616852479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2616852480, 2616918015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2616918016, 2617049087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2617049088, 2617114623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2617114624, 2617180159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2617245696, 2617769983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2617769984, 2617835519, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2617835520, 2617901055, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2617901056, 2617966591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2617966592, 2618032127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618032128, 2618097663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618097664, 2618163199, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618163200, 2618228735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618228736, 2618294271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618294272, 2618359807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618359808, 2618425343, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618425344, 2618490879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618490880, 2618687487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618687488, 2618753023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618753024, 2618884095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618884096, 2618949631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2618949632, 2619080703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2619080704, 2619146239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2619146240, 2619277311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2619277312, 2619342847, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2619342848, 2619473919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2619473920, 2619539455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2619539456, 2619604991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2619604992, 2620063743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620063744, 2620129279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620129280, 2620194815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620194816, 2620315039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620315040, 2620315063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620315064, 2620391423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620391424, 2620456959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620456960, 2620522495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620522496, 2620588031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620588032, 2620653567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620653568, 2620719103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620719104, 2620784639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620784640, 2620850175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620850176, 2620981247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2620981248, 2621046783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621046784, 2621112319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621112320, 2621177855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621177856, 2621243391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621243392, 2621308927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621308928, 2621374463, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621374464, 2621636607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621636608, 2621702143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621702144, 2621767679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621767680, 2621833215, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2621833216, 2622423039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2622423040, 2622488575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2622488576, 2622685183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2622685184, 2622750719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2622750720, 2623602687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2623602688, 2623668223, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2623668224, 2624192511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624192512, 2624258047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624258048, 2624585727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624585728, 2624716799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624716800, 2624782335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624782336, 2624847871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624847872, 2624913407, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624913408, 2624978943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2624978944, 2625044479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2625044480, 2625961983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2625961984, 2626027519, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2626027520, 2626093055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2626093056, 2626158591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2626158592, 2626879487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2626879488, 2626945023, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2626945024, 2627010559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2627010560, 2627076095, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2627076096, 2627141631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2627141632, 2627469311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2634022912, 2635399167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2635399168, 2635530239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2635530240, 2635595775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2635595776, 2635661311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2635661312, 2635726847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2635726848, 2635792383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2635792384, 2635988991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2635988992, 2636120063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2636120064, 2637561855, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2637561856, 2638020607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2638086144, 2638151679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2638151680, 2639462399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2639462400, 2639593471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2639593472, 2639659007, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2639659008, 2639724543, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2639724544, 2639790079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2639790080, 2639855615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2639855616, 2640052223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640052224, 2640117759, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640117760, 2640183295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640183296, 2640248831, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640248832, 2640314367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640314368, 2640379903, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640379904, 2640445439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640445440, 2640510975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640510976, 2640576511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640576512, 2640642047, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2640642048, 2641952767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2641952768, 2642018303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642083840, 2642149375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642149376, 2642214911, N'FI', N'Finland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642214912, 2642280447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642280448, 2642411519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642411520, 2642477055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642477056, 2642542591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642542592, 2642935807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2642935808, 2643001343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2643001344, 2643066879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2643066880, 2643132415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2643132416, 2643197951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2643197952, 2643263487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2643263488, 2643460095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2643460096, 2643525631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2643525632, 2644180991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644180992, 2644246527, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644312064, 2644377599, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644377600, 2644443135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644443136, 2644508671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644508672, 2644574207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644574208, 2644639743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644639744, 2644770815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644770816, 2644836351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644836352, 2644967423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2644967424, 2645098495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645098496, 2645164031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645164032, 2645229567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645229568, 2645295103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645295104, 2645360639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645360640, 2645426175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645426176, 2645622783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645622784, 2645688319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645688320, 2645753855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645753856, 2645819391, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645819392, 2645884927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645884928, 2645950463, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2645950464, 2646212607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646212608, 2646278143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646278144, 2646474751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646474752, 2646540287, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646540288, 2646605823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646605824, 2646671359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646671360, 2646736895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646736896, 2646933503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646933504, 2646999039, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2646999040, 2647130111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647130112, 2647195647, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647195648, 2647326719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647326720, 2647392255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647392256, 2647457791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647457792, 2647523327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647523328, 2647851007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647851008, 2647916543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2647916544, 2648899583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2648899584, 2648965119, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2648965120, 2649030655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2649030656, 2649489407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2649489408, 2649554943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2649554944, 2649620479, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2649620480, 2649948159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2649948160, 2650013695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650013696, 2650079231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650079232, 2650210303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650210304, 2650275839, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650275840, 2650341375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650341376, 2650406911, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650406912, 2650603519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650603520, 2650669055, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650669056, 2650734591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2650800128, 2653159423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653159424, 2653421567, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653421568, 2653487103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653487104, 2653552639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653552640, 2653618175, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653618176, 2653683711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653683712, 2653749247, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653749248, 2653814783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653880320, 2653945855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2653945856, 2654011391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2654011392, 2654076927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2654076928, 2654142463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2654142464, 2654207999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2654208000, 2654339071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2654339072, 2654404607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2654404608, 2654994431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2654994432, 2655059967, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2655059968, 2655125503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2655125504, 2655191039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2655191040, 2655256575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2655256576, 2655715327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2655715328, 2655780863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2655780864, 2656632831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2656632832, 2656698367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2656698368, 2656763903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2656763904, 2656829439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2656829440, 2656894975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2656894976, 2656960511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2656960512, 2657026047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657026048, 2657157119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657157120, 2657222655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657222656, 2657288191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657288192, 2657353727, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657353728, 2657484799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657484800, 2657550335, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657550336, 2657681407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657681408, 2657746943, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657746944, 2657878015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657878016, 2657943551, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2657943552, 2658009087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2658009088, 2658074623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2658074624, 2658140159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2658140160, 2658205695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2658205696, 2658598911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2658598912, 2658664447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2658664448, 2658926591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2658926592, 2659057663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659057664, 2659123199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659123200, 2659188735, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659188736, 2659254271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659254272, 2659319807, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659319808, 2659385343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659385344, 2659450879, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659450880, 2659516415, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659516416, 2659581951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2659581952, 2660040703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660040704, 2660106239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660106240, 2660171775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660171776, 2660237311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660237312, 2660302847, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660302848, 2660499455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660564992, 2660696063, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660696064, 2660761599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660761600, 2660827135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2660827136, 2661023743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661023744, 2661089279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661089280, 2661285887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661285888, 2661351423, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661351424, 2661416959, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661416960, 2661482495, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661482496, 2661548031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661548032, 2661679103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661679104, 2661941247, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2661941248, 2662006783, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2662006784, 2662072319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2662072320, 2662137855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2662137856, 2662203391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2662203392, 2662662143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2662727680, 2662793215, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2662793216, 2663251967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2663251968, 2663448575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2663448576, 2663514111, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2663514112, 2663579647, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2663579648, 2663645183, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2663645184, 2663710719, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2663710720, 2663776255, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2663776256, 2664955903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2664955904, 2665021439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665021440, 2665086975, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665086976, 2665152511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665152512, 2665218047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665218048, 2665283583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665283584, 2665414655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665414656, 2665480191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665480192, 2665545727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665545728, 2665611263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665611264, 2665676799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665676800, 2665742335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665742336, 2665873407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665873408, 2665938943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2665938944, 2666004479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2666004480, 2666070015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2666070016, 2666135551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2666135552, 2666201087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2666201088, 2667053055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2667053056, 2667118591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2667118592, 2667184127, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2667184128, 2667249663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2667249664, 2667315199, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2667315200, 2667970559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2667970560, 2668036095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668036096, 2668101631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668101632, 2668167167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668167168, 2668363775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668363776, 2668429311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668429312, 2668494847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668494848, 2668560383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668560384, 2668625919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668625920, 2668691455, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668691456, 2668756991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668756992, 2668822527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668822528, 2668888063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2668953600, 2669019135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669019136, 2669084671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669084672, 2669150207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669150208, 2669215743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669215744, 2669281279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669281280, 2669477887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669477888, 2669543423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669543424, 2669608959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669608960, 2669674495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669674496, 2669805567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669805568, 2669871103, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2669871104, 2670067711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2670067712, 2670133247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2670133248, 2670591999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2670592000, 2670657535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2670657536, 2670854143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2670854144, 2670919679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2670919680, 2670985215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2670985216, 2671050751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2671050752, 2671181823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2671181824, 2671247359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2671247360, 2671378431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2671378432, 2671443967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2671443968, 2671509503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2671509504, 2671575039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2671575040, 2672295935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2672295936, 2672361471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2672361472, 2672427007, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2672427008, 2672820223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2672820224, 2672885759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2672885760, 2672951295, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2672951296, 2673082367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673082368, 2673147903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673147904, 2673213439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673278976, 2673410047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673410048, 2673475583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673475584, 2673541119, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673541120, 2673606655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673606656, 2673672191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673672192, 2673737727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673737728, 2673803263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673803264, 2673868799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2673868800, 2674130943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674130944, 2674262015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674262016, 2674327551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674327552, 2674393087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674393088, 2674458623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674458624, 2674589695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674589696, 2674655231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674655232, 2674720767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674720768, 2674786303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674786304, 2674851839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674851840, 2674917375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2674917376, 2675048447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2675048448, 2675113983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2675113984, 2675245055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2675245056, 2675310591, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2675310592, 2675572735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2675572736, 2675638271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2675638272, 2675965951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2675965952, 2676031487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2676031488, 2676097023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2676097024, 2676162559, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2676162560, 2676359167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2676359168, 2676424703, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2676424704, 2677014527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677014528, 2677080063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677080064, 2677145599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677211136, 2677276671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677276672, 2677342207, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677342208, 2677407743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677407744, 2677473279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677473280, 2677538815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677538816, 2677604351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677604352, 2677669887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677669888, 2677735423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677735424, 2677800959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677800960, 2677866495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677866496, 2677997567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2677997568, 2678063103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678128640, 2678194175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678194176, 2678259711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678259712, 2678521855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678521856, 2678587391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678587392, 2678652927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678652928, 2678718463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678718464, 2678783999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678784000, 2678849535, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678849536, 2678915071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678915072, 2678980607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2678980608, 2679046143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2679046144, 2679111679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2679111680, 2679177215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2679177216, 2679242751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2679242752, 2679308287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2679308288, 2679373823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2679373824, 2679439359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2679439360, 2680029183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680029184, 2680094719, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680094720, 2680225791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680225792, 2680356863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680356864, 2680422399, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680422400, 2680487935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680487936, 2680553471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680553472, 2680684543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680684544, 2680750079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2680750080, 2681012223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681077760, 2681143295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681143296, 2681208831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681208832, 2681274367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681274368, 2681339903, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681339904, 2681405439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681405440, 2681470975, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681470976, 2681536511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681536512, 2681602047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681602048, 2681733119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681733120, 2681798655, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681798656, 2681864191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681864192, 2681929727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681929728, 2681995263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2681995264, 2682257407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682322944, 2682388479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682388480, 2682454015, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682454016, 2682519551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682519552, 2682585087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682585088, 2682716159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682716160, 2682781695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682781696, 2682847231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2682847232, 2683043839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683043840, 2683109375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683109376, 2683174911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683174912, 2683240447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683240448, 2683305983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683305984, 2683371519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683371520, 2683437055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683437056, 2683568127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683568128, 2683699199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683699200, 2683830271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683830272, 2683895807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2683895808, 2684157951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684223488, 2684289023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684354560, 2684616703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684616704, 2684682239, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684682240, 2684747775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684747776, 2684813311, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684813312, 2684878847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684878848, 2684944383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2684944384, 2685009919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2685009920, 2685075455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2685075456, 2686386175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2686386176, 2686844927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2686844928, 2686910463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2686910464, 2686975999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2686976000, 2687041535, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2687041536, 2687238143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2687238144, 2687762431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2687762432, 2687827967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2687827968, 2687893503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2687893504, 2688221183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688221184, 2688286719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688286720, 2688352255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688352256, 2688548863, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688548864, 2688614399, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688614400, 2688679935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688679936, 2688745471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688745472, 2688876543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688876544, 2688942079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2688942080, 2689007615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689007616, 2689073151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689073152, 2689138687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689138688, 2689204223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689204224, 2689269759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689269760, 2689335295, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689335296, 2689466367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689466368, 2689531903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689531904, 2689581855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689581856, 2689581887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689581888, 2689597439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689597440, 2689662975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689662976, 2689925119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689925120, 2689990655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2689990656, 2690383871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690383872, 2690449407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690449408, 2690646015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690646016, 2690711551, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690711552, 2690777087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690777088, 2690842623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690842624, 2690908159, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690908160, 2690973695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2690973696, 2691104767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2691104768, 2691170303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2691170304, 2691235839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2691301376, 2691366911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2691366912, 2691760127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2691825664, 2691891199, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2691891200, 2692546559, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2692546560, 2694840319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2696151040, 2696216575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2696413184, 2697789439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2697789440, 2697854975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2697854976, 2697920511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2697920512, 2698117119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698117120, 2698182655, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698182656, 2698248191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698248192, 2698313727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698313728, 2698379263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698379264, 2698444799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698444800, 2698510335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698510336, 2698706943, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698706944, 2698772479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698772480, 2698838015, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698838016, 2698903551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698903552, 2698969087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2698969088, 2699034623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2699231232, 2699296767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2699296768, 2699362303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2699362304, 2699624447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2699624448, 2700935167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2700935168, 2701066239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701197312, 2701262847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701262848, 2701328383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701328384, 2701393919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701393920, 2701459455, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701459456, 2701524991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701524992, 2701656063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701656064, 2701721599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701721600, 2701787135, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701852672, 2701918207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701918208, 2701983743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2701983744, 2702245887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702245888, 2702311423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702376960, 2702442495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702442496, 2702508031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702508032, 2702573567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702614528, 2702614783, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702639104, 2702704639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702704640, 2702770175, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702770176, 2702835711, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702835712, 2702901247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702901248, 2702966783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2702966784, 2703032319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703032320, 2703097855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703097856, 2703163391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703163392, 2703556607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703556608, 2703622143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703622144, 2703818751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703818752, 2703884287, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703884288, 2703949823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2703949824, 2704015359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704015360, 2704277503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704277504, 2704343039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704343040, 2704408575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704408576, 2704474111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704474112, 2704539647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704539648, 2704605183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704605184, 2704670719, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704670720, 2704736255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704736256, 2704801791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704867328, 2704998399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2704998400, 2705063935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705063936, 2705195007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705195008, 2705260543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705260544, 2705326079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705326080, 2705391615, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705391616, 2705522687, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705522688, 2705588223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705588224, 2705784831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705784832, 2705850367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705850368, 2705915903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2705915904, 2706046975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706046976, 2706112511, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706112512, 2706178047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706178048, 2706243583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706243584, 2706309119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706309120, 2706374655, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706374656, 2706571263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706571264, 2706960383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706960384, 2706964479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2706964480, 2707226623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2707226624, 2707488767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2707488768, 2707947519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2707947520, 2708144127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708144128, 2708340735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708340736, 2708406271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708406272, 2708471807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708471808, 2708537343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708537344, 2708733951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708733952, 2708799487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708799488, 2708865023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708865024, 2708930559, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2708930560, 2709127167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709127168, 2709192703, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709192704, 2709258239, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709258240, 2709389311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709389312, 2709454847, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709454848, 2709716991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709716992, 2709782527, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709782528, 2709848063, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2709848064, 2710175743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710241280, 2710306815, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710372352, 2710437887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710437888, 2710503423, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710503424, 2710568959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710568960, 2710700031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710700032, 2710765567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710765568, 2710831103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710831104, 2710896639, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2710896640, 2711093247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2711093248, 2711158783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2711158784, 2711486463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2711486464, 2711551999, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2711552000, 2713190399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2713190400, 2713255935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2713255936, 2713387007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2713387008, 2713452543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2713452544, 2713583615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2713583616, 2713649151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2713649152, 2713976831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2713976832, 2714042367, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2714042368, 2714238975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2714238976, 2714304511, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2714304512, 2714370047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2714370048, 2714435583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2714435584, 2714697727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2714697728, 2714763263, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2714763264, 2715287551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2715287552, 2715353087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2715353088, 2716139519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2716139520, 2716205055, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2716205056, 2716729343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2716729344, 2716794879, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2716794880, 2717253631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2717253632, 2717319167, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2717319168, 2717384703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2717384704, 2717450239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2717450240, 2717646847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2717646848, 2717712383, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2717712384, 2717843455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2717908992, 2718171135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2718171136, 2718236671, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2718236672, 2718629887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2718629888, 2718695423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2718695424, 2718760959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2718760960, 2718826495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2718826496, 2719285247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2719285248, 2719350783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2719350784, 2719416319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2719416320, 2719481855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2719481856, 2719547391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2719547392, 2719612927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2719612928, 2719678463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2719678464, 2720399359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2720399360, 2720464895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2720464896, 2721382399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2721382400, 2721447935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2721447936, 2722627583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2722693120, 2722758655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2722758656, 2723479551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2723479552, 2723545087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2723545088, 2723610623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2723610624, 2724724735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2724790272, 2724855807, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2724855808, 2724921343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2724921344, 2725249023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2725249024, 2725314559, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2725314560, 2725904383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2725904384, 2725969919, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2725969920, 2727018495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2727018496, 2727084031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2727084032, 2727346175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2727346176, 2727608319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2734751744, 2734817279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2734817280, 2734882815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2734882816, 2734948351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2734948352, 2735013887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735013888, 2735079423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735079424, 2735144959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735144960, 2735210495, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735210496, 2735276031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735276032, 2735341567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735341568, 2735407103, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735407104, 2735538175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2735538176, 2736848895, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2736848896, 2736914431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2736914432, 2736979967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2736979968, 2737438719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2737438720, 2738618367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2738618368, 2738683903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2738683904, 2738749439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2738749440, 2742353919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742353920, 2742419455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742419456, 2742484991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742484992, 2742550527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742550528, 2742616063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742616064, 2742681599, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742681600, 2742747135, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742747136, 2742812671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742812672, 2742878207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2742943744, 2743009279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2743009280, 2743140351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2743140352, 2743205887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2743205888, 2744516607, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2744516608, 2744647679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2744647680, 2744713215, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2744713216, 2744844287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2744844288, 2744909823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2744909824, 2744975359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2744975360, 2745040895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745040896, 2745106431, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745106432, 2745171967, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745171968, 2745237503, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745237504, 2745303039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745303040, 2745368575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745368576, 2745434111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745434112, 2745499647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745499648, 2745548799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745548800, 2745565183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745565184, 2745696255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745696256, 2745761791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2745761792, 2746023935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746023936, 2746089471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746089472, 2746155007, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746155008, 2746220543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746220544, 2746286079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746351616, 2746417151, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746417152, 2746482687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746482688, 2746548223, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2746548224, 2747072511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2747072512, 2747138047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2747138048, 2747465727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2747465728, 2748055551, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2748055552, 2748317695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2748317696, 2749628415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2749628416, 2749890559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2749890560, 2750021631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2750021632, 2750349311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2750349312, 2750414847, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2750414848, 2750873599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2750873600, 2750939135, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2750939136, 2751070207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751070208, 2751135743, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751135744, 2751463423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751463424, 2751528959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751528960, 2751660031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751660032, 2751725567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751725568, 2751791103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751791104, 2751856639, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751856640, 2751922175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751922176, 2751987711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2751987712, 2752053247, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752053248, 2752184319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752184320, 2752315391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752315392, 2752380927, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752380928, 2752381695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752381696, 2752381951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752381952, 2752446463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752446464, 2752511999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2752512000, 2753757183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2753757184, 2753822719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2753822720, 2753888255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2753888256, 2753953791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2753953792, 2754084863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754084864, 2754150399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754150400, 2754215935, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754215936, 2754281471, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754281472, 2754347007, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754347008, 2754478079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754478080, 2754543615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754543616, 2754609151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754609152, 2754674687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754674688, 2754936831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2754936832, 2755002367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2755002368, 2755330047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2755330048, 2755526655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2755526656, 2755985407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2755985408, 2756182015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756182016, 2756247551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756247552, 2756313087, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756313088, 2756378623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756378624, 2756444159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756444160, 2756509695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756509696, 2756556543, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756556544, 2756557567, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756557568, 2756575231, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756575232, 2756640767, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756640768, 2756706303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756706304, 2756771839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756771840, 2756837375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2756837376, 2757033983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757033984, 2757099519, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757099520, 2757230591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757230592, 2757296127, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757296128, 2757754879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757754880, 2757820415, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757820416, 2757885951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757885952, 2757951487, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2757951488, 2758017023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758017024, 2758082559, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758082560, 2758148095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758148096, 2758213631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758213632, 2758541311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758541312, 2758606847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758606848, 2758803455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758803456, 2758868991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2758868992, 2759000063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759000064, 2759065599, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759065600, 2759589887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759589888, 2759720959, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759852032, 2759863127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759863128, 2759863131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759863132, 2759870947, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759870948, 2759870951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759870952, 2759883039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883040, 2759883043, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883044, 2759883067, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883068, 2759883071, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883072, 2759883439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883440, 2759883443, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883444, 2759883451, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883452, 2759883455, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759883456, 2759884111, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759884112, 2759884115, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759884116, 2759894559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759894560, 2759894563, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759894564, 2759917567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759917568, 2759983103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2759983104, 2760048639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760048640, 2760114175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760114176, 2760179711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760179712, 2760245247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760245248, 2760310783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760310784, 2760376319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760376320, 2760507391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760507392, 2760572927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760572928, 2760638463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760638464, 2760703999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760704000, 2760769535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760769536, 2760835071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760835072, 2760898559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760898560, 2760899583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760899584, 2760900607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2760900608, 2761031679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2761031680, 2761424895, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2761424896, 2761621503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2761621504, 2761687039, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2761687040, 2761949183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2761949184, 2762211327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2762211328, 2762276863, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2762276864, 2762342399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2762342400, 2762407935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2762407936, 2763063295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2763128832, 2763194367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2763194368, 2768240639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2768306176, 2768437247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2768437248, 2768633855, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2768633856, 2768764927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2768764928, 2769027071, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769027072, 2769092607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769092608, 2769158143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769158144, 2769289215, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769354752, 2769485823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769485824, 2769616895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769616896, 2769682431, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769682432, 2769747967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769747968, 2769813503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769813504, 2769879039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769879040, 2769944575, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2769944576, 2770272255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2770272256, 2770337791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2770337792, 2772631551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2772631552, 2772697087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2772697088, 2772762623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2772762624, 2772828159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2772828160, 2773221375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773221376, 2773286911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773286912, 2773352447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773352448, 2773417983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773417984, 2773745663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773745664, 2773811199, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773811200, 2773876735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773876736, 2773942271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2773942272, 2774335487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2774335488, 2774401023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2774401024, 2774532095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2774532096, 2774597631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2774597632, 2774663167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2774663168, 2774728703, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2774728704, 2774990847, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2774990848, 2775318527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2775318528, 2775384063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2775384064, 2775711743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2775711744, 2775777279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2775777280, 2775842815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2775842816, 2775973887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2775973888, 2776039423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2776039424, 2776891391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2776891392, 2777022463, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2777022464, 2777481215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2777481216, 2777546751, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2777546752, 2777612287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2777612288, 2778071039, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2778071040, 2778333183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2778333184, 2778398719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2778398720, 2779054079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2779054080, 2779119615, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2779119616, 2779906047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2779906048, 2779971583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2779971584, 2780037119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780037120, 2780102655, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780102656, 2780168191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780168192, 2780299263, N'CL', N'Chile') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780299264, 2780364799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780364800, 2780430335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780430336, 2780495871, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780495872, 2780561407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780561408, 2780758015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780758016, 2780823551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780823552, 2780932095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780932096, 2780932223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780932224, 2780933295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780933296, 2780933311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780933312, 2780954623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2780954624, 2781020159, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2781020160, 2781478911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2781478912, 2781544447, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2781544448, 2781675519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2781675520, 2781741055, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2781741056, 2781937663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2781937664, 2782003199, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2782134272, 2782199807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2782199808, 2782265343, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2782265344, 2782658559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2782658560, 2782724095, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2782724096, 2782789631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2782789632, 2782855167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2782855168, 2783182847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783182848, 2783248383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783248384, 2783313919, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783313920, 2783379455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783379456, 2783444991, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783444992, 2783510527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783510528, 2783576063, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783576064, 2783969279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2783969280, 2784034815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2784034816, 2784165887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2784165888, 2784296959, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2784296960, 2784362495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2784362496, 2784428031, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2784428032, 2785542143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2785542144, 2786066431, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2786066432, 2788163583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2788229120, 2788261887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2788261888, 2788294655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2788294656, 2789212159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2789212160, 2789277695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2789277696, 2789343231, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2789343232, 2789933055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2789933056, 2789998591, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2789998592, 2790129663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790195200, 2790260735, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790260736, 2790326271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790326272, 2790391807, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790391808, 2790457343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790457344, 2790522879, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790522880, 2790588415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790588416, 2790653951, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790653952, 2790719487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790719488, 2790785023, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790850560, 2790952959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790952960, 2790952975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2790952976, 2791571455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2791571456, 2791636991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2791636992, 2791768063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2791768064, 2791899135, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2791899136, 2791964671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2791964672, 2792030207, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792030208, 2792226815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792226816, 2792292351, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792292352, 2792357887, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792357888, 2792488959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792488960, 2792554495, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792554496, 2792751103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792751104, 2792882175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792882176, 2792947711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2792947712, 2793013247, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2793013248, 2793209855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2793209856, 2793275391, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2793275392, 2802515967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2802515968, 2802581503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2802581504, 2802909183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2802909184, 2802974719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2802974720, 2803630079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2803630080, 2803695615, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2803695616, 2803761151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2803761152, 2803826687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2803826688, 2803892223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2803892224, 2805989375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2805989376, 2806644735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2806644736, 2806710271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2806710272, 2807103487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2807103488, 2807169023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2807169024, 2807824383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2807824384, 2807889919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2807889920, 2808545279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2808545280, 2808610815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2808610816, 2808872959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2808938496, 2809069567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2809069568, 2809135103, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2809135104, 2809855999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2809856000, 2809921535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2809921536, 2809987071, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2809987072, 2810052607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810052608, 2810249215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810249216, 2810314751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810314752, 2810380287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810380288, 2810576895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810576896, 2810642431, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810642432, 2810904575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810904576, 2810970111, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2810970112, 2812084223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2812084224, 2812149759, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2812149760, 2812411903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2812411904, 2812477439, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2812477440, 2812805119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2812805120, 2812870655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2812870656, 2812936191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2812936192, 2813067263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2813067264, 2813132799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2813132800, 2813263871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2813263872, 2813329407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2813329408, 2813526015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2813526016, 2813591551, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2813591552, 2814181375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2814181376, 2814246911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2814246912, 2815098879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2815098880, 2815164415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2815164416, 2815229951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2815229952, 2815295487, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2815295488, 2815983615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2815983616, 2816015359, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2816015360, 2816015423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2816015424, 2816016383, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2816016384, 2816671743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2816671744, 2816737279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2816737280, 2818310143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2818310144, 2818375679, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2818375680, 2818572287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2818637824, 2818703359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2818703360, 2823159807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823159808, 2823225343, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823225344, 2823553023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823553024, 2823618559, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823618560, 2823684095, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823684096, 2823749631, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823749632, 2823815167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823815168, 2823946239, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2823946240, 2824011775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2824011776, 2824077311, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2824077312, 2824404991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2824404992, 2824470527, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2824536064, 2824798207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2824798208, 2824863743, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2824863744, 2824929279, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2824929280, 2825191423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2825191424, 2825256959, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2825256960, 2825519103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2825519104, 2825584639, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2825584640, 2826108927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826108928, 2826174463, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826174464, 2826436607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826436608, 2826502143, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826567680, 2826633215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826633216, 2826698751, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826698752, 2826829823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826829824, 2826895359, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826895360, 2826960895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2826960896, 2827026431, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827026432, 2827091967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827091968, 2827157503, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827157504, 2827223039, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827223040, 2827288575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827288576, 2827354111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827354112, 2827419647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827419648, 2827681791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827681792, 2827747327, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827747328, 2827812863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827812864, 2827878399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827878400, 2827943935, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2827943936, 2828009471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2828009472, 2828075007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2828075008, 2828533759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2828533760, 2828664831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2828664832, 2828730367, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2828730368, 2828795903, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2828795904, 2829058047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829058048, 2829123583, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829123584, 2829320191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829320192, 2829385727, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829385728, 2829451263, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829451264, 2829516799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829516800, 2829582335, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829582336, 2829844479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829844480, 2829910015, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2829910016, 2830106623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2830106624, 2830172159, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2830172160, 2830761983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2830761984, 2830827519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2830827520, 2830893055, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2830893056, 2830958591, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2830958592, 2831286271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2831548416, 2831613951, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2831613952, 2831810559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2831810560, 2831876095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2831876096, 2832072703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832072704, 2832138239, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832138240, 2832269311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832269312, 2832400383, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832465920, 2832722175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832722176, 2832722431, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832722432, 2832793599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832793600, 2832859135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832859136, 2832924671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832924672, 2832990207, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2832990208, 2833383423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2833383424, 2833448959, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2833580032, 2833711103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2833711104, 2833776639, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2833842176, 2833907711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2833907712, 2833973247, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2833973248, 2834497535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2834497536, 2834563071, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2834563072, 2834825215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2834825216, 2834956287, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2834956288, 2835087359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2835087360, 2835152895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2835152896, 2835283967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2835283968, 2835349503, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2835349504, 2837446655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2837446656, 2839543807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2839543808, 2840015359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2840015360, 2840015615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2840015616, 2843803647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2843803648, 2843869183, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2843869184, 2844524543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2844524544, 2844590079, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2844590080, 2845704191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2845704192, 2845769727, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2845835264, 2848522239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2848522240, 2848587775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2848587776, 2848653311, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2848653312, 2848980991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2850029568, 2853306367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2853306368, 2853371903, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2853371904, 2853765119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2853765120, 2853830655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2853830656, 2854617087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2854617088, 2854682623, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2854682624, 2855469055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2855469056, 2855534591, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2855534592, 2856058879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2856058880, 2856124415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2856124416, 2856452095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2856452096, 2856517631, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2856517632, 2856714239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2856714240, 2856779775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2856779776, 2857369599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2857631744, 2858352639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2858352640, 2858418175, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2858418176, 2862284799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2862284800, 2862350335, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2862350336, 2862415871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2862415872, 2862481407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2862481408, 2863202303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2863202304, 2863267839, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2863267840, 2863857663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2863857664, 2863923199, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2863923200, 2865889279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2865889280, 2865954815, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2865954816, 2867593215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2867593216, 2867724287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2867855360, 2868117503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2868379648, 2868772863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2868838400, 2868903935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2869952512, 2870018047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870018048, 2870083583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870083584, 2870149119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870149120, 2870214655, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870214656, 2870280191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870280192, 2870345727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870345728, 2870411263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870411264, 2870476799, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870476800, 2870542335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870542336, 2870574848, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870574849, 2870575103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870575104, 2870578944, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870578945, 2870579199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870579200, 2870583040, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870583041, 2870583295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870583296, 2870584319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870584320, 2870607871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870607872, 2870673407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870673408, 2870738943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870738944, 2870935551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2870935552, 2871001087, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2871001088, 2871066623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2871066624, 2871083007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2871083008, 2871132159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2873098240, 2874146815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2877292544, 2885681151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (2894069760, 2902458367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3154182144, 3154247679, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3179282432, 3179284479, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3179284480, 3183476735, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187671040, 3187679231, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187703808, 3187711999, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187736576, 3187744767, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187769344, 3187777535, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187802112, 3187810303, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187834880, 3187843071, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187867648, 3187933183, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187933184, 3187949567, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187965952, 3187974143, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3187998720, 3188006911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188031488, 3188039679, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188064256, 3188080639, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188097024, 3188101119, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188129792, 3188137983, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188162560, 3188166655, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188228096, 3188236287, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188260864, 3188264959, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188293632, 3188301823, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188326400, 3188334591, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188359168, 3188375551, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188391936, 3188400127, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188424704, 3188432895, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188457472, 3188465663, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188490240, 3188498431, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188523008, 3188531199, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188555776, 3188559871, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188588544, 3188596735, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188621312, 3188625407, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188654080, 3188662271, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3188981760, 3189047295, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3189243904, 3189309439, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3189768192, 3189833727, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3190030336, 3190292479, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3190292480, 3190358015, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3190554624, 3190816767, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3190816768, 3191078911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191078912, 3191087103, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191111680, 3191119871, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191144448, 3191177215, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191209984, 3191242751, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191275520, 3191291903, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191341056, 3191373823, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191406592, 3191429119, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191429120, 3191431167, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191431168, 3191433215, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191433216, 3191434239, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191434240, 3191439359, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191472128, 3191537663, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191603200, 3191734271, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3191865344, 3191898111, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3196059648, 3196061695, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221225984, 3221226239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221227520, 3221229823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221233664, 3221237759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221291008, 3221410411, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221410412, 3221410412, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221410413, 3221422079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221487616, 3221560319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221560320, 3221561087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221561088, 3221562367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221562368, 3221562623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221562624, 3221565951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221565952, 3221566207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221566464, 3221567743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221568256, 3221568511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221568768, 3221569279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221569280, 3221576191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221576192, 3221576447, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221576448, 3221577727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221577728, 3221577983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221577984, 3221578239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221578240, 3221589503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221589504, 3221589759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221589760, 3221590015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221590016, 3221590271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221590272, 3221590527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221590528, 3221594623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221594624, 3221594879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221594880, 3221605375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221605376, 3221605887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221605888, 3221608447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221608448, 3221608703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221608704, 3221614335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221614336, 3221614591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221614592, 3221614847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221615104, 3221618175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221618176, 3221618431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221618688, 3221618943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221618944, 3221640191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221640192, 3221640447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221640448, 3221656831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221656832, 3221657087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3221657088, 3222011903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222012160, 3222012415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222012672, 3222023423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222023936, 3222024191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222024192, 3222025727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222025728, 3222025983, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222026240, 3222027775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222027776, 3222028031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222028032, 3222030335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222030336, 3222030847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222030848, 3222031359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222031360, 3222031615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222031616, 3222031871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222031872, 3222032639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222032640, 3222032895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222032896, 3222036479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222036480, 3222036735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222036736, 3222036991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222036992, 3222037247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222037248, 3222037503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222037504, 3222038527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222039552, 3222044671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222044928, 3222045183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222045184, 3222055935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222056192, 3222056447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222056448, 3222059007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222059008, 3222061055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222061056, 3222061823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222061824, 3222066943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222066944, 3222067199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222067200, 3222067455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222067456, 3222067967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222068224, 3222071039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222071040, 3222071295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222071296, 3222071551, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222071552, 3222072063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222072064, 3222072319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222072320, 3222075135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222075136, 3222075391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222075392, 3222075903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222075904, 3222076159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222076160, 3222274047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222290432, 3222305535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222305536, 3222313727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222313728, 3222316799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222316800, 3222319615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222319616, 3222320127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222320128, 3222320383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222320384, 3222320895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222320896, 3222326015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222326016, 3222326527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222326528, 3222339583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222339584, 3222455039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222455040, 3222455295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222455296, 3222868735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222868736, 3222868991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222868992, 3222869503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222869504, 3222869759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222869760, 3222872319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222872320, 3222872575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222872576, 3222890751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222890752, 3222891007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222891008, 3222936575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222936576, 3222940927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222940928, 3222941183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222941184, 3222941695, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222941696, 3222952703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222952704, 3222952959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222952960, 3222953215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222953216, 3222953727, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222953728, 3222953983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222953984, 3222954239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222954240, 3222954495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222955008, 3222956031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222956032, 3222964223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222964224, 3222964479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222966272, 3222968831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222968832, 3222973951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222973952, 3222979071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222979072, 3222983167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222983168, 3222983935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222983936, 3222984447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222984448, 3222988543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222988544, 3222988799, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222988800, 3222989055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222989056, 3222989311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222989312, 3222989567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222989568, 3222989823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222989824, 3222990079, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222990080, 3222990591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222990592, 3222990847, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3222990848, 3223191551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223199744, 3223207935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223214848, 3223215359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223215360, 3223215871, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223216128, 3223221247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223222784, 3223223039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223223552, 3223223807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223224064, 3223224319, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223227904, 3223228159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223229184, 3223229695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223229696, 3223229951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223240448, 3223240703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223243264, 3223243519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223244288, 3223245311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223249408, 3223249663, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223252992, 3223258623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223258624, 3223258879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223258880, 3223260671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223260672, 3223260927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223261184, 3223262975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223262976, 3223263231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223263232, 3223263743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223263744, 3223263999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223264000, 3223264255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223264256, 3223265023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223265024, 3223265279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223265280, 3223267327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223267328, 3223267583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223267584, 3223269631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223272960, 3223273215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223273216, 3223283199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223283200, 3223283455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223283712, 3223286783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223286784, 3223289855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223293952, 3223299327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223299584, 3223301119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223301120, 3223303167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223303168, 3223303423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223303424, 3223303679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223305984, 3223307519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223307520, 3223310079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223310080, 3223310335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223310592, 3223311103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223311104, 3223311359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223311360, 3223314431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223314432, 3223314687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223314688, 3223315455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223315712, 3223316223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223316224, 3223316479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223316480, 3223321599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223321600, 3223321855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223321856, 3223322367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223322624, 3223390719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223390720, 3223390975, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223391232, 3223391999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223392000, 3223392255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223392256, 3223392511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223393024, 3223394303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223396352, 3223397375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223397376, 3223397631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223397632, 3223410431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223410432, 3223416831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223416832, 3223417087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223417088, 3223417599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223417600, 3223418367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223418368, 3223420927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223420928, 3223421439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223421440, 3223421695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223421696, 3223421951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223422464, 3223422719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223422720, 3223422975, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223422976, 3223424767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223424768, 3223435007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223435008, 3223437311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223437312, 3223447551, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223447552, 3223452671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223452928, 3223453183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223453184, 3223453439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223458560, 3223458815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223460096, 3223460351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223462656, 3223462911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223466496, 3223466751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223471616, 3223471871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223471872, 3223472383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223476736, 3223476991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223481088, 3223481343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223483392, 3223483647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223490816, 3223491071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223496960, 3223497215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223499520, 3223499775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223499776, 3223504895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223507968, 3223508991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223511040, 3223519231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223519232, 3223524351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223524352, 3223534335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223534336, 3223534591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223534592, 3223534847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223535104, 3223535359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223535360, 3223537919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223537920, 3223542271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223542272, 3223542527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223542528, 3223543295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223543296, 3223543551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223543552, 3223546879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223546880, 3223547135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223547136, 3223554559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223554560, 3223554815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223555072, 3223556095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223556096, 3223556351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223556352, 3223556607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223556608, 3223556863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223556864, 3223557375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223557376, 3223558655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223558656, 3223563263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223563264, 3223563519, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223563520, 3223565567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223565824, 3223566079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223566080, 3223568639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223568640, 3223569663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223569664, 3223570175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223571456, 3223571711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223571712, 3223572223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223572224, 3223572479, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223572480, 3223577855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223577856, 3223578111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223578112, 3223580671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223580672, 3223581951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223581952, 3223582207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223582208, 3223582463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223582464, 3223582719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223582720, 3223582975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223583488, 3223584767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223584768, 3223650303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223650304, 3223715839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223715840, 3223781375, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223781376, 3223823871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223823872, 3223824127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223824128, 3223863295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223863552, 3223863807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223864320, 3223867647, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223873792, 3223874047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223874816, 3223875071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223876608, 3223876863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223879680, 3223887871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223898368, 3223898623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223902464, 3223902719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223905280, 3223905535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223909376, 3223910911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223911936, 3223912191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223912448, 3223938559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223938816, 3223946239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223946240, 3223947519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223947520, 3223947775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223948288, 3223948543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223948544, 3223949823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223949824, 3223950079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223950080, 3223950335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223950336, 3223950591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223950592, 3223953663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223953664, 3223955967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223955968, 3223956223, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223956224, 3223957759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223958016, 3223963135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223963136, 3223963647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223963904, 3223964159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223964160, 3223964415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223964416, 3223964671, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223964672, 3223965183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223965184, 3223965439, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223965440, 3223966207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223966208, 3223966463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223966464, 3223967743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223967744, 3223967999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223968000, 3223968255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223968256, 3223968511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223968512, 3223970303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223970560, 3223970815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223970816, 3223977983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223978240, 3223978495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223978496, 3223979263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223979264, 3223979775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223979776, 3223988735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223988736, 3223990271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223990272, 3223991295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223991296, 3223991551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223991552, 3223991807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223991808, 3223992063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223992064, 3223993343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223993344, 3223994111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223994112, 3223994623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223994624, 3223994879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223994880, 3223995391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223995392, 3223995647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223995648, 3223996159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223996416, 3223999487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3223999488, 3224000255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224000256, 3224000511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224000512, 3224001023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224001024, 3224001279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224001280, 3224002559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224002816, 3224003327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224003328, 3224003583, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224003584, 3224003839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224003840, 3224004095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224004096, 3224004351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224004352, 3224005631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224005632, 3224006655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224006656, 3224012031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224012032, 3224014591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224014592, 3224014847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224014848, 3224016639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224016640, 3224016895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224016896, 3224023039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224023808, 3224024063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224024064, 3224029695, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224029696, 3224030463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224030720, 3224030975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224030976, 3224038655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224038656, 3224038911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224038912, 3224042751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224042752, 3224043007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224043008, 3224043263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224043520, 3224084991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224084992, 3224087551, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224087552, 3224088063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224088064, 3224088319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224088320, 3224090879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224090880, 3224091135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224091648, 3224091903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224091904, 3224092159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224092160, 3224092671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224092672, 3224093951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224093952, 3224094207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224094208, 3224094463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224094464, 3224094975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224094976, 3224095487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224095488, 3224096255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224096512, 3224097279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224097280, 3224097535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224097536, 3224097791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224097792, 3224098047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224098304, 3224098559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224098816, 3224099583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224099584, 3224099839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224099840, 3224100863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224101120, 3224101375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224101376, 3224102911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224103424, 3224103679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224103680, 3224104447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224104704, 3224104959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224104960, 3224109055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224109056, 3224119551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224119552, 3224129791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224129792, 3224132351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224132352, 3224170495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224170496, 3224173567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224173568, 3224258047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224258048, 3224258303, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224258304, 3224258559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224258560, 3224288255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224288256, 3224289023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224289024, 3224302335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224302336, 3224302591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224302592, 3224305663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224305664, 3224367615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224367616, 3224368127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224368128, 3224369663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224369664, 3224379135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224379136, 3224379391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224379392, 3224396287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224396288, 3224396543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224396544, 3224397055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224397824, 3224398079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224398336, 3224398591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224398592, 3224398847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224398848, 3224399103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224399104, 3224399615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224399616, 3224407039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224407296, 3224407551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224407808, 3224408319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224408320, 3224408575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224408576, 3224428543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224428544, 3224428799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224428800, 3224430079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224430336, 3224430591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224430592, 3224430847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224431104, 3224431359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224431360, 3224431615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224432128, 3224432383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224432640, 3224434687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224434688, 3224434943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224434944, 3224435967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224435968, 3224436223, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224436224, 3224436479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224436736, 3224502271, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224502272, 3224567807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224567808, 3224571903, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224571904, 3224633343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224633344, 3224646399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224646400, 3224651775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224651776, 3224652287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224652800, 3224660991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224660992, 3224661247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224661504, 3224662527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224663040, 3224663551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224663808, 3224671999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224672000, 3224672255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224672256, 3224672511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224672512, 3224673791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224674048, 3224674559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224674560, 3224674815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224675072, 3224675839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224676864, 3224677119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224677120, 3224678655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224678656, 3224680703, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224680704, 3224680959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224680960, 3224681471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224682496, 3224683519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224683520, 3224684031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224684032, 3224689919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224689920, 3224690687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224690688, 3224692735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224692736, 3224692991, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224692992, 3224694527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224694528, 3224694783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224694784, 3224697343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224697856, 3224698111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224698112, 3224698367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224698368, 3224698623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224698880, 3224699135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224699136, 3224699647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224699648, 3224725247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224725248, 3224725503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224725504, 3224725759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224725760, 3224739071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224739072, 3224739327, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224739328, 3224772351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224772352, 3224785151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224785152, 3224791039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224791040, 3224791295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224791296, 3224791807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224791808, 3224793343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224793344, 3224793599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224793600, 3224793855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224793856, 3224795391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224795392, 3224795647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224795648, 3224795903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224796160, 3224796415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224796416, 3224797439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224797440, 3224797695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224797696, 3224797951, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224797952, 3224798207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224798208, 3224798463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224798464, 3224798975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224798976, 3224799231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224799488, 3224799743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224799744, 3224799999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224800000, 3224800255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224800256, 3224820735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224820736, 3224820991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224820992, 3224821247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224821248, 3224822015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224822016, 3224822271, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224822272, 3224822527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224822784, 3224826367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224826368, 3224826623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224826624, 3224826879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224826880, 3224827135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224827136, 3224827391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224827392, 3224827647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224827648, 3224827903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224827904, 3224828671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224828672, 3224828927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224829184, 3224829439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224829440, 3224829695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224829952, 3224851455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224851456, 3224851711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224851968, 3224852735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224852736, 3224852991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224852992, 3224854527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224854784, 3224855039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224855040, 3224855551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224855552, 3224855807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224855808, 3224856063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224856064, 3224856575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224856832, 3224857087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224857088, 3224857855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224857856, 3224858111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224858112, 3224858367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224858368, 3224858623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224858624, 3224858879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224858880, 3224859391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224859392, 3224859647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224859648, 3224860159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224860160, 3224860415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224860672, 3224862975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224862976, 3224863231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224863488, 3224863743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224863744, 3224863999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224864000, 3224878079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224878080, 3224878335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224878336, 3224878591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224878592, 3224878847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224879360, 3224879615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224879616, 3224879871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224879872, 3224880383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224880384, 3224880639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224880640, 3224880895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224880896, 3224882431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224882688, 3224882943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224882944, 3224883455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224883456, 3224883711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224883712, 3224884223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224884224, 3224884479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224884480, 3224884991, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224885248, 3224885503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224885760, 3224886015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224886272, 3224886527, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224886528, 3224887295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224887296, 3224887551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224887808, 3224889343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224889344, 3224889599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224889600, 3224890879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224890880, 3224891135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224891136, 3224891647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224892160, 3224892415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224892416, 3224892671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224892928, 3224893183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224893440, 3224893951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224895488, 3224899071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224899072, 3224899327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224899328, 3224908543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224908544, 3224908799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224908800, 3224921087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224921088, 3224921343, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224921344, 3224928255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224928256, 3224928511, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224928512, 3224933887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224933888, 3224934143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224934144, 3224957951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224957952, 3224958207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3224958208, 3225028863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225028864, 3225031423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225031424, 3225033727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225033728, 3225035775, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225035776, 3225037055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225037056, 3225051135, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225051136, 3225052671, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225052672, 3225057535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225057536, 3225057791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225057792, 3225060351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225060352, 3225061631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225063424, 3225075967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225076224, 3225076479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225076480, 3225076991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225076992, 3225077247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225077504, 3225081087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225081088, 3225081343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225081600, 3225082367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225082368, 3225082623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225082880, 3225089279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225089280, 3225089535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225089536, 3225314303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225314304, 3225314559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225314560, 3225419775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225420032, 3225420287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225423872, 3225424383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225426944, 3225427199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225429504, 3225429759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225431040, 3225431551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225431552, 3225433087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225436160, 3225444607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225445376, 3225446399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225451776, 3225452031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225459968, 3225460479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225460480, 3225462783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225470464, 3225470719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225471488, 3225471743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225471744, 3225472511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225477120, 3225481215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225485312, 3225498111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225498368, 3225503487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225503488, 3225506047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225506304, 3225508863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225508864, 3225509631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225509632, 3225509887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225509888, 3225510143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225510144, 3225518591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225518592, 3225518847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225518848, 3225519103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225519104, 3225519359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225519872, 3225520639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225520896, 3225521151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225521152, 3225522175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225522176, 3225522943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225522944, 3225524223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225524224, 3225524479, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225524480, 3225524735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225528320, 3225530367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225530368, 3225530623, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225530624, 3225530879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225531136, 3225531647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225531904, 3225532159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225532160, 3225535999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225536000, 3225540863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225540864, 3225541119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225541120, 3225541375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225541376, 3225544703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225547776, 3225548799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225548800, 3225549055, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225549056, 3225549311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225549312, 3225549567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225549568, 3225550847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225550848, 3225616383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225616640, 3225616895, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225617152, 3225617407, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225617408, 3225617663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225617920, 3225618175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225618432, 3225618687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225618688, 3225618943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225619200, 3225619455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225619456, 3225619711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225619712, 3225622527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225626368, 3225626623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225626880, 3225627391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225627392, 3225627647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225627648, 3225627903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225627904, 3225628159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225628160, 3225628415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225628416, 3225628671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225628672, 3225629183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225629184, 3225629439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225629440, 3225629695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225629696, 3225629951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225629952, 3225630207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225630464, 3225630719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225630720, 3225631231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225631232, 3225631487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225631488, 3225635839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225635840, 3225636095, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225636096, 3225636607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225636608, 3225636863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225636864, 3225637887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225637888, 3225638399, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225638400, 3225638655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225638656, 3225638911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225639424, 3225640447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225640448, 3225640703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225640704, 3225641983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225641984, 3225643263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225643264, 3225643775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225643776, 3225650943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225650944, 3225651199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225651200, 3225657343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225658624, 3225659135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225659136, 3225659391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225659392, 3225659647, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225659904, 3225660159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225660160, 3225660415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225660416, 3225664511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225664512, 3225669887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225669888, 3225671935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225671936, 3225672191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225672192, 3225672447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225672448, 3225672703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225672704, 3225673215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225673472, 3225673727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225673728, 3225675263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225675264, 3225676287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225676288, 3225679871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225679872, 3225680127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225680128, 3225680383, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225680640, 3225681919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225681920, 3225682943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225682944, 3225683199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225683200, 3225687039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225687040, 3225687807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225687808, 3225688063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225688064, 3225689343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225689600, 3225689855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225689856, 3225694975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225694976, 3225695231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225695232, 3225695487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225695488, 3225701119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225701120, 3225701375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225701376, 3225709567, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225709568, 3225710079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225710080, 3225710591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225710592, 3225714687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225715456, 3225715711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225715712, 3225715967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225715968, 3225716991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225716992, 3225717247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225717248, 3225717503, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225717504, 3225717759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225717760, 3225720063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225720320, 3225720575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225720576, 3225721343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225721344, 3225723903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225723904, 3225725439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225725440, 3225725695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225725696, 3225726207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225726208, 3225726463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225726464, 3225726719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225726720, 3225726975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225726976, 3225727231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225727232, 3225727487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225727744, 3225727999, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225728000, 3225728511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225728512, 3225728767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225728768, 3225729023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225729024, 3225729279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225729280, 3225729535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225729536, 3225729791, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225729792, 3225735423, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225735424, 3225735679, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225735680, 3225735935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225735936, 3225737215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225737216, 3225737471, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225737472, 3225738495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225738496, 3225738751, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225738752, 3225739263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225739264, 3225739519, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225739520, 3225740543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225740544, 3225740799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225740800, 3225741055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225741056, 3225741823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225742080, 3225745919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225745920, 3225746687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225746688, 3225746943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225746944, 3225747199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225747456, 3225763839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225763840, 3225764095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225766400, 3225766655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225767936, 3225769983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225773312, 3225773567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225774080, 3225776127, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225776128, 3225776383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225777152, 3225777407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225777408, 3225777663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225780224, 3225784319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225784320, 3225788415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225792768, 3225793023, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225796096, 3225796351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225805824, 3225806847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225807360, 3225807615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225810688, 3225810943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225812992, 3225827071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225827072, 3225827327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225827328, 3225843711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225843712, 3225847039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225847040, 3225847551, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225847552, 3225847807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225847808, 3225848063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225848064, 3225848831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225848832, 3225849087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225849088, 3225853951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225853952, 3225857023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225857024, 3225857279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225857280, 3225857535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225857536, 3225857791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225857792, 3225858047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225858048, 3225858559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225858560, 3225858815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225858816, 3225860095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225860096, 3225868287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225868288, 3225868543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225868544, 3225869055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225869056, 3225869311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225869312, 3225870335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225870336, 3225870591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225870592, 3225873663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225873664, 3225873919, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225873920, 3225874943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225874944, 3225875199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225875456, 3225875967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225876480, 3225878527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225878528, 3225944063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225944064, 3225977855, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225977856, 3225978111, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3225978112, 3226008831, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226008832, 3226009343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226009600, 3226010879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226010880, 3226011135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226011136, 3226012671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226012672, 3226012927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226012928, 3226014207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226014464, 3226014975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226014976, 3226015231, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226015232, 3226015487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226015744, 3226016255, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226016256, 3226018303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226018304, 3226018559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226018560, 3226021119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226021120, 3226026495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226026496, 3226026751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226026752, 3226067455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226067456, 3226067711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226067712, 3226068223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226068224, 3226068479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226068480, 3226068991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226075136, 3226107903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226110208, 3226110719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226110720, 3226128639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226128640, 3226131455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226140672, 3226189823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226191360, 3226191615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226191872, 3226201855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226201856, 3226202111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226202112, 3226206207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226206208, 3226215423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226215424, 3226236927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226237184, 3226237439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226237440, 3226237695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226237696, 3226241535, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226241536, 3226241791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226241792, 3226250495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226250496, 3226251263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226251264, 3226251519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226251520, 3226267903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226267904, 3226268159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226268160, 3226268415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226268416, 3226268927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226268928, 3226269951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226269952, 3226270719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226270720, 3226271743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226271744, 3226273791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226273792, 3226274047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226274048, 3226274559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226274560, 3226274815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226274816, 3226276095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226276096, 3226276351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226276352, 3226276863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226277632, 3226283519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226283520, 3226291199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226291200, 3226300927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226300928, 3226301439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226301440, 3226302463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226302464, 3226303487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226303488, 3226305535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226305536, 3226307327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226307328, 3226307583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226307584, 3226308095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226308096, 3226365439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226365440, 3226365951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226365952, 3226366975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226366976, 3226367231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226367232, 3226374143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226374144, 3226375423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226375424, 3226376703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226376704, 3226376959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226376960, 3226384639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226384640, 3226385407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226385408, 3226468351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226470400, 3226473471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226473472, 3226473983, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226473984, 3226474495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226474496, 3226474751, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226475264, 3226475519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226475776, 3226476287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226476288, 3226479359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226479360, 3226479871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226480128, 3226480383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226480384, 3226481407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226481408, 3226481663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226481664, 3226492927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226521344, 3226521855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226521856, 3226522111, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226522112, 3226533887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226535936, 3226536191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226546176, 3226546431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226548992, 3226549247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226549248, 3226550271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226550272, 3226554367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226555648, 3226555903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226556416, 3226556671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226558720, 3226558975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226561792, 3226562047, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226563072, 3226563327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226564864, 3226565119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226565376, 3226565631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226569984, 3226570239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226574848, 3226575103, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226576384, 3226576639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226578944, 3226583039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226583040, 3226583295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226583552, 3226583807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226592768, 3226593023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226593792, 3226594047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226598400, 3226598911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226599424, 3226625535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226625536, 3226625791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226625792, 3226626047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226626048, 3226626303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226626304, 3226629375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226629376, 3226629631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226629632, 3226630399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226630400, 3226630655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226630656, 3226631167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226631168, 3226631423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226631424, 3226631935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226631936, 3226632191, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226632192, 3226633215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226633216, 3226633471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226635008, 3226635263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226635264, 3226635519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226635520, 3226635775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226635776, 3226636031, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226636032, 3226636287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226637056, 3226637823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226637824, 3226638079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226638080, 3226638335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226638592, 3226638847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226638848, 3226639615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226639616, 3226640127, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226640128, 3226640639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226640640, 3226640895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226640896, 3226654207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226654208, 3226654463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226654464, 3226655743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226655744, 3226656255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226656256, 3226656511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226656512, 3226658303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226658304, 3226658559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226658560, 3226661119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226661120, 3226661375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226661888, 3226662143, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226664960, 3226690815, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226690816, 3226691071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226691072, 3226691327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226691584, 3226691839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226691840, 3226695167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226695168, 3226695679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226695680, 3226695935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226695936, 3226696191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226696192, 3226696447, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226696448, 3226696703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226705152, 3226705407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226705408, 3226705919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226705920, 3226706175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226706176, 3226706943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226707200, 3226707455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226707456, 3226715391, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226715392, 3226715647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226715648, 3226715903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226715904, 3226716159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226716160, 3226716415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226716672, 3226716927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226716928, 3226717439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226717696, 3226717951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226717952, 3226720511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226720512, 3226721279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226721280, 3226721791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226722048, 3226722303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226722304, 3226722559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226722560, 3226723583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226723584, 3226723839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226723840, 3226724095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226724096, 3226724351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226724352, 3226725631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226725632, 3226726143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226726144, 3226728191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226728192, 3226728447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226728448, 3226730495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226731008, 3226731519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226731776, 3226732031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226732288, 3226733567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226733568, 3226733823, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226733824, 3226734079, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226734080, 3226734335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226734336, 3226734591, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226734592, 3226737407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226737408, 3226737663, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226737664, 3226738175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226738176, 3226738431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226738432, 3226738687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226738688, 3226739199, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226739200, 3226739455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226740736, 3226742783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226744576, 3226746367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226746368, 3226746623, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226746624, 3226748671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226748672, 3226749439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226749440, 3226749695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226749696, 3226752255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226752256, 3226752767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226752768, 3226753023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226753024, 3226753279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226753280, 3226753535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226753536, 3226753791, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226753792, 3226754303, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226754304, 3226757375, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226757376, 3226757887, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226757888, 3226758655, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226758912, 3226762751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226763008, 3226770687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226770688, 3226772991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226772992, 3226773247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226773248, 3226774783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226774784, 3226775039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226775040, 3226775551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226775552, 3226783743, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226783744, 3226784767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226784768, 3226785023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226785024, 3226786559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226786560, 3226786815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226786816, 3226787071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226787072, 3226787327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226787328, 3226788095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226788352, 3226789375, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226789376, 3226789631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226789632, 3226791167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226791168, 3226791679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226791680, 3226792191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226792192, 3226792703, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226792704, 3226792959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226792960, 3226793215, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226793216, 3226793983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226793984, 3226795263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226795264, 3226795519, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226795520, 3226795775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226796032, 3226861567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226861824, 3226862079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226862080, 3226864383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226864384, 3226864639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226864640, 3226864895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226864896, 3226865151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226865152, 3226865407, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226865408, 3226866175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226866176, 3226866431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226866432, 3226867967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226867968, 3226868223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226868224, 3226868479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226868480, 3226868735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226868736, 3226884351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226884352, 3226884607, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226884608, 3226886143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226886144, 3226886399, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226886400, 3226893567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226893568, 3226894079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226894080, 3226894335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226894336, 3226894591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226894592, 3226894847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226895104, 3226895359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226895360, 3226895871, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226895872, 3226896127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226896128, 3226896639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226896640, 3226896895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226896896, 3226897151, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226897152, 3226902527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226903040, 3226903295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226903296, 3226903551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226903552, 3226903807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226903808, 3226904063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226904064, 3226904319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226904320, 3226904575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226904576, 3226904831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226904832, 3226905087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226905088, 3226920447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226920448, 3226923007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226923008, 3226926591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226926592, 3226926847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226927104, 3226992639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226992896, 3226993151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226993152, 3226993663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226993664, 3226993919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226993920, 3226994175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226994176, 3226994687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226994688, 3226994943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226994944, 3226995455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226995456, 3226996735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226996992, 3226997247, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226998016, 3226998527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226998528, 3226999039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3226999040, 3227013119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227013120, 3227013375, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227013376, 3227013887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227013888, 3227014399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227014400, 3227014655, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227014656, 3227014911, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227014912, 3227017215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227017472, 3227017983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227017984, 3227018239, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227018496, 3227019007, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227019008, 3227020287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227020288, 3227020543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227020800, 3227022847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227022848, 3227023103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227023104, 3227023359, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227023360, 3227023615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227023872, 3227024127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227024128, 3227024383, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227024384, 3227024895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227025408, 3227025663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227025664, 3227025919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227025920, 3227026175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227026176, 3227026687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227026688, 3227026943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227027456, 3227038207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227039744, 3227040511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227040512, 3227040767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227040768, 3227041279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227041280, 3227041535, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227041536, 3227042815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227042816, 3227043071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227043072, 3227043327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227043584, 3227044863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227044864, 3227045119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227045120, 3227053567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227053568, 3227053823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227053824, 3227054079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227054080, 3227056639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227056640, 3227058175, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227058176, 3227083519, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227083520, 3227083775, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227083776, 3227123711, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227123712, 3227225087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227225088, 3227225599, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227225600, 3227234559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227234560, 3227234815, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227234816, 3227235071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227235072, 3227235327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227235328, 3227236607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227236608, 3227236863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227236864, 3227237119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227237120, 3227237631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227237632, 3227237887, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227237888, 3227238143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227238144, 3227238399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227238400, 3227239935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227240192, 3227240447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227240448, 3227240703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227240704, 3227240959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227240960, 3227243007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227243008, 3227243263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227243264, 3227243519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227243520, 3227243775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227243776, 3227244031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227244032, 3227249151, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227249408, 3227249663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227249664, 3227252735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227252736, 3227254271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227254272, 3227254527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227256832, 3227258623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227258624, 3227258879, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227258880, 3227273983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227273984, 3227274239, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227274240, 3227274495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227274496, 3227274751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227274752, 3227276543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227276800, 3227277055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227277312, 3227281407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227281408, 3227282175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227282176, 3227282431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227282432, 3227282687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227282688, 3227282943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227282944, 3227284479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227284480, 3227284735, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227284992, 3227286783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227286784, 3227287039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227287040, 3227287295, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227287296, 3227287551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227287552, 3227287807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227287808, 3227288063, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227288064, 3227288319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227288320, 3227288831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227288832, 3227289087, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227289088, 3227289343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227289344, 3227289599, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227289600, 3227290111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227290112, 3227290367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227290368, 3227290879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227290880, 3227291135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227291136, 3227294463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227294464, 3227294975, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227295232, 3227305983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227309824, 3227310079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227310080, 3227310335, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227310336, 3227312127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227312128, 3227312383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227312384, 3227315199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227320320, 3227385855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227385856, 3227391999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227392000, 3227392255, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227392256, 3227393023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227393024, 3227393279, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227393280, 3227396351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227396352, 3227396607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227396608, 3227400447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227400448, 3227400703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227400704, 3227400959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227400960, 3227401471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227401472, 3227401727, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227401728, 3227402495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227402496, 3227403007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227403008, 3227403519, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227403520, 3227403775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227404288, 3227405311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227405312, 3227405567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227405568, 3227414015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227414272, 3227415551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227415552, 3227415807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227415808, 3227416063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227416064, 3227417087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227417088, 3227417343, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227417344, 3227417599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227417856, 3227418111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227418112, 3227418367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227418368, 3227425791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227425792, 3227427583, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227427584, 3227427839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227427840, 3227429119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227429120, 3227429375, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227429376, 3227429887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227429888, 3227430143, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227430144, 3227430399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227430400, 3227430655, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227430656, 3227437055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227437056, 3227437311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227437312, 3227437823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227438848, 3227439103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227439104, 3227439615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227439616, 3227439871, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227439872, 3227440127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227440128, 3227440383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227440384, 3227442175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227442176, 3227442431, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227442432, 3227442687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227442688, 3227443711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227443712, 3227443967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227443968, 3227444223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227444224, 3227445503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227445504, 3227445759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227445760, 3227446015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227446016, 3227446271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227446272, 3227446783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227446784, 3227447039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227447040, 3227447295, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227447296, 3227447807, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227447808, 3227448063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227448064, 3227448575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227448576, 3227448831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227448832, 3227449087, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227449088, 3227450367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227468032, 3227468287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227516928, 3227582463, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227582464, 3227638271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227638272, 3227638527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227638528, 3227647999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227648000, 3227659775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227659776, 3227660031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227660032, 3227660543, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227660544, 3227660799, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227660800, 3227713535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227779328, 3227779583, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227779584, 3227779839, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227779840, 3227783679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227783680, 3227783935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227783936, 3227784703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227784704, 3227784959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227784960, 3227785727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227785728, 3227792383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227792384, 3227792639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227792640, 3227792895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227792896, 3227794687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227794688, 3227794943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227794944, 3227795199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227795200, 3227795455, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227795456, 3227797503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227798528, 3227798783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227798784, 3227799039, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227799040, 3227799295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227799296, 3227799551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227799552, 3227799807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227799808, 3227800063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227800320, 3227803647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227803648, 3227804415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227804416, 3227804671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227804672, 3227804927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227804928, 3227805183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227805184, 3227813375, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227813376, 3227813631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227813632, 3227815167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227815168, 3227815935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227815936, 3227816191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227816192, 3227818495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227818496, 3227818751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227818752, 3227844607, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227844864, 3227845119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227845120, 3227845631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227845632, 3227845887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227846144, 3227846655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227846656, 3227846911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227847424, 3227847679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227847680, 3227848703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227848704, 3227848959, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227848960, 3227851775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227851776, 3227852031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227852032, 3227853055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227853312, 3227853567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227853568, 3227863807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227863808, 3227864063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227864064, 3227865343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227865344, 3227867903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227867904, 3227868159, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227868160, 3227874815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227874816, 3227875071, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227875072, 3227878911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227878912, 3227879167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227879168, 3227879679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227879680, 3227879935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227879936, 3227880959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227880960, 3227881215, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227881216, 3227885567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227885568, 3227887871, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227887872, 3227888127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227888128, 3227888383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227888384, 3227889663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227889664, 3227889919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227889920, 3227890431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227890432, 3227890943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227890944, 3227891455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227891456, 3227891711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227891712, 3227893759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227893760, 3227894015, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227894016, 3227895039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227895040, 3227895551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227895552, 3227909119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227909120, 3227909375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227909376, 3227909631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227909632, 3227909887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227910400, 3227910655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227910656, 3227911679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227911680, 3227912191, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227912192, 3227912447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227912448, 3227912703, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227912704, 3227912959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227912960, 3227913215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227913216, 3227914495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227914496, 3227914751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227914752, 3227918591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227918592, 3227918847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227918848, 3227931135, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227931136, 3227931391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227931392, 3227931647, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227931648, 3227931903, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227932672, 3227932927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227932928, 3227933183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227933184, 3227933695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227933696, 3227933951, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227933952, 3227934463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227934464, 3227934719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227934720, 3227947519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227947520, 3227955711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227955712, 3227964927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227964928, 3227965183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227965184, 3227967487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227967488, 3227967743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227967744, 3227967999, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227968000, 3227968255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227968256, 3227968767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227968768, 3227969023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227969024, 3227971327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227971328, 3227971583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227971584, 3227974143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227974144, 3227974655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227974656, 3227975167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227975936, 3227976191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227976192, 3227976447, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227976448, 3227977471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227977472, 3227977727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227977728, 3227978751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227979008, 3227979263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227979264, 3227979519, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227979520, 3227980799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227980800, 3227981055, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227981056, 3227981567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227981568, 3227981823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227981824, 3227982591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227982592, 3227982847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227982848, 3227985919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227985920, 3227986175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227986176, 3227986431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227986432, 3227986943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227986944, 3227987455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227987456, 3227987711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227987712, 3227997439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3227997440, 3228005631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228005632, 3228008959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228008960, 3228009215, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228009472, 3228009727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228009728, 3228010751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228010752, 3228011519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228011520, 3228013311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228013312, 3228013567, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228013568, 3228045055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228045056, 3228045311, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228045312, 3228046335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228046592, 3228047103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228047104, 3228047359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228047360, 3228048383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228048384, 3228048895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228048896, 3228050175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228050176, 3228050943, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228051200, 3228051455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228051456, 3228051711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228051712, 3228051967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228051968, 3228052223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228052224, 3228052991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228052992, 3228053503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228053504, 3228053759, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228054016, 3228054783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228054784, 3228055039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228055040, 3228055295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228055296, 3228055807, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228055808, 3228056319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228056320, 3228059647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228059648, 3228059903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228060160, 3228060927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228060928, 3228061183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228061184, 3228061695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228061696, 3228061951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228061952, 3228062207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228062208, 3228062463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228062464, 3228069887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228076032, 3228077055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228077056, 3228077311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228077312, 3228077567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228077568, 3228077823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228077824, 3228078847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228078848, 3228079103, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228079104, 3228080639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228080640, 3228080895, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228080896, 3228081151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228081152, 3228082175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228082944, 3228083967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228083968, 3228084479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228084480, 3228085247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228085248, 3228085503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228085504, 3228100607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228100608, 3228101119, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228101120, 3228102143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228102144, 3228102399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228102400, 3228103935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228103936, 3228104191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228104192, 3228104703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228104704, 3228104959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228104960, 3228105471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228105472, 3228105727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228105728, 3228105983, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228105984, 3228106495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228106752, 3228109311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228109312, 3228109567, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228109568, 3228125951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228125952, 3228126207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228126208, 3228133375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228133376, 3228134655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228134656, 3228150271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228150272, 3228150527, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228150528, 3228156671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228156672, 3228156927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228156928, 3228171775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228171776, 3228172031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228172032, 3228172287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228172288, 3228237823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228238080, 3228238335, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228238336, 3228238591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228238592, 3228238847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228238848, 3228239359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228239616, 3228240127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228240128, 3228240383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228240384, 3228240639, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228240640, 3228241407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228241408, 3228250367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228250624, 3228250879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228250880, 3228263679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228263680, 3228263935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228263936, 3228265983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228265984, 3228266239, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228266496, 3228267007, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228267008, 3228267263, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228267264, 3228268543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228269056, 3228269311, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228269312, 3228269567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228269568, 3228270079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228270080, 3228271103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228271104, 3228271359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228271360, 3228271615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228271616, 3228271871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228272128, 3228272383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228274688, 3228280831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228280832, 3228281087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228281088, 3228281599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228281600, 3228282111, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228282112, 3228282367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228282368, 3228282623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228282624, 3228283135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228283136, 3228283391, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228283392, 3228283647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228283648, 3228285695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228285696, 3228285951, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228285952, 3228289023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228289024, 3228297215, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228297216, 3228297727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228297728, 3228297983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228297984, 3228298495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228298496, 3228309247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228309248, 3228327167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228327168, 3228328703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228328704, 3228328959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228328960, 3228329471, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228329472, 3228330751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228330752, 3228331263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228331264, 3228332287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228332288, 3228332543, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228332544, 3228332799, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228332800, 3228334079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228334080, 3228334335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228334336, 3228334591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228334592, 3228335359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228335360, 3228335615, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228335616, 3228335871, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228336128, 3228336639, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228336640, 3228337663, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228337664, 3228338431, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228338432, 3228340735, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228340736, 3228341247, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228341248, 3228341759, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228341760, 3228342271, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228342272, 3228342783, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228342784, 3228343039, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228343040, 3228343295, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228343296, 3228343551, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228343552, 3228344063, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228344064, 3228344575, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228344576, 3228347135, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228347136, 3228347391, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228347392, 3228348159, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228348160, 3228353279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228353280, 3228358399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228358400, 3228362239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228362240, 3228362495, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228362496, 3228362751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228362752, 3228363007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228363008, 3228363263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228363264, 3228363519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228363520, 3228364287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228364288, 3228364543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228364800, 3228368895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228368896, 3228399615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228399872, 3228400127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228400128, 3228400383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228400384, 3228413183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228413184, 3228413439, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228413440, 3228417791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228417792, 3228418559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228418560, 3228418815, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228418816, 3228421119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228421120, 3228421375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228421376, 3228423679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228423680, 3228424191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228424192, 3228430847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228430848, 3228431103, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228431104, 3228434431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228434432, 3228443903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228443904, 3228444159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228444160, 3228456191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228456192, 3228456447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228456448, 3228457471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228457472, 3228457727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228457728, 3228458751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228458752, 3228459007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228459008, 3228461567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228461568, 3228461823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228461824, 3228464127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228464128, 3228464383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228464384, 3228483583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228491520, 3228496127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228496128, 3228496383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228496384, 3228508159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228508160, 3228508415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228508416, 3228508671, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228508672, 3228509439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228509952, 3228510207, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228510208, 3228511231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228511232, 3228511487, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228511488, 3228511999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228512000, 3228512255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228512256, 3228512511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228512512, 3228513791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228521984, 3228522495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228522496, 3228522751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228522752, 3228525823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228525824, 3228526079, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228526080, 3228526335, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228526336, 3228526591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228526592, 3228526847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228526848, 3228527103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228527104, 3228531711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228531712, 3228532223, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228532224, 3228532479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228532480, 3228532735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228540928, 3228558591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228558592, 3228559103, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228559104, 3228564479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228564480, 3228564735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228564736, 3228565247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228565504, 3228572927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228573184, 3228573951, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228573952, 3228574463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228574720, 3228577023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228577024, 3228577279, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228577280, 3228578047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228578048, 3228578303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228578304, 3228581119, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228581120, 3228581375, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228581376, 3228583167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228583424, 3228585983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228585984, 3228590591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228590592, 3228590847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228590848, 3228591103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228591104, 3228591359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228591360, 3228591871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228592128, 3228617727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228617728, 3228617983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228617984, 3228618239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228618240, 3228618495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228618496, 3228618751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228618752, 3228619007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228619008, 3228620031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228620032, 3228620287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228620288, 3228620543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228620544, 3228620799, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228620800, 3228628735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228628736, 3228628991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228628992, 3228630527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228630528, 3228630783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228631040, 3228696575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228696576, 3228827647, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228827648, 3228828159, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228828160, 3228829183, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228829184, 3228829695, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228829696, 3228830207, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228830208, 3228833791, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228833792, 3228844287, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228844288, 3228845567, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228845568, 3228845823, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228845824, 3228846079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228846080, 3228846335, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228846336, 3228846591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228846592, 3228847359, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228847360, 3228847615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228847616, 3228847871, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228847872, 3228848895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228848896, 3228849407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228849408, 3228849663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228849664, 3228850175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228850176, 3228850687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228850688, 3228851711, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228851712, 3228851967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228851968, 3228852735, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228852736, 3228853247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228853248, 3228853567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228853568, 3228853599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228853600, 3228854271, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228854272, 3228855295, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228855296, 3228855807, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228855808, 3228856063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228856064, 3228856319, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228856320, 3228857855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228857856, 3228858111, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228858112, 3228858367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228858368, 3228858623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228858624, 3228859647, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228859648, 3228859903, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228859904, 3228860927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228860928, 3228861695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228861696, 3228862975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228862976, 3228863231, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228863232, 3228863487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228863488, 3228863743, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228863744, 3228863999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228864000, 3228864255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228864256, 3228864511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228864512, 3228866815, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228866816, 3228868095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3228868096, 3229024255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229024256, 3229092095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229092096, 3229093887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229093888, 3229101823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229101824, 3229102591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229102592, 3229104895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229104896, 3229105151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229105152, 3229120511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229120512, 3229120767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229120768, 3229148927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229148928, 3229149183, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229149184, 3229151487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229151488, 3229151743, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229151744, 3229155327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229155328, 3229219583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229219584, 3229219839, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229219840, 3229220863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229220864, 3229245439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229245440, 3229246719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229246720, 3229250815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229250816, 3229251071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229251072, 3229254399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229254400, 3229256959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229256960, 3229258495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229258496, 3229259007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229259520, 3229264639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229264640, 3229264895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229264896, 3229265919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229265920, 3229266175, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229266176, 3229266943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229266944, 3229267199, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229267200, 3229272319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229273600, 3229273855, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229273856, 3229274623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229274624, 3229274879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229274880, 3229275135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229275392, 3229275647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229275648, 3229275903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229276160, 3229281023, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229281024, 3229281791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229281792, 3229283071, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229283072, 3229285887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229285888, 3229286143, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229286400, 3229354495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229354496, 3229355775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229355776, 3229358079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229358080, 3229358335, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229358336, 3229359359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229359872, 3229360127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229360128, 3229360383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229360384, 3229361919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229361920, 3229362175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229362176, 3229363199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229363456, 3229363711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229363712, 3229363967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229363968, 3229380607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229380608, 3229380863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229380864, 3229381375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229381376, 3229381631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229381632, 3229381887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229381888, 3229382143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229382144, 3229382399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229382656, 3229390847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229390848, 3229391103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229391104, 3229391359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229391360, 3229391615, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229391616, 3229391871, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229391872, 3229394943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229394944, 3229408255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229408256, 3229412095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229412096, 3229483007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229483008, 3229499647, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229499648, 3229500671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229548544, 3229679615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229679872, 3229680383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229680384, 3229680895, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229680896, 3229695487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229695488, 3229700095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229700096, 3229700351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229700352, 3229701887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229701888, 3229702143, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229702144, 3229704703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229704704, 3229704959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229704960, 3229708287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229745152, 3229749759, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229749760, 3229750015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229750016, 3229810687, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229810688, 3229814015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229814016, 3229814271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229814272, 3229815807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229815808, 3229816063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229816320, 3229817087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229817088, 3229817599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229817600, 3229818623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229818624, 3229830911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229830912, 3229831167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229831168, 3229833215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229833472, 3229833727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229833728, 3229834495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229834496, 3229834751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229834752, 3229835007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229835008, 3229835263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229835264, 3229835519, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229835520, 3229835775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229835776, 3229838335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229838336, 3229838591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229838592, 3229838847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229839104, 3229844479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229844480, 3229844735, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229844736, 3229844991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229845248, 3229845503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229845504, 3229847295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229847296, 3229874943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229874944, 3229875455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229875456, 3229875967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229876224, 3229878271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229878272, 3229878527, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229878528, 3229878783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229878784, 3229879039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229879040, 3229879295, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229879296, 3229880063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229880064, 3229880319, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229880320, 3229881087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229881088, 3229881343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229881344, 3229883391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229883648, 3229883903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229884160, 3229884415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229884928, 3229885183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229885184, 3229885439, N'BR', N'Brazil') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229885440, 3229886719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229886720, 3229886975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229886976, 3229889791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229889792, 3229890047, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229890048, 3229890303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229890304, 3229890559, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229890560, 3229891583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229891584, 3229891839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229892608, 3229900031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229900032, 3229900287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229900288, 3229901567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229901568, 3229901823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229901824, 3229902335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229902336, 3229902591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229902592, 3229937407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229937408, 3229937663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229937664, 3229937919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229937920, 3229938175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229938176, 3229938431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229938688, 3229938943, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229938944, 3229939199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229939200, 3229939455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229939456, 3229940735, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229940736, 3229940991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229940992, 3229941247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229941248, 3229941503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229942272, 3229942783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229943040, 3229943295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229943296, 3229943551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229943552, 3229944319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229944320, 3229944575, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229944576, 3229945343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229945344, 3229945599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229945600, 3229945855, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229945856, 3229947135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229947136, 3229947391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229947392, 3229948927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229948928, 3229949183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229949184, 3229949695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229949696, 3229949951, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229949952, 3229950207, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229950208, 3229950975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229950976, 3229951231, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229951232, 3229952255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229952256, 3229952511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229952512, 3229955327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229955328, 3229955583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229955584, 3229956095, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229956096, 3229956607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229956608, 3229956863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229956864, 3229958143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229958144, 3229958399, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229958400, 3229958655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229958656, 3229958911, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229958912, 3229959167, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229959168, 3229961215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229962240, 3229967615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229967872, 3229968127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229968128, 3229968383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229968384, 3229968895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229969408, 3229969663, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229969664, 3229969919, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229969920, 3229970431, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229971456, 3229972735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229972736, 3229972991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229972992, 3229975295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229975296, 3229975551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229975552, 3229976575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3229978624, 3230004223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230004224, 3230004479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230004480, 3230004991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230005760, 3230006015, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230006016, 3230007295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230007296, 3230043903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230043904, 3230044159, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230044160, 3230072831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230072832, 3230074623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230074624, 3230074879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230074880, 3230082559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230082560, 3230084607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230084608, 3230084863, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230084864, 3230085119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230085120, 3230085375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230085376, 3230085631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230085888, 3230086143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230086144, 3230086655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230088960, 3230089215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230089216, 3230089727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230089728, 3230089983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230089984, 3230090239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230090240, 3230090495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230090496, 3230092543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230092544, 3230092799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230092800, 3230093823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230093824, 3230094079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230094080, 3230094335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230094336, 3230095615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230095616, 3230101503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230101504, 3230105855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230105856, 3230106111, N'PT', N'Portugal') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230106112, 3230106879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230106880, 3230107135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230107136, 3230109439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230109440, 3230109695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230109696, 3230109951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230109952, 3230115071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230115072, 3230115327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230115328, 3230115583, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230115584, 3230116095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230116096, 3230117631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230117632, 3230117887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230117888, 3230120191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230120192, 3230120447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230120448, 3230120703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230120704, 3230120959, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230120960, 3230124031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230125312, 3230125567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230125824, 3230126335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230126336, 3230126591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230126592, 3230126847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230126848, 3230128639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230128896, 3230129151, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230129152, 3230129663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230129664, 3230129919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230130176, 3230130431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230130432, 3230130687, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230130688, 3230131967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230131968, 3230132991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230132992, 3230137599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230137600, 3230137855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230137856, 3230138111, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230138368, 3230140159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230140160, 3230140415, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230140416, 3230140671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230140672, 3230140927, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230140928, 3230142975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230142976, 3230143231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230143232, 3230143487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230143488, 3230144255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230144256, 3230144511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230144512, 3230145279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230145280, 3230145535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230145536, 3230145791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230145792, 3230146047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230146048, 3230146303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230146304, 3230146559, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230146560, 3230147583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230147840, 3230148351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230148352, 3230148607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230148608, 3230148863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230148864, 3230149119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230149120, 3230150655, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230150656, 3230150911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230150912, 3230151167, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230151168, 3230151423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230151424, 3230151679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230151680, 3230151935, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230151936, 3230152191, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230152192, 3230152447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230152448, 3230152959, N'BF', N'Burkina Faso') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230152960, 3230153215, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230153216, 3230153471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230153472, 3230153727, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230153728, 3230153983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230153984, 3230154239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230154240, 3230156543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230156544, 3230164991, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230164992, 3230167295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230167552, 3230168063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230168576, 3230174463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230174464, 3230175231, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230175232, 3230177791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230177792, 3230178303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230178304, 3230178559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230203904, 3230210047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230210048, 3230210303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230210304, 3230211839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230211840, 3230212095, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230212096, 3230214911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230214912, 3230215167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230215168, 3230219775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230219776, 3230220031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230220032, 3230220287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230220288, 3230222847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230222848, 3230223103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230223104, 3230223359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230223360, 3230223615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230223616, 3230225919, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230225920, 3230226175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230226176, 3230226431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230226432, 3230226687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230226688, 3230226943, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230226944, 3230228223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230228224, 3230228479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230228480, 3230228735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230228736, 3230228991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230228992, 3230229503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230229504, 3230229759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230229760, 3230230015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230230016, 3230236159, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230236160, 3230236415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230236416, 3230236671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230236672, 3230236927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230236928, 3230240767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230240768, 3230241023, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230241024, 3230241791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230241792, 3230242303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230242304, 3230243839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230243840, 3230244095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230244096, 3230244351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230244352, 3230244607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230244608, 3230245119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230245120, 3230246143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230246144, 3230246911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230246912, 3230247167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230247168, 3230247679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230247680, 3230247935, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230247936, 3230248191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230248192, 3230251007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230251008, 3230251263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230251264, 3230251519, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230251520, 3230252031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230252032, 3230254847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230254848, 3230255359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230255360, 3230255615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230255616, 3230256127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230256128, 3230256383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230256384, 3230257919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230257920, 3230259199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230259200, 3230263807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230263808, 3230264063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230264064, 3230264319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230264320, 3230266111, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230266112, 3230267135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230267136, 3230267903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230267904, 3230269439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230269440, 3230273535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230275584, 3230291455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230291456, 3230291711, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230291712, 3230295039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230295040, 3230295295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230295296, 3230296319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230296320, 3230297343, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230297344, 3230299647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230299648, 3230301695, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230301696, 3230302207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230302208, 3230302975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230302976, 3230309119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230309120, 3230309375, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230309376, 3230310143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230310144, 3230316287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230316288, 3230316543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230316544, 3230316799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230316800, 3230317311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230317312, 3230317567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230317568, 3230317823, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230317824, 3230318591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230318592, 3230318847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230318848, 3230321663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230321664, 3230321919, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230321920, 3230322175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230322432, 3230327807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230327808, 3230328063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230328064, 3230328319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230328320, 3230329087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230329088, 3230332927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230332928, 3230333183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230333184, 3230333695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230333696, 3230333951, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230333952, 3230334975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230334976, 3230354943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230354944, 3230355199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230355200, 3230368511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230368512, 3230370303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230370304, 3230370559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230370816, 3230400511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230400512, 3230591231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230591232, 3230591487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230591488, 3230625791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230625792, 3230626047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230626048, 3230654879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230654880, 3230654895, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230654896, 3230793727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230793728, 3230823679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230823680, 3230823935, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230823936, 3230824191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230824192, 3230824447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230824448, 3230825215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230825216, 3230825471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230825472, 3230826239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230826240, 3230827007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230827520, 3230827775, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230827776, 3230828031, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230828032, 3230828543, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230828544, 3230830079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230830080, 3230832127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230832128, 3230832383, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230832384, 3230832639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230832640, 3230832895, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230832896, 3230833663, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230833664, 3230833919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230833920, 3230834175, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230834176, 3230835455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230835456, 3230837503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230837504, 3230837759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230837760, 3230838015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230838016, 3230840319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230840320, 3230840575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230840576, 3230840831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230840832, 3230841087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230841088, 3230841343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230841344, 3230841599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230841600, 3230841855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230841856, 3230842111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230842112, 3230842367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230842624, 3230843135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230843136, 3230843391, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230843392, 3230844927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230844928, 3230845183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230845184, 3230845951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230845952, 3230846207, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230846208, 3230849535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230849536, 3230850047, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230850048, 3230851839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230851840, 3230852095, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230852096, 3230852351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230852352, 3230852607, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230853120, 3230853375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230853376, 3230853887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230853888, 3230854399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230854400, 3230854655, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230854656, 3230855167, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230855168, 3230855679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230855680, 3230855935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230855936, 3230857983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230857984, 3230858751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230858752, 3230859007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230859264, 3230865151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230865152, 3230865407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230865408, 3230867967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230867968, 3230868223, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230868224, 3230868479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230868480, 3230868735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230868992, 3230870015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230870016, 3230870271, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230870272, 3230878719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230878720, 3230879487, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230879488, 3230879743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230879744, 3230888447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230888448, 3230888703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230888704, 3230895359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230895360, 3230895615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230895616, 3230897151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230897152, 3230897407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230897408, 3230897663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230897664, 3230897919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230897920, 3230898687, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230898688, 3230898943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230898944, 3230899199, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230899200, 3230913023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230913024, 3230913279, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230913280, 3230913535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230913536, 3230913791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230913792, 3230914047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230914048, 3230914303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230914304, 3230914815, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230914816, 3230915071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230915072, 3230915327, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230915328, 3230915583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230915584, 3230917631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230917632, 3230917887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230917888, 3230918399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230918656, 3230919423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230919424, 3230919679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230919680, 3230922239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230922240, 3230922495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230922496, 3230922751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230922752, 3230923519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230923520, 3230923775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230923776, 3230924031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230924032, 3230924287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230924288, 3230924543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230924800, 3230933247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230933248, 3230948607, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230948608, 3230951167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230951168, 3230951423, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230951424, 3230953471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230953472, 3230967295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230967296, 3230967551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230967552, 3230967807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230967808, 3230969599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230969600, 3230969855, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230969856, 3230970111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230970112, 3230972671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230972672, 3230973951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230973952, 3230974207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230974208, 3230974463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230974464, 3230974719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230974720, 3230975487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230975488, 3230975999, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230976000, 3230976255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230976256, 3230980095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230980096, 3230980351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230980352, 3230980607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230980608, 3230980863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230981120, 3230981375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230981376, 3230981631, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230981632, 3230981887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230981888, 3230983935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230983936, 3230990335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230990592, 3230991103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230991104, 3230991359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230991360, 3230991615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230991616, 3230991871, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230991872, 3230994175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230994176, 3230994431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230994432, 3230994687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230994944, 3230995199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230995200, 3230995455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230995456, 3230995711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230995712, 3230996223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230996480, 3230997247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230997248, 3230997503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230997504, 3230997759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230997760, 3230999039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230999040, 3230999295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230999296, 3230999551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230999552, 3230999807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3230999808, 3231000319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231000576, 3231000831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231000832, 3231001087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231001088, 3231003903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231003904, 3231004159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231004160, 3231004415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231004416, 3231004927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231004928, 3231005183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231005440, 3231005695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231005696, 3231005951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231005952, 3231007743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231009280, 3231009791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231010048, 3231010303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231010304, 3231010815, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231010816, 3231011071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231011072, 3231012863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231013120, 3231013375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231013376, 3231013631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231013888, 3231014911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231015168, 3231015423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231015424, 3231015679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231015680, 3231015935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231015936, 3231016191, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231016192, 3231016447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231016448, 3231016703, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231016704, 3231018495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231018496, 3231018751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231018752, 3231019007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231019008, 3231020287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231020288, 3231020543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231020544, 3231020799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231020800, 3231021567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231021568, 3231021823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231021824, 3231022079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231022080, 3231022591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231022592, 3231022847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231022848, 3231028479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231028480, 3231028735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231028736, 3231042047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231042048, 3231042303, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231042304, 3231043839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231043840, 3231044095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231044352, 3231048447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231048448, 3231048703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231048704, 3231049727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231049728, 3231049983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231049984, 3231050239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231050496, 3231051263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231051264, 3231051519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231051520, 3231051775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231051776, 3231070463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231070464, 3231072559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072560, 3231072575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072576, 3231072639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072640, 3231072655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072656, 3231072687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072688, 3231072703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072704, 3231072767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072768, 3231072783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072784, 3231072799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072800, 3231072863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072864, 3231072927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072928, 3231072943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072944, 3231072991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231072992, 3231073087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073088, 3231073103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073104, 3231073135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073136, 3231073151, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073152, 3231073183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073184, 3231073215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073216, 3231073247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073248, 3231073279, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073280, 3231073295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073296, 3231073311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073312, 3231073327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073328, 3231073343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073344, 3231073391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073392, 3231073407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073408, 3231073423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231073424, 3231074559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231074560, 3231074815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231074816, 3231076607, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076608, 3231076687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076688, 3231076703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076704, 3231076735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076736, 3231076783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076784, 3231076831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076832, 3231076911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076912, 3231076943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076944, 3231076959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076960, 3231076991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231076992, 3231077007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231077008, 3231077023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231077024, 3231077119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231077120, 3231077375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231077376, 3231078143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231078144, 3231078655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231078656, 3231078911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231078912, 3231079423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231079424, 3231079679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231079680, 3231079935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231079936, 3231080191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231080192, 3231080447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231080448, 3231080703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231080704, 3231082495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231082496, 3231082751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231082752, 3231083007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231083008, 3231083263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231083264, 3231083519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231083520, 3231087615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231087616, 3231087871, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231087872, 3231088127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231088128, 3231088383, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231088384, 3231088895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231088896, 3231091711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231091712, 3231091967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231091968, 3231092223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231092480, 3231092735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231092736, 3231092991, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231092992, 3231093247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231093248, 3231093503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231093504, 3231094783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231096832, 3231101183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231101184, 3231103231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231103488, 3231103999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231104000, 3231104255, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231104256, 3231104767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231104768, 3231105023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231105024, 3231105535, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231105536, 3231106303, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231106304, 3231106559, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231106560, 3231106815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231106816, 3231107071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231107072, 3231107327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231107328, 3231107583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231107584, 3231107839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231107840, 3231108095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231108096, 3231108351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231108352, 3231108607, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231108608, 3231108863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231109120, 3231109375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231109376, 3231109631, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231109632, 3231109887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231110144, 3231110399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231111168, 3231111679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231111680, 3231112447, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231112448, 3231112959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231112960, 3231113215, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231113216, 3231113983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231113984, 3231115775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231115776, 3231116799, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231116800, 3231117055, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231117056, 3231118335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231118592, 3231118847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231118848, 3231119103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231119104, 3231119359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231119360, 3231119615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231119616, 3231120383, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231120384, 3231120639, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231120640, 3231120895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231120896, 3231121151, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231121408, 3231149311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231149312, 3231149567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231149568, 3231154431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231154432, 3231154687, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231186944, 3231188479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231188480, 3231188735, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231188736, 3231190527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231190528, 3231190783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231190784, 3231191295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231191296, 3231191551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231191552, 3231193599, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231193600, 3231194111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231194112, 3231197695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231197696, 3231197951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231197952, 3231198207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231198208, 3231198463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231198464, 3231198975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231198976, 3231199231, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231199232, 3231199487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231199488, 3231200255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231200256, 3231200767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231200768, 3231201023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231201024, 3231202559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231202560, 3231203071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231203072, 3231203327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231203328, 3231204351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231204352, 3231204607, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231204608, 3231204863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231204864, 3231207935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231207936, 3231208191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231208192, 3231208959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231208960, 3231209471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231209472, 3231211775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231211776, 3231212031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231212032, 3231212287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231212288, 3231214335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231214336, 3231214591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231214592, 3231215103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231215360, 3231215615, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231215616, 3231215871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231215872, 3231217151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231217408, 3231217663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231217664, 3231218175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231218176, 3231218431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231218432, 3231218687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231218688, 3231218943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231218944, 3231223039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231223040, 3231223295, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231223296, 3231223807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231223808, 3231224063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231224064, 3231224319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231224320, 3231224575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231224576, 3231225599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231225600, 3231225855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231226368, 3231226879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231226880, 3231227135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231227648, 3231228927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231228928, 3231229183, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231229184, 3231229439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231229440, 3231229695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231229696, 3231229951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231229952, 3231231487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231231488, 3231231743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231231744, 3231234047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231234048, 3231235071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231235072, 3231236095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231236608, 3231236863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231236864, 3231237119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231237120, 3231237375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231237376, 3231237631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231237632, 3231241215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231241216, 3231241471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231241984, 3231248639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231248640, 3231248895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231248896, 3231249407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231249408, 3231249663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231249664, 3231250431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231250432, 3231250687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231250688, 3231251711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231251712, 3231251967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231251968, 3231252223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231252736, 3231252991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231252992, 3231253503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231253504, 3231254783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231254784, 3231255039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231255040, 3231255551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231255552, 3231255807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231255808, 3231256063, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231256064, 3231257087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231257088, 3231257599, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231257600, 3231275007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231275008, 3231275263, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231275264, 3231275519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231275520, 3231276287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231276288, 3231276543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231276544, 3231276799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231276800, 3231281919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231281920, 3231282175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231282176, 3231282431, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231282432, 3231282943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231282944, 3231283199, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231283200, 3231283455, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231283456, 3231284991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231284992, 3231285247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231285248, 3231291647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231291648, 3231291903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231291904, 3231292159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231292160, 3231292415, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231292416, 3231292927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231292928, 3231293183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231293184, 3231294975, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231294976, 3231295231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231295232, 3231295487, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231295488, 3231295743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231295744, 3231296255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231296256, 3231296511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231296512, 3231296767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231296768, 3231299327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231299328, 3231300607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231300608, 3231300863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231300864, 3231301119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231301120, 3231302143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231302144, 3231302399, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231302400, 3231302655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231302656, 3231303167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231303168, 3231307007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231307008, 3231307263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231307264, 3231308031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231308032, 3231308287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231308288, 3231308799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231308800, 3231309055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231309056, 3231311103, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231311104, 3231316735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231316736, 3231316991, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231316992, 3231322111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231322112, 3231326207, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231326208, 3231351807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231383552, 3231385599, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231385600, 3231401983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231416320, 3231424511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231449088, 3231482879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231482880, 3231483135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231483136, 3231484927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231484928, 3231490047, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231490048, 3231490559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231490560, 3231490815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231490816, 3231491071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231491328, 3231491583, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231491584, 3231491839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231491840, 3231492095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231492096, 3231493631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231493632, 3231493887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231493888, 3231499263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231499520, 3231500031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231500032, 3231500287, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231500288, 3231502079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231502080, 3231502591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231502592, 3231502847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231502848, 3231503103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231503104, 3231503615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231503616, 3231503871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231503872, 3231504383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231504640, 3231504895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231504896, 3231505407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231505408, 3231505663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231505664, 3231506687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231506688, 3231506943, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231506944, 3231507199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231507200, 3231507455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231507456, 3231508479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231508992, 3231509247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231510272, 3231510527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231510528, 3231511551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231512576, 3231512831, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231512832, 3231513087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231513088, 3231513343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231513600, 3231514623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231514624, 3231515647, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231515648, 3231516159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231516672, 3231519231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231522560, 3231524863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231531008, 3231535103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231547392, 3231547647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231547648, 3231547903, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231547904, 3231549951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231549952, 3231550207, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231550208, 3231550719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231550720, 3231550975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231550976, 3231551231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231551232, 3231551999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231552000, 3231553023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231553024, 3231553791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231553792, 3231554047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231554048, 3231555327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231555328, 3231556095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231556096, 3231556351, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231556352, 3231556607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231556608, 3231556863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231556864, 3231557119, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231557120, 3231557887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231557888, 3231558399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231558400, 3231558655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231558656, 3231558911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231558912, 3231559167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231559168, 3231559423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231559424, 3231559679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231559680, 3231559935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231559936, 3231561983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231561984, 3231562239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231562240, 3231562495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231562496, 3231562751, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231562752, 3231563007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231563008, 3231563263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231563264, 3231563519, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231563520, 3231563775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231580160, 3231649791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231649792, 3231653887, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231653888, 3231655935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231663616, 3231663871, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231663872, 3231664127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231664128, 3231664383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231664384, 3231664639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231664640, 3231665407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231665408, 3231665663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231665664, 3231667199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231667200, 3231667711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231667712, 3231668735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231668736, 3231668991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231669248, 3231669503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231669760, 3231670015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231670016, 3231670271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231670272, 3231671039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231671040, 3231672319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231672320, 3231672575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231672576, 3231672831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231672832, 3231673343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231673344, 3231673599, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231673600, 3231673855, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231673856, 3231674111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231674112, 3231674367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231674368, 3231675391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231675392, 3231675903, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231675904, 3231676159, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231676416, 3231676671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231676672, 3231676927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231676928, 3231677183, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231678464, 3231682559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231711232, 3231713023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231713024, 3231713279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231713280, 3231713791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231713792, 3231714047, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231714048, 3231715071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231715072, 3231715327, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231715328, 3231715583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231715584, 3231716095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231716096, 3231716351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231716352, 3231716607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231716608, 3231716863, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231716864, 3231717119, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231717120, 3231717375, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231717632, 3231718143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231718144, 3231718399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231718400, 3231718655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231718656, 3231718911, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231718912, 3231719679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231719680, 3231719935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231720192, 3231720703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231720704, 3231720959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231720960, 3231722751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231722752, 3231723007, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231723008, 3231723519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231723776, 3231724031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231724032, 3231724287, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231724288, 3231727871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231727872, 3231728127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231728384, 3231728639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231728640, 3231729407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231729408, 3231729663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231729664, 3231735551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231735552, 3231736063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231736064, 3231739135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231739136, 3231739391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231739392, 3231739647, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231739648, 3231739903, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231739904, 3231742719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231742720, 3231742975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231742976, 3231743487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231743488, 3231743743, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231743744, 3231743999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231744000, 3231744255, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231744256, 3231747583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231747584, 3231747839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231747840, 3231748095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231748096, 3231750143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231750144, 3231750399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231750400, 3231750911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231750912, 3231751167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231751168, 3231751423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231751424, 3231752191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231752192, 3231752447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231752448, 3231752703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231752704, 3231753983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231753984, 3231754239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231754240, 3231754495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231754496, 3231755263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231755264, 3231755519, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231755520, 3231755775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231755776, 3231756543, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231756544, 3231757311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231757312, 3231759359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231759360, 3231759615, N'BR', N'Brazil') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231759616, 3231760895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231760896, 3231761407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231761408, 3231763711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231763712, 3231763967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231763968, 3231768575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231768576, 3231768831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231768832, 3231769087, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231769088, 3231769343, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231769344, 3231769855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231769856, 3231770111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231770112, 3231770367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231770368, 3231770879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231770880, 3231771135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231771136, 3231773951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231773952, 3231775743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231775744, 3231775999, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231776000, 3231776511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231776768, 3231793151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231793152, 3231793663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231809536, 3231810047, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231842304, 3231846399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231846400, 3231846655, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231846656, 3231907839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231907840, 3231916031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231916032, 3231948799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3231973376, 3232038911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232038912, 3232092671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232092672, 3232093183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232093184, 3232093439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232093440, 3232094207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232094208, 3232094719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232094720, 3232095231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232095232, 3232096255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232096256, 3232104447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232104448, 3232107519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232107520, 3232108543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232108544, 3232129023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232129024, 3232131071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232131072, 3232133119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232133120, 3232133631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232133632, 3232134143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232134144, 3232137215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232137216, 3232141311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232141312, 3232141823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232141824, 3232156159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232156160, 3232156671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232156672, 3232159743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232159744, 3232160767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232160768, 3232163839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232163840, 3232165887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232165888, 3232169727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232169728, 3232169983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232169984, 3232235519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232301056, 3232309247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232309248, 3232313343, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232317440, 3232317951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232366592, 3232381439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232381440, 3232382207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232382208, 3232399615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232432384, 3232432639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232432640, 3232433663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232433920, 3232436735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232448512, 3232464895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232464896, 3232497663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232497664, 3232555775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232555776, 3232556287, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232557056, 3232560895, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232560896, 3232561663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232561664, 3232561919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232561920, 3232562431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232562432, 3232562687, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232562688, 3232562943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232563200, 3232565247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232565248, 3232567295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232567296, 3232571391, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232571392, 3232579583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232595968, 3232598015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232628736, 3232645119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232645120, 3232647167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232661504, 3232694271, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232694272, 3232702463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232702464, 3232706559, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232706560, 3232706815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232710656, 3232718847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232727040, 3232759807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3232759808, 3232825343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233285120, 3233285375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233480704, 3233484799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233484800, 3233488895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233488896, 3233505279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233513472, 3233548287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233548800, 3233549055, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233549056, 3233549311, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233549312, 3233557247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233557248, 3233557503, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233557504, 3233561855, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233561856, 3233562367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233562368, 3233562879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233562880, 3233563135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233563136, 3233563903, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233563904, 3233564159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233564160, 3233564415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233564416, 3233564671, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233564672, 3233564927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233564928, 3233570047, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233570048, 3233570559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233570816, 3233571071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233571072, 3233572095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233572096, 3233572351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233572352, 3233573119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233573120, 3233573375, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233573376, 3233573631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233573632, 3233573887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233573888, 3233575679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233575680, 3233575935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233575936, 3233576191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233576192, 3233576447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233576448, 3233577215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233577216, 3233577471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233577472, 3233577727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233577728, 3233578239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233578240, 3233578495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233578496, 3233578751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233578752, 3233579007, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233579008, 3233579263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233579264, 3233579519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233579520, 3233580031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233580032, 3233580287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233580288, 3233581055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233581056, 3233581311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233581312, 3233583359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233583360, 3233583615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233583616, 3233584895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233584896, 3233585151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233585152, 3233586431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233586432, 3233586943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233586944, 3233588223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233588224, 3233589247, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233589248, 3233589759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233589760, 3233590015, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233590016, 3233590271, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233590272, 3233590527, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233590528, 3233590783, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233590784, 3233591039, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233591040, 3233591295, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233591296, 3233593599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233593600, 3233593855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233593856, 3233594111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233594112, 3233594367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233594368, 3233594623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233594624, 3233594879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233594880, 3233595903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233595904, 3233596927, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233596928, 3233605887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233605888, 3233607167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233607168, 3233607935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233607936, 3233608191, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233608192, 3233609727, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233609728, 3233609983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233609984, 3233610495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233610752, 3233611775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233612032, 3233612287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233612544, 3233613823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233613824, 3233614847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233615104, 3233615359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233615360, 3233615615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233615616, 3233617151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233617408, 3233617663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233617664, 3233617919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233617920, 3233618175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233619456, 3233620479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233620480, 3233620735, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233620736, 3233620991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233622272, 3233622527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233622528, 3233624831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233624832, 3233625087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233625088, 3233625343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233625344, 3233625599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233625600, 3233625855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233625856, 3233626111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233626112, 3233628671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233628672, 3233628927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233628928, 3233629439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233629440, 3233629695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233629696, 3233629951, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233629952, 3233630463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233630464, 3233630719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233630720, 3233630975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233630976, 3233631231, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233631232, 3233631487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233631488, 3233631743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233632000, 3233635839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233635840, 3233636095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233636096, 3233642239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233642240, 3233642495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233642496, 3233646591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233646592, 3233646847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233646848, 3233647359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233647360, 3233647871, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233647872, 3233649663, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233649664, 3233649919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233649920, 3233650431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233650432, 3233650687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233651200, 3233651455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233651456, 3233651967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233651968, 3233652223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233652224, 3233652479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233652480, 3233652735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233652736, 3233652991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233652992, 3233654271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233654272, 3233655551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233655552, 3233662975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233663488, 3233663999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233664000, 3233665023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233665024, 3233666047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233666048, 3233668863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233668864, 3233669119, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233669120, 3233670399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233670400, 3233671679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233671680, 3233676031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233676032, 3233676287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233676288, 3233684991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233684992, 3233685503, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233685504, 3233688063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233688576, 3233688831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233688832, 3233692159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233692160, 3233692671, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233692672, 3233692927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233692928, 3233693183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233693184, 3233693695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233693696, 3233693951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233693952, 3233694207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233694208, 3233694463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233694464, 3233694719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233694720, 3233694975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233694976, 3233695231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233695232, 3233696511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233696512, 3233696767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233696768, 3233697791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233701632, 3233701887, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233701888, 3233704959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233704960, 3233705215, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233705216, 3233710335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233710336, 3233711359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233711360, 3233721599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233721600, 3233721855, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233721856, 3233722111, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233722112, 3233723391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233723392, 3233723903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233723904, 3233724415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233724416, 3233725951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233725952, 3233726975, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233726976, 3233728767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233728768, 3233729279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233729280, 3233729535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233729536, 3233730047, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233730560, 3233732607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233732608, 3233733631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233734656, 3233736959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233736960, 3233737983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233737984, 3233738751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233738752, 3233739007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233739008, 3233739263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233739264, 3233739519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233739520, 3233740543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233740544, 3233741311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233741312, 3233743359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233743360, 3233743615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233743616, 3233744383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233744384, 3233744639, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233744640, 3233745663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233745664, 3233745919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233745920, 3233746943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233746944, 3233747199, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233747200, 3233748735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233748736, 3233748991, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233748992, 3233749503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233749504, 3233750015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233750016, 3233752831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233752832, 3233753087, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233753088, 3233763071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233763072, 3233763327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233763328, 3233765887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233765888, 3233766143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233766144, 3233768447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233768448, 3233768703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233768704, 3233768959, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233768960, 3233778175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233778176, 3233778431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233778432, 3233779455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233779456, 3233779711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233779712, 3233781503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233781504, 3233781759, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233781760, 3233783807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233783808, 3233784063, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233784064, 3233784319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233784320, 3233786111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233786112, 3233786367, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233786368, 3233790207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233790208, 3233790463, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233790464, 3233790719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233790720, 3233790975, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233790976, 3233791231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233791232, 3233791487, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233791488, 3233793023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233793024, 3233793279, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233793280, 3233794047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233794048, 3233794303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233794304, 3233798399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233798400, 3233798655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233798656, 3233800447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233800448, 3233800703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233800704, 3233800959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233800960, 3233801215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233801216, 3233801983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233801984, 3233802239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233802240, 3233802495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233802496, 3233802751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233802752, 3233803007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233803008, 3233803263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233803264, 3233803519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233803520, 3233803775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233803776, 3233808383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233808384, 3233873919, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233873920, 3233939455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233939456, 3233980671, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233980672, 3233980927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233980928, 3233991167, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233991168, 3233991423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3233991424, 3234004991, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234005248, 3234005503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234005504, 3234005759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234006528, 3234007039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234007040, 3234007295, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234007296, 3234007551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234007552, 3234007807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234007808, 3234008063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234008064, 3234008831, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234008832, 3234013183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234013440, 3234013695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234013696, 3234013951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234013952, 3234014207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234014464, 3234014975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234014976, 3234015487, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234015488, 3234015743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234015744, 3234015999, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234016000, 3234016255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234016256, 3234019327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234019328, 3234019839, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234019840, 3234023423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234023424, 3234023679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234023680, 3234024703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234025472, 3234030079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234030080, 3234030335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234030336, 3234031103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234031104, 3234031359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234031360, 3234031871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234031872, 3234032127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234032128, 3234032383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234032384, 3234032895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234033152, 3234033407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234033408, 3234033663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234033664, 3234033919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234033920, 3234034687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234034688, 3234035455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234035456, 3234039295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234039296, 3234043135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234043136, 3234043903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234043904, 3234044159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234044160, 3234048511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234048512, 3234048767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234048768, 3234051839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234051840, 3234052095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234052096, 3234052351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234052352, 3234052607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234052608, 3234052863, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234052864, 3234054911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234054912, 3234055167, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234055168, 3234055423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234055424, 3234055679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234055680, 3234061055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234061056, 3234061311, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234061312, 3234064639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234064640, 3234064895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234064896, 3234065407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234065408, 3234065663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234065664, 3234065919, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234065920, 3234070527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234070528, 3234136063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234136064, 3234172927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234172928, 3234173951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234173952, 3234175999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234176256, 3234176511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234176512, 3234187007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234187008, 3234187519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234187520, 3234192383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234192384, 3234193663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234193664, 3234201599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234202624, 3234203647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234203648, 3234205695, N'BR', N'Brazil') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234205696, 3234222079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234234368, 3234250751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234267136, 3234271231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234271232, 3234275327, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234275328, 3234279423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234283520, 3234316287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234332672, 3234349055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234349056, 3234353151, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234365440, 3234367487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234398208, 3234538751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234539008, 3234539519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234539520, 3234549759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234549760, 3234550015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234550016, 3234553855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234553856, 3234554367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234554624, 3234554879, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234555904, 3234556415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234556416, 3234556927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234556928, 3234557439, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234557440, 3234564607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234564608, 3234566911, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234566912, 3234568703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234568704, 3234568959, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234568960, 3234569215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234569216, 3234569727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234569728, 3234569983, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234569984, 3234574335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234574336, 3234574591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234574592, 3234574847, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234574848, 3234576127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234576128, 3234576895, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234576896, 3234578687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234578688, 3234578943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234578944, 3234579711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234579712, 3234579967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234579968, 3234581247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234581248, 3234581503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234581504, 3234582527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234582528, 3234583039, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234583040, 3234583807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234583808, 3234584063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234584064, 3234584575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234584576, 3234584831, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234584832, 3234585343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234585600, 3234587391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234587392, 3234587647, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234587648, 3234588671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234588672, 3234588927, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234588928, 3234589439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234589440, 3234589695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234589696, 3234592511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234592512, 3234592767, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234592768, 3234594047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234594048, 3234594303, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234594816, 3234725887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234726144, 3234726399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234726400, 3234726911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234727936, 3234733055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234733056, 3234733311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234733312, 3234744319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234744832, 3234745599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234745600, 3234746879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234746880, 3234747903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234747904, 3234748159, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234748160, 3234749439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234749440, 3234750463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234750464, 3234751999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234752000, 3234752255, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234752256, 3234753535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234753536, 3234753791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234753792, 3234754047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234754560, 3234755839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234755840, 3234756095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234756096, 3234762751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234762752, 3234764799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234764800, 3234766335, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234766336, 3234772223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234772224, 3234772479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234772480, 3234772735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234772992, 3234781439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234781440, 3234781951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234781952, 3234782719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234782720, 3234783999, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234784000, 3234794495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234794752, 3234795007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234795008, 3234795263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234795264, 3234799359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234799360, 3234799615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234799616, 3234799871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234799872, 3234800127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234800640, 3234800895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234800896, 3234801663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234801664, 3234802431, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234802432, 3234803711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234803712, 3234803967, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234804224, 3234807807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234807808, 3234808063, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234808064, 3234809087, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234809088, 3234810879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234810880, 3234811135, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234811136, 3234814719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234814720, 3234814975, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234814976, 3234815999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234816000, 3234816767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234816768, 3234820351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234820352, 3234820607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234820608, 3234821887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234821888, 3234822655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234822656, 3234826751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234826752, 3234827007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234827008, 3234827519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234827520, 3234827775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234827776, 3234828031, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234828032, 3234828287, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234828288, 3234828799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234828800, 3234829055, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234829056, 3234830079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234830080, 3234832127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234832128, 3234832639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234832640, 3234832895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234832896, 3234833663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234833664, 3234833919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234833920, 3234838271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234838272, 3234838527, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234838528, 3234839295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234839296, 3234839551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234839552, 3234841087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234841088, 3234841599, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234841600, 3234841855, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234841856, 3234842367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234842368, 3234842623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234842624, 3234844415, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234844416, 3234853375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234853376, 3234853631, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234853632, 3234853887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234853888, 3234854143, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234854144, 3234854911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234854912, 3234855167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234855168, 3234855935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234856192, 3234856447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234856448, 3234856703, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234856960, 3234861055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234861056, 3234897919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234922496, 3234988031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234988032, 3234992127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3234996224, 3235000319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235004416, 3235020799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235053568, 3235086335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235119104, 3235184639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235184640, 3235184895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235184896, 3235389439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235389440, 3235389951, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235389952, 3235417215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235417216, 3235417223, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235417224, 3235512319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235512320, 3235577855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235577856, 3235643391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235643392, 3235774463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235774464, 3235778559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235778560, 3235807231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235840000, 3235856383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235856384, 3235872767, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235872768, 3235906303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235906304, 3235906559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235906560, 3235908863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235908864, 3235909119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235909120, 3235912447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235912448, 3235912703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235912704, 3235914495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235914496, 3235914751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235914752, 3235916543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235916544, 3235916799, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235916800, 3235917567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235917568, 3235917823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235917824, 3235919359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235919360, 3235919615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235919616, 3235921151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235921152, 3235921407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235921408, 3235925503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235925504, 3235925759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235925760, 3235926271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235926272, 3235926527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235926528, 3235927295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235927296, 3235927807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235927808, 3235928319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235928320, 3235929343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235929344, 3235929599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235929600, 3235929855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235929856, 3235932159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235932160, 3235932927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235932928, 3235936511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235936512, 3235936767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235936768, 3235937023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235937024, 3235937535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235937536, 3235937791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235937792, 3235938047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235938048, 3235941631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235941632, 3235941887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235941888, 3235945983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235945984, 3235946239, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235946240, 3235946751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235946752, 3235947263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235947264, 3235949311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235949312, 3235950335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235950336, 3235950591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235950592, 3235950847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235950848, 3235951871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235951872, 3235952127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235952128, 3235957247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235957248, 3235957503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235957504, 3235957759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235957760, 3235958015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235958016, 3235959551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235959552, 3235959807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235959808, 3235960319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235960320, 3235960575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235960576, 3235961599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235961600, 3235961855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235961856, 3235962111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235962112, 3235962367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235962368, 3235963647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235963648, 3235963903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235963904, 3235966975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235966976, 3235967231, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235967232, 3235967743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235967744, 3235967999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235968000, 3235968511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235968512, 3235968767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235968768, 3235970559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235970560, 3235970815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3235970816, 3236044799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236044800, 3236052991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236052992, 3236069375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236102144, 3236106239, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236106240, 3236134911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236167680, 3236175871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236175872, 3236192255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236200448, 3236233215, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236233216, 3236249599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236298752, 3236302847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236302848, 3236306943, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236364288, 3236368127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236368128, 3236368383, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236368384, 3236372991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236372992, 3236373247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236373504, 3236379391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236379392, 3236379647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236379648, 3236380927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236381184, 3236381439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236381440, 3236381695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236381696, 3236383999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236384000, 3236384255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236384256, 3236385279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236385280, 3236385535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236385536, 3236385791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236386304, 3236387071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236387072, 3236387327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236387328, 3236387839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236387840, 3236389375, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236389376, 3236392447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236392448, 3236392703, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236392704, 3236393471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236393472, 3236395519, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236395520, 3236396799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236396800, 3236397055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236397056, 3236398591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236398848, 3236399615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236399616, 3236400127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236400128, 3236400383, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236400384, 3236401151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236401152, 3236401407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236401408, 3236406783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236406784, 3236407551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236407552, 3236408063, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236408064, 3236408319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236408320, 3236409087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236409088, 3236409599, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236409600, 3236411135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236411136, 3236411391, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236411392, 3236413695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236413696, 3236413951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236413952, 3236416255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236416256, 3236416511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236416512, 3236418303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236418304, 3236418815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236418816, 3236419583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236419584, 3236419839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236419840, 3236420095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236420096, 3236420351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236420352, 3236424959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236424960, 3236425215, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236425216, 3236427519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236427520, 3236427775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236427776, 3236428031, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236428800, 3236429311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236429312, 3236429567, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236429824, 3236438015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236438016, 3236446207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236446208, 3236462591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236462592, 3236470783, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236495360, 3236566783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236566784, 3236567039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236567040, 3236575743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236575744, 3236575999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236576000, 3236585983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236585984, 3236586239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236586240, 3236604671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236604672, 3236604927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236604928, 3236617471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236617728, 3236617983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236617984, 3236619775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236619776, 3236620031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236620032, 3236620287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236620288, 3236623615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236623616, 3236623871, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236623872, 3236625919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236625920, 3236626175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236626432, 3236642815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236691968, 3236708351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236757504, 3236765695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236765696, 3236774911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236774912, 3236775423, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236775424, 3236775679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236775680, 3236776191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236776192, 3236776447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236776448, 3236776959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236776960, 3236777215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236777216, 3236777983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236777984, 3236778239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236778240, 3236778751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236778752, 3236780287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236780288, 3236780543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236780544, 3236780799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236780800, 3236781599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236781600, 3236781615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236781616, 3236781727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236781728, 3236781759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236781760, 3236781823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236781824, 3236782335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236782336, 3236782719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236782720, 3236782751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236782752, 3236782847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236782848, 3236782911, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236782912, 3236784383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236784384, 3236784895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236784896, 3236785663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236785664, 3236785919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236785920, 3236786175, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236786176, 3236786431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236786432, 3236786687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236786688, 3236787199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236787200, 3236787967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236787968, 3236788223, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236788224, 3236788479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236788480, 3236789503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236789504, 3236790271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236823040, 3236827135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236827136, 3236829183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236831232, 3236855807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236888576, 3236958207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236958208, 3236962303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236962304, 3236966399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236970496, 3236978687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3236986880, 3236995071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237019648, 3237036031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237085184, 3237154815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237154816, 3237155839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237155840, 3237156863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237158912, 3237160959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237183488, 3237216255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237216256, 3237281791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237281792, 3237284607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237284608, 3237284863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237284864, 3237285119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237285120, 3237285631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237285632, 3237287935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237287936, 3237288191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237288192, 3237290495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237290496, 3237291007, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237291008, 3237291263, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237291264, 3237294847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237294848, 3237295103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237295104, 3237296639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237296640, 3237297151, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237297152, 3237297407, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237297408, 3237300479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237300480, 3237302527, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237302528, 3237305087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237305088, 3237305343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237305344, 3237305855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237305856, 3237306111, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237306112, 3237308671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237308672, 3237310719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237310720, 3237312767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237312768, 3237313023, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237313024, 3237319679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237319680, 3237319935, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237319936, 3237320703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237320704, 3237320959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237320960, 3237321471, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237321472, 3237321727, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237321728, 3237321983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237322752, 3237325055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237325056, 3237325311, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237325312, 3237325823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237325824, 3237326079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237326080, 3237328127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237328384, 3237328639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237328640, 3237328895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237328896, 3237329151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237329152, 3237329407, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237329408, 3237330943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237330944, 3237331199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237331456, 3237331967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237331968, 3237332223, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237332224, 3237335039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237335040, 3237335295, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237335296, 3237335551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237335552, 3237337599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237337600, 3237337855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237337856, 3237338111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237338112, 3237338367, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237338368, 3237339391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237339392, 3237339647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237339648, 3237340159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237340160, 3237340415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237340416, 3237345535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237345536, 3237346303, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237346304, 3237349119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237349120, 3237349375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237349376, 3237366015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237366016, 3237366271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237366272, 3237412863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237412864, 3237416959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237416960, 3237437439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237445632, 3237478399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237478400, 3237511167, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237511168, 3237548031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237548032, 3237552127, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237552128, 3237560319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237609472, 3237613567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237615104, 3237615615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237615616, 3237616895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237617152, 3237658623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237675008, 3237681663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237681664, 3237682943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237682944, 3237684991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237684992, 3237685247, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237685248, 3237688319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237688320, 3237689343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237689344, 3237690623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237690624, 3237691903, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237691904, 3237698303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237698304, 3237698559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237698560, 3237712895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237712896, 3237713151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237713152, 3237716991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237716992, 3237717247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237717248, 3237717503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237717504, 3237717759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237717760, 3237724927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237724928, 3237725183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237725184, 3237725439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237725440, 3237725695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237726464, 3237726719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237726720, 3237726975, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237726976, 3237727231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237727232, 3237728255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237728256, 3237732863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237732864, 3237733119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237733120, 3237733631, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237733632, 3237733887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237733888, 3237734143, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237734144, 3237734399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237734400, 3237736447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3237740544, 3238002687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238002688, 3238006783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238006784, 3238007039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238007040, 3238010879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238010880, 3238017023, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238017024, 3238018303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238018304, 3238018559, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238018560, 3238019071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238019072, 3238035455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238035456, 3238060031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238060032, 3238060287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238060288, 3238060543, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238060544, 3238060799, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238060800, 3238061311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238061312, 3238061567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238061568, 3238061823, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238061824, 3238062079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238062080, 3238062591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238062592, 3238062847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238062848, 3238063103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238063104, 3238063359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238063360, 3238063615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238063616, 3238063871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238063872, 3238064127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238064128, 3238064383, N'UA', N'Ukraine') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238064384, 3238064639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238064640, 3238064895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238064896, 3238065151, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238065152, 3238065407, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238065408, 3238065663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238065664, 3238065919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238065920, 3238066175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238066176, 3238066431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238066432, 3238066687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238066688, 3238066943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238066944, 3238067199, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238067200, 3238067455, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238067456, 3238067711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238067712, 3238067967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238067968, 3238068223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238068224, 3238133759, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238133760, 3238199295, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238199296, 3238201599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238201600, 3238202367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238202368, 3238239679, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238239680, 3238239711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238239712, 3238264831, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238264832, 3238330367, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238330368, 3238337023, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238337024, 3238337535, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238337536, 3238395903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238395904, 3238461439, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238461440, 3238502399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238502400, 3238504447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238504448, 3238526975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238526976, 3238592511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238592512, 3238592767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238592768, 3238594559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238594560, 3238595583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238595584, 3238595839, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238595840, 3238596607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238596608, 3238599167, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238599168, 3238600703, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238600704, 3238604799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238604800, 3238606335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238606336, 3238606591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238606592, 3238607359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238607360, 3238607871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238607872, 3238608895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238608896, 3238611455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238611456, 3238611967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238611968, 3238621183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238621184, 3238621439, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238621440, 3238621695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238621696, 3238621951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238621952, 3238622207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238622208, 3238622463, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238622464, 3238622719, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238622720, 3238622975, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238622976, 3238623487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238623488, 3238623743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238623744, 3238623999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238624000, 3238624255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238624256, 3238625279, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238625280, 3238630399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238630400, 3238630655, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238630656, 3238632959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238632960, 3238633215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238633216, 3238657791, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238657792, 3238658047, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238658048, 3238801279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238801280, 3238801343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3238801344, 3239051263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239051264, 3239051519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239051520, 3239062271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239062272, 3239062527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239062528, 3239062783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239062784, 3239063551, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239063552, 3239075839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239075840, 3239076095, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239076096, 3239076351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239076352, 3239076607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239076608, 3239076863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239076864, 3239077119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239077120, 3239077375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239077376, 3239077631, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239077632, 3239077887, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239077888, 3239078143, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239078144, 3239078399, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239078400, 3239078655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239078656, 3239078911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239078912, 3239079167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239079168, 3239079423, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239079424, 3239079679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239079680, 3239079935, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239079936, 3239088127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239088128, 3239088639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239088640, 3239088895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239088896, 3239089151, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239089152, 3239089407, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239089408, 3239089919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239089920, 3239090175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239090176, 3239090431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239090432, 3239090687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239090688, 3239090943, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239090944, 3239091199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239091200, 3239091455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239091456, 3239091711, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239091712, 3239091967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239091968, 3239092223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239092224, 3239104511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239104512, 3239105279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239105280, 3239105535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239105536, 3239105791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239105792, 3239106047, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239106048, 3239106559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239106560, 3239106815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239106816, 3239107071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239107072, 3239107327, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239107328, 3239107583, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239107584, 3239107839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239107840, 3239108095, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239108096, 3239109887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239109888, 3239110143, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239110144, 3239110655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239110656, 3239110911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239110912, 3239111167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239111168, 3239111423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239111424, 3239111679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239111936, 3239112191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239112192, 3239112447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239112448, 3239112959, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239112960, 3239113215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239113216, 3239113471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239113472, 3239113727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239113728, 3239113983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239113984, 3239114239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239114240, 3239114495, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239114496, 3239114751, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239114752, 3239116543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239116544, 3239116799, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239116800, 3239117055, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239117312, 3239119871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239119872, 3239120127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239120128, 3239120383, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239120384, 3239120639, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239120640, 3239120895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239120896, 3239127039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239127040, 3239127295, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239127296, 3239127551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239127552, 3239127807, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239127808, 3239128063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239128064, 3239128319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239128320, 3239128575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239128576, 3239128831, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239128832, 3239129087, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239129088, 3239130111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239130112, 3239130367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239130368, 3239130623, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239130624, 3239131135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239131136, 3239133183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239133184, 3239133439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239133440, 3239133951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239133952, 3239134207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239134208, 3239134463, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239134464, 3239134719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239134720, 3239134975, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239134976, 3239135231, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239135232, 3239135487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239135488, 3239135743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239135744, 3239135999, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239136000, 3239136255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239136512, 3239136767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239136768, 3239137023, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239137024, 3239137279, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239137280, 3239138303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239138304, 3239138559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239138560, 3239138815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239138816, 3239149567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239149568, 3239160319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239160320, 3239160575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239160576, 3239160831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239160832, 3239161087, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239161088, 3239161343, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239161344, 3239161599, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239161600, 3239161855, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239161856, 3239162623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239162624, 3239162879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239162880, 3239163903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239164160, 3239164671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239164672, 3239164927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239164928, 3239165183, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239165184, 3239165951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239165952, 3239166207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239166208, 3239166463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239166464, 3239166719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239166720, 3239166975, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239166976, 3239167231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239167232, 3239167487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239167488, 3239167743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239167744, 3239168511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239168512, 3239168767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239168768, 3239169023, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239169024, 3239169535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239169536, 3239169791, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239169792, 3239170047, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239170048, 3239170303, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239170304, 3239170559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239170560, 3239170815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239170816, 3239171071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239171072, 3239171327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239171328, 3239171583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239171584, 3239171839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239171840, 3239172095, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239172096, 3239172607, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239172608, 3239172863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239172864, 3239173119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239173120, 3239173375, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239173376, 3239173631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239173632, 3239173887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239173888, 3239174143, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239174144, 3239174399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239174400, 3239174655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239174656, 3239174911, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239174912, 3239175167, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239175168, 3239175423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239175424, 3239175679, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239175680, 3239175935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239175936, 3239176191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239176192, 3239180287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239181312, 3239181567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239181568, 3239181823, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239181824, 3239264255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239264256, 3239264767, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239264768, 3239266303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239266304, 3239266815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239266816, 3239267327, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239267328, 3239267839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239267840, 3239268351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239268352, 3239268863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239268864, 3239269375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239269376, 3239270399, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239270400, 3239270911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239270912, 3239271423, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239271424, 3239271935, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239271936, 3239272447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239272448, 3239272959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239272960, 3239273471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239273472, 3239273983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239273984, 3239274495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239274496, 3239275007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239275008, 3239275519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239275520, 3239276543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239276544, 3239277055, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239277056, 3239277567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239278080, 3239278591, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239278592, 3239279103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239279104, 3239280127, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239280128, 3239280639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239280640, 3239281663, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239281664, 3239282687, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239282688, 3239283711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239283712, 3239285759, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239285760, 3239286783, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239286784, 3239287807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239287808, 3239288831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239288832, 3239289855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239289856, 3239290879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239290880, 3239291903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239291904, 3239292927, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239292928, 3239293951, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239293952, 3239294975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239294976, 3239295999, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239296000, 3239297023, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239297024, 3239298047, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239298048, 3239299071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239299072, 3239301119, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239301120, 3239302143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239302144, 3239303167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239303168, 3239304191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239304192, 3239305215, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239305216, 3239306239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239306240, 3239307263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239307264, 3239308287, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239308288, 3239309311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239309312, 3239311359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239311360, 3239312383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239312384, 3239313407, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239313408, 3239445759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239445760, 3239446015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239446016, 3239446271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239446272, 3239446527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239446528, 3239451647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239451648, 3239451903, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239451904, 3239452159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239452160, 3239452415, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239452416, 3239452671, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239452672, 3239464959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239464960, 3239465215, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239465216, 3239465471, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239465472, 3239465727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239465728, 3239465983, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239465984, 3239466239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239466240, 3239466495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239466496, 3239466751, N'FI', N'Finland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239466752, 3239467007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239467008, 3239467263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239467264, 3239467519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239467520, 3239467775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239467776, 3239468031, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239468032, 3239468287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239468288, 3239468543, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239468544, 3239468799, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239468800, 3239469055, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239469056, 3239470591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239470592, 3239470847, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239470848, 3239471103, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239471104, 3239471871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239471872, 3239472127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239472128, 3239474943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239474944, 3239475199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239475200, 3239479295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239479552, 3239479807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239479808, 3239480063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239480064, 3239480319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239480320, 3239480575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239480576, 3239480831, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239480832, 3239481087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239481088, 3239481343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239481344, 3239486719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239486720, 3239486975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239486976, 3239487487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239487488, 3239487743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239487744, 3239487999, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239488000, 3239488255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239488256, 3239488511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239488512, 3239488767, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239488768, 3239489023, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239489024, 3239489279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239489280, 3239489535, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239489536, 3239501823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239501824, 3239505919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239505920, 3239506431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239506432, 3239506687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239506688, 3239507455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239507456, 3239507967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239507968, 3239508223, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239508224, 3239508479, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239508480, 3239508735, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239508736, 3239508991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239508992, 3239509247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239509248, 3239510015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239510016, 3239510271, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239510272, 3239522303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239522304, 3239522559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239522560, 3239522815, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239522816, 3239523071, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239523072, 3239523327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239523328, 3239523583, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239523584, 3239523839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239523840, 3239524095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239524096, 3239524351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239524352, 3239524607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239524608, 3239524863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239524864, 3239525119, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239525120, 3239525375, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239525376, 3239525631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239525632, 3239525887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239525888, 3239526143, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239526144, 3239526399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239526400, 3239538943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239538944, 3239539199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239539200, 3239539455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239539456, 3239539711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239539712, 3239539967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239539968, 3239540223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239540224, 3239540479, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239540480, 3239540735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239540736, 3239540991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239540992, 3239541247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239541248, 3239541503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239541504, 3239541759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239541760, 3239542015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239542016, 3239542271, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239542272, 3239542527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239542528, 3239542783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239542784, 3239544831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239544832, 3239546879, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239546880, 3239549951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239549952, 3239550207, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239550208, 3239550463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239550464, 3239550719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239550720, 3239550975, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239550976, 3239554047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239554048, 3239554303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239554304, 3239554559, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239554560, 3239554815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239554816, 3239555071, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239555072, 3239556095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239556096, 3239556351, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239556352, 3239556607, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239556608, 3239556863, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239556864, 3239557119, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239557120, 3239567359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239567360, 3239567615, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239567616, 3239567871, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239567872, 3239568127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239568128, 3239568383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239568384, 3239568639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239568640, 3239568895, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239568896, 3239575295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239575296, 3239575551, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239575552, 3239575807, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239575808, 3239578879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239579136, 3239579391, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239579392, 3239581695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239581696, 3239581951, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239581952, 3239582207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239582208, 3239582463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239582464, 3239582719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239582720, 3239582975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239582976, 3239583231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239583232, 3239583487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239583488, 3239583743, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239583744, 3239591935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239591936, 3239593983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239593984, 3239624703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239624704, 3239625727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239625728, 3239628799, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239628800, 3239629823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239629824, 3239630847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239630848, 3239631871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239631872, 3239632895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239632896, 3239633919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239633920, 3239634943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239634944, 3239635967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239635968, 3239636991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239636992, 3239638015, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239638016, 3239639039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239639040, 3239640063, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239640064, 3239641087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239641088, 3239643135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239643136, 3239645183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239645184, 3239665663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239665664, 3239666175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239666176, 3239666687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239666688, 3239667199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239667200, 3239667711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239667712, 3239668223, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239668224, 3239668735, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239668736, 3239669247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239669248, 3239670271, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239670272, 3239670783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239670784, 3239671295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239671296, 3239671807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239671808, 3239672319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239672320, 3239672831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239672832, 3239673343, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239673344, 3239673855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239673856, 3239682047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239682048, 3239682559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239682560, 3239683071, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239683072, 3239683583, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239683584, 3239684607, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239684608, 3239685119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239685120, 3239686143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239686144, 3239686655, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239686656, 3239687167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239687168, 3239687679, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239687680, 3239688191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239688192, 3239689215, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239689216, 3239689727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239689728, 3239690239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239690240, 3239690495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239690496, 3239690751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239690752, 3239691263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239691264, 3239691519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239691520, 3239691775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239691776, 3239692031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239692032, 3239692287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239692288, 3239697407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239697408, 3239697663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239697664, 3239697919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239697920, 3239698431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239698432, 3239706367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239706368, 3239706623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239706624, 3239706879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239706880, 3239707135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239707136, 3239707391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239707392, 3239707647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239707648, 3239707903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239707904, 3239708159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239708160, 3239708415, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239708416, 3239708671, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239708672, 3239708927, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239708928, 3239709183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239709184, 3239709439, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239709440, 3239709695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239709696, 3239709951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239709952, 3239710207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239710208, 3239710463, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239710464, 3239710719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239710720, 3239710975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239710976, 3239711231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239711232, 3239711487, N'BY', N'Belarus') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239711488, 3239711743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239711744, 3239711999, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239712000, 3239712255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239712256, 3239712511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239712512, 3239712767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239712768, 3239713023, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239713024, 3239713279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239713280, 3239713535, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239713536, 3239713791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239713792, 3239714047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239714048, 3239714303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239714304, 3239714559, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239714560, 3239714815, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239714816, 3239723007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239723008, 3239731199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239731200, 3239739391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239739392, 3239739647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239739648, 3239739903, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239739904, 3239740159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239740160, 3239740415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239740416, 3239740671, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239740672, 3239740927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239740928, 3239741183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239741184, 3239741439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239741440, 3239759871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239759872, 3239760127, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239760128, 3239760383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239760384, 3239760895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239760896, 3239761151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239761152, 3239761407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239761408, 3239761663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239761664, 3239761919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239761920, 3239762175, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239762176, 3239762431, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239762432, 3239762687, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239762688, 3239762943, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239762944, 3239763199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239763200, 3239763455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239763456, 3239763967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239763968, 3239772159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239772160, 3239772415, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239772416, 3239772671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239772672, 3239773183, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239773184, 3239773439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239773440, 3239773951, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239773952, 3239774207, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239774208, 3239774463, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239774464, 3239774719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239774720, 3239774975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239774976, 3239775231, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239775232, 3239782399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239782400, 3239782655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239782656, 3239782911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239782912, 3239783167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239783168, 3239783423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239783424, 3239783679, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239783680, 3239783935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239783936, 3239784191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239784192, 3239784447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239784448, 3239788543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239788544, 3239789055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239789056, 3239789567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239789568, 3239790079, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239790080, 3239791103, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239791104, 3239791615, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239791616, 3239792639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239792640, 3239793151, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239793152, 3239793663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239793664, 3239794175, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239794176, 3239794687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239794688, 3239795199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239795200, 3239795711, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239795712, 3239796223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239796224, 3239796735, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239796736, 3239821311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239821312, 3239821823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239821824, 3239822335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239822336, 3239822847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239822848, 3239823359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239823360, 3239823871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239823872, 3239824383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239824384, 3239824895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239824896, 3239825407, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239825408, 3239825919, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239825920, 3239826431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239826432, 3239826943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239826944, 3239827455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239827456, 3239827967, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239827968, 3239828479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239828480, 3239828991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239828992, 3239830015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239830016, 3239830527, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239830528, 3239831039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239831040, 3239831551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239831552, 3239832575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239832576, 3239834111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239834112, 3239834623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239834624, 3239835135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239835136, 3239836159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239836160, 3239836671, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239836672, 3239837183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239837184, 3239837695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239837696, 3239837951, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239837952, 3239839743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239839744, 3239839999, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239840000, 3239840511, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239840512, 3239840767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239840768, 3239841023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239841024, 3239841279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239841280, 3239848447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239848448, 3239848703, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239848704, 3239848959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239848960, 3239849215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239849216, 3239849471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239849472, 3239849727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239849728, 3239849983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239849984, 3239859199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239859200, 3239859455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239859456, 3239859711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239859712, 3239859967, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239859968, 3239860223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239860224, 3239860479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239860480, 3239860735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239860736, 3239861247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239861248, 3239861503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239861504, 3239861759, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239861760, 3239862015, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239862016, 3239862271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239862272, 3239874559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239874560, 3239874815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239874816, 3239875071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239875072, 3239875327, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239875328, 3239875583, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239875584, 3239875839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239875840, 3239876095, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239876096, 3239876351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239876352, 3239876607, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239876608, 3239876863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239876864, 3239877119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239877120, 3239877375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239877376, 3239877631, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239877632, 3239877887, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239877888, 3239878143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239878144, 3239878399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239878400, 3239882751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239882752, 3239883007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239883008, 3239883263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239883264, 3239883775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239883776, 3239884031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239884032, 3239884287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239884288, 3239884543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239884544, 3239884799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239884800, 3239885055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239885056, 3239885311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239885312, 3239885567, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239885568, 3239885823, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239885824, 3239886079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239886080, 3239886335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239886336, 3239886591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239886592, 3239886847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239886848, 3239888895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239888896, 3239889151, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239889152, 3239889407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239889408, 3239889663, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239889664, 3239889919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239889920, 3239890175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239890176, 3239890431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239890432, 3239890687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239890688, 3239895039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239895040, 3239895295, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239895296, 3239895551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239895552, 3239895807, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239895808, 3239896063, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239896064, 3239896575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239896576, 3239896831, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239896832, 3239897087, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239897088, 3239897343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239897344, 3239897599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239897600, 3239897855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239897856, 3239898111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239898112, 3239898367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239898368, 3239898623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239898624, 3239898879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239898880, 3239899135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239899136, 3239901695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239901696, 3239901951, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239901952, 3239902207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239902208, 3239902463, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239902464, 3239902719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239902720, 3239902975, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239902976, 3239903231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239903232, 3239913215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239913216, 3239913471, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239913472, 3239915519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239915520, 3239915775, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239915776, 3239916031, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239916032, 3239916287, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239916288, 3239916543, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239916544, 3239916799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239916800, 3239917055, N'KZ', N'Kazakstan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239917056, 3239917311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239917312, 3239917567, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239917568, 3239935999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239936000, 3239936255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239936256, 3239936511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239936512, 3239938815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239938816, 3239939071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239939072, 3239950335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239950848, 3239951103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239951104, 3239951359, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239951360, 3239954431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239954432, 3239954687, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239954688, 3239954943, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239954944, 3239955199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239955200, 3239955711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239955712, 3239955967, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239955968, 3239956223, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239956224, 3239956479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239956480, 3239959551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239959552, 3239959807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239959808, 3239960063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239960064, 3239960319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239960320, 3239960575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239960576, 3239968511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239968512, 3239968767, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239968768, 3239969023, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239969024, 3239974911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239974912, 3239975935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239975936, 3239978751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239978752, 3239979007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239979008, 3239979263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239979264, 3239979519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239979520, 3239979775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239979776, 3239980031, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239980032, 3239993343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239995392, 3239996415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239996416, 3239996671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239996672, 3239996927, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239996928, 3239997183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239997184, 3239997439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3239997440, 3240004863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240004864, 3240005119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240005120, 3240005375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240005376, 3240005631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240005632, 3240009727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240009728, 3240009983, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240009984, 3240010239, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240010240, 3240010495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240010496, 3240010751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240010752, 3240011007, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240011008, 3240011263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240011264, 3240011519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240011520, 3240011775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240011776, 3240026111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240026112, 3240027135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240027136, 3240028159, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240028160, 3240029183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240029184, 3240030207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240030208, 3240032255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240032256, 3240033279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240033280, 3240034303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240034304, 3240034559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240034560, 3240037375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240037888, 3240038143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240038144, 3240038399, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240038400, 3240099839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240099840, 3240361983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240362240, 3240362495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240362496, 3240587263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240589312, 3240593407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240593408, 3240624127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240624128, 3240689663, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240689664, 3240690175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240690176, 3240690687, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240690688, 3240691199, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240691200, 3240691711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240691712, 3240692735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240692736, 3240693247, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240693248, 3240693759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240693760, 3240695807, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240695808, 3240697855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240697856, 3240698111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240698112, 3240698367, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240698368, 3240698623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240698624, 3240699135, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240699136, 3240699391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240699392, 3240699647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240699648, 3240699903, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240699904, 3240700159, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240700160, 3240700415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240700416, 3240700671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240700672, 3240700927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240700928, 3240701183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240701184, 3240701439, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240701440, 3240701695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240701696, 3240701951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240701952, 3240702975, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240702976, 3240703999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240704000, 3240705023, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240705024, 3240706047, N'UA', N'Ukraine') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240706048, 3240707071, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240707072, 3240707839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240707840, 3240709119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240709120, 3240710143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240710144, 3240710399, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240710400, 3240710655, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240710656, 3240710911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240710912, 3240711167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240711168, 3240711679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240711680, 3240711935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240711936, 3240712191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240712192, 3240712447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240712448, 3240712703, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240712704, 3240712959, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240712960, 3240713215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240713216, 3240713471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240713472, 3240713727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240713728, 3240713983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240713984, 3240714239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240714240, 3240716287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240716288, 3240718335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240718336, 3240718847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240718848, 3240719359, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240719360, 3240719871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240719872, 3240720383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240720384, 3240720895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240720896, 3240721407, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240721408, 3240721919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240721920, 3240722431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240722432, 3240723455, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240723456, 3240724479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240724480, 3240725503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240725504, 3240726527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240726528, 3240727039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240727040, 3240727551, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240727552, 3240728063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240728064, 3240728575, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240728576, 3240729599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240729600, 3240730111, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240730112, 3240730623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240730624, 3240731647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240731648, 3240732671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240732672, 3240733695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240733696, 3240734719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240734720, 3240735743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240735744, 3240736255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240736256, 3240736767, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240736768, 3240737791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240737792, 3240738815, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240739072, 3240739327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240739328, 3240739583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240739584, 3240739839, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240739840, 3240740095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240740096, 3240740351, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240740352, 3240740607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240740608, 3240741119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240741120, 3240741375, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240741376, 3240741631, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240741632, 3240741887, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240741888, 3240742143, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240742144, 3240742399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240742400, 3240742655, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240742656, 3240742911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240742912, 3240743423, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240743424, 3240743935, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240743936, 3240744447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240744448, 3240744959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240744960, 3240745471, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240745472, 3240745983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240745984, 3240746495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240746496, 3240747007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240747008, 3240747263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240747264, 3240747519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240747520, 3240747775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240747776, 3240748031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240748032, 3240748287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240748288, 3240748543, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240748544, 3240749055, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240749056, 3240749311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240749312, 3240749567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240749568, 3240749823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240749824, 3240750335, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240750336, 3240750591, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240750592, 3240750847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240750848, 3240751103, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240751104, 3240752127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240752128, 3240754175, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240754176, 3240755199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240755200, 3240755455, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240755456, 3240808959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240808960, 3240809215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240809216, 3240809471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240809472, 3240809727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240809728, 3240809983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240809984, 3240810239, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240810240, 3240810495, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240810496, 3240810751, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240810752, 3240811007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240811008, 3240811263, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240811264, 3240811519, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240811520, 3240811775, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240811776, 3240812031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240812032, 3240812287, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240812288, 3240812543, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240812544, 3240813567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240813568, 3240814591, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240814592, 3240818687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240818688, 3240820735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240820736, 3240820799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240820800, 3240820831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240820832, 3240827135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240827136, 3240827391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240827392, 3240827647, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240827648, 3240827903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240827904, 3240828159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240828160, 3240828415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240828416, 3240837119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240837120, 3240837375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240837376, 3240840447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240840448, 3240840703, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240840704, 3240840959, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240840960, 3240841215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240841216, 3240843263, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240843264, 3240844543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240844544, 3240844799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240844800, 3240845055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240845056, 3240845311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240845312, 3240846847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240846848, 3240847359, N'VA', N'Holy See (Vatican City State)') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240847360, 3240852735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240852736, 3240852991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240852992, 3240853247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240853248, 3240853503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240853504, 3240855039, N'VA', N'Holy See (Vatican City State)') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240855040, 3240858623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240858624, 3240858879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240858880, 3240859135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240859136, 3240859391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240859392, 3240859647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240859648, 3240861183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240861184, 3240861695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240861696, 3240866815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240866816, 3240867071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240867072, 3240867327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240867328, 3240867583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240867584, 3240867839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240867840, 3240873983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240873984, 3240874495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240874496, 3240875007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240875008, 3240875519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240875520, 3240876031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240876032, 3240876543, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240876544, 3240877055, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240877056, 3240877567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240877568, 3240879103, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240879104, 3240880127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240880128, 3240881151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240881152, 3240882175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240882176, 3240883199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240883200, 3240884223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240884224, 3240886271, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240886272, 3240961791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240961792, 3240961799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240961800, 3240968703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240968704, 3240969039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240969040, 3240969215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240969216, 3240969231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240969232, 3240988159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240988160, 3240988167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3240988168, 3241017343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241017344, 3241082879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241082880, 3241083135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241083136, 3241100799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241100800, 3241101055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241101056, 3241101311, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241101312, 3241101567, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241101568, 3241101823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241101824, 3241102079, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241102080, 3241102335, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241102336, 3241102591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241102592, 3241102847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241102848, 3241103359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241103360, 3241103615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241103616, 3241103871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241103872, 3241104127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241104128, 3241104383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241104384, 3241104639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241104640, 3241104895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241104896, 3241105151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241105152, 3241105407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241105408, 3241108223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241108224, 3241108735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241108736, 3241108991, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241108992, 3241109247, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241109248, 3241117695, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241117696, 3241117951, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241117952, 3241118207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241118208, 3241118463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241118464, 3241118719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241118720, 3241118975, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241118976, 3241119231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241119232, 3241119487, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241119488, 3241119743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241119744, 3241119999, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241120000, 3241120255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241120256, 3241120511, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241120512, 3241120767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241120768, 3241121023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241121024, 3241121279, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241121280, 3241121535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241121536, 3241121791, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241121792, 3241122047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241122048, 3241122303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241122304, 3241122559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241122560, 3241123327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241123328, 3241124095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241124096, 3241124351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241124352, 3241124607, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241124608, 3241124863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241124864, 3241125119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241125120, 3241125375, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241125376, 3241125631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241125632, 3241125887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241125888, 3241129983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241129984, 3241130239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241130240, 3241130495, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241130496, 3241130751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241130752, 3241131007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241131008, 3241131263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241131264, 3241131519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241131520, 3241131775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241131776, 3241132031, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241132032, 3241145855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241145856, 3241146111, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241146112, 3241146367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241146368, 3241146623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241146624, 3241146879, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241146880, 3241148415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241148416, 3241476095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241476096, 3241476351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241476352, 3241481471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241481472, 3241481727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241481728, 3241481983, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241481984, 3241482239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241482240, 3241484799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241484800, 3241485311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241485312, 3241485567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241485568, 3241496575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241496576, 3241496831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241496832, 3241497343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241497344, 3241498111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241498112, 3241498367, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241498368, 3241499135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241499136, 3241499903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241499904, 3241500159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241500160, 3241500671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241500672, 3241502975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241502976, 3241503231, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241503232, 3241503487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241503488, 3241508095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241508096, 3241508351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241508352, 3241541375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241541376, 3241541631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241541632, 3241803775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241803776, 3241803815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241803816, 3241803823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241803824, 3241803831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241803832, 3241803839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241803840, 3241803903, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241803904, 3241804031, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241804032, 3241820159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241820160, 3241821695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241821696, 3241822207, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241822208, 3241824255, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241824256, 3241848063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241848064, 3241851391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241851392, 3241851903, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241851904, 3241852927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241852928, 3241854463, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241854464, 3241854975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241854976, 3241855999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241856000, 3241857279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241857280, 3241857535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241857536, 3241859071, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241859072, 3241861119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241861120, 3241863167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241863168, 3241863423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241863424, 3241863679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241863680, 3241863935, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241863936, 3241864191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241864192, 3241864447, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241864448, 3241864703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241864704, 3241864959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241864960, 3241865215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241865216, 3241865471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241865472, 3241865727, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241865728, 3241865983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241865984, 3241866239, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241866240, 3241866751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241866752, 3241867007, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241867008, 3241867263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241867264, 3241867519, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241867520, 3241867775, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241867776, 3241868031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241868032, 3241868287, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241868288, 3241868543, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241868544, 3241868799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241868800, 3241869055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241869056, 3241869311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241869312, 3241934847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3241934848, 3242196991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242196992, 3242197975, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242197976, 3242197987, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242197988, 3242207847, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242207848, 3242207855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242207856, 3242393599, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242393600, 3242459135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242459136, 3242467327, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242467328, 3242475519, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242475520, 3242483711, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242483712, 3242524671, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242524672, 3242590207, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242590208, 3242655743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242655744, 3242721279, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242721280, 3242750975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242750976, 3242751231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242751232, 3242779903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242779904, 3242780159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242780160, 3242852351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242852352, 3242911231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242911232, 3242911743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242911744, 3242917887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242917888, 3242950655, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242950656, 3242983423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3242983424, 3243048959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243048960, 3243114495, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243114496, 3243150847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243150848, 3243151103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243151104, 3243216823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243216824, 3243216831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243216832, 3243223615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243223616, 3243223623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243223624, 3243223695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243223696, 3243223703, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243223704, 3243245567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243245568, 3243297791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243297792, 3243298047, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243298048, 3243376639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243376640, 3243441919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243441920, 3243442175, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243442176, 3243444167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243444168, 3243444183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243444184, 3243507711, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243507712, 3243507967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243507968, 3243509759, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243509760, 3243510015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243510016, 3243510271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243510272, 3243511807, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243511808, 3243512063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243512064, 3243512319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243512320, 3243512575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243512576, 3243512831, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243512832, 3243513087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243513088, 3243513343, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243513344, 3243513855, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243513856, 3243514111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243514112, 3243514367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243514368, 3243514623, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243514624, 3243514879, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243514880, 3243515135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243515136, 3243515391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243515392, 3243515647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243515648, 3243515903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243515904, 3243520511, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243520512, 3243520767, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243520768, 3243521023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243521024, 3243521279, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243521280, 3243521535, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243521536, 3243521791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243521792, 3243524095, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243524096, 3243524351, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243524352, 3243524607, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243524608, 3243524863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243524864, 3243525119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243525120, 3243525375, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243525376, 3243525631, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243525632, 3243525887, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243525888, 3243526143, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243526144, 3243526399, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243526400, 3243526655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243526656, 3243526911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243526912, 3243527167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243527168, 3243527679, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243527680, 3243527935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243527936, 3243528191, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243528192, 3243529215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243529216, 3243529471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243529472, 3243529727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243529728, 3243529983, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243529984, 3243530239, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243530240, 3243530495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243530496, 3243530751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243530752, 3243531007, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243531008, 3243531263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243531264, 3243531775, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243531776, 3243532031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243532032, 3243532287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243532288, 3243536383, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243536384, 3243536639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243536640, 3243536895, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243536896, 3243537151, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243537152, 3243537407, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243537408, 3243544063, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243544064, 3243544319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243544320, 3243544575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243544576, 3243552767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243552768, 3243553023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243553024, 3243553279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243553280, 3243553535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243553536, 3243553791, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243553792, 3243554303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243554304, 3243554559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243554560, 3243554815, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243554816, 3243555071, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243555072, 3243555327, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243555328, 3243555583, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243555584, 3243555839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243555840, 3243565055, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243565056, 3243569151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243569152, 3243570687, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243570688, 3243570943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243570944, 3243571711, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243571712, 3243571967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243571968, 3243572223, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243572224, 3243572991, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243572992, 3243573247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243573248, 3243704319, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243704320, 3243769855, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243769856, 3243900927, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243900928, 3243966463, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243966464, 3243974655, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243974656, 3243978751, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243978752, 3243982847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243982848, 3243991039, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243991040, 3243999231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3243999232, 3244031999, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244032000, 3244097535, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244097536, 3244098559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244098560, 3244099583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244099584, 3244100607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244100608, 3244102655, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244102656, 3244103679, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244103680, 3244104703, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244104704, 3244105727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244105728, 3244107775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244107776, 3244108799, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244108800, 3244109823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244109824, 3244110847, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244110848, 3244111871, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244111872, 3244112895, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244112896, 3244113919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244113920, 3244114943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244114944, 3244115967, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244115968, 3244116991, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244116992, 3244118015, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244118016, 3244120063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244120064, 3244122111, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244122112, 3244123135, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244123136, 3244124159, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244124160, 3244125183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244125184, 3244126207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244126208, 3244127231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244127232, 3244128255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244128256, 3244129279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244129280, 3244130303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244130304, 3244131327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244131328, 3244133375, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244133376, 3244134399, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244134400, 3244135423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244135424, 3244137471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244137472, 3244138495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244138496, 3244139519, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244139520, 3244140543, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244140544, 3244141567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244141568, 3244142591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244142592, 3244143615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244143616, 3244144639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244144640, 3244147711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244147712, 3244149759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244149760, 3244150783, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244150784, 3244151807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244151808, 3244152831, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244152832, 3244153855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244153856, 3244154879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244154880, 3244155903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244155904, 3244156927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244156928, 3244158975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244158976, 3244159999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244160000, 3244161023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244161024, 3244163071, N'NO', N'Norway') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244163072, 3244228607, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244228608, 3244261375, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244261376, 3244272575, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244272576, 3244272639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244272640, 3244273687, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244273688, 3244273695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244273696, 3244274279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244274280, 3244274287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244274288, 3244277359, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244277360, 3244277367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244277368, 3244277631, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244277632, 3244277695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244277696, 3244277759, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244277760, 3244294143, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244294144, 3244408575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244408576, 3244408831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244408832, 3244592127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244592128, 3244592639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244592640, 3244818431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244818432, 3244875775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244875776, 3244877119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244877120, 3244877567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244877568, 3244877823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3244877824, 3245073919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245073920, 3245074175, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245074176, 3245080575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245080576, 3245082623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245082624, 3245084927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245084928, 3245085183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245085184, 3245085439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245085440, 3245085695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245085696, 3245086207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245086208, 3245086463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245086464, 3245086719, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245086720, 3245086975, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245086976, 3245087231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245087232, 3245087487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245087488, 3245087743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245087744, 3245087999, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245088000, 3245088255, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245088256, 3245088767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245088768, 3245089279, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245089280, 3245089791, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245089792, 3245090815, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245090816, 3245091327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245091328, 3245091839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245091840, 3245093887, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245093888, 3245094911, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245094912, 3245095935, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245095936, 3245096959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245096960, 3245099007, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245099008, 3245103103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245103104, 3245105151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245105152, 3245105663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245105664, 3245105919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245106176, 3245106687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245106688, 3245107711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245107712, 3245108735, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245108736, 3245109247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245109248, 3245114367, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245114368, 3245114879, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245114880, 3245115391, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245115392, 3245115903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245115904, 3245116415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245116416, 3245116927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245116928, 3245117439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245117440, 3245118463, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245118464, 3245119487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245119488, 3245120511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245120512, 3245121535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245121536, 3245122047, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245122048, 3245122559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245122560, 3245123071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245123072, 3245123583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245123584, 3245124095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245124096, 3245124607, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245124608, 3245125119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245125120, 3245125631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245125632, 3245125887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245125888, 3245126143, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245126144, 3245126399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245126400, 3245126655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245126656, 3245126911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245126912, 3245127167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245127168, 3245127423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245127424, 3245127679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245127680, 3245127935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245127936, 3245128191, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245128192, 3245128447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245128448, 3245128703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245128704, 3245128959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245128960, 3245129215, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245129216, 3245129471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245129472, 3245129983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245129984, 3245130239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245130240, 3245130495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245130496, 3245130751, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245130752, 3245131007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245131008, 3245131519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245131520, 3245132031, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245132032, 3245132287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245132288, 3245132543, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245132544, 3245132799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245132800, 3245133311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245133312, 3245133567, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245133568, 3245133823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245133824, 3245134079, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245134080, 3245134335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245134336, 3245134591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245134592, 3245134847, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245134848, 3245135103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245135104, 3245135359, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245135360, 3245135615, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245135616, 3245135871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245135872, 3245136127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245136128, 3245136383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245136384, 3245136639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245136640, 3245136895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245136896, 3245137151, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245137152, 3245137407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245137408, 3245137663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245137664, 3245137919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245137920, 3245138431, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245138432, 3245138943, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245138944, 3245139455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245139456, 3245139967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245139968, 3245140479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245140480, 3245140991, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245140992, 3245141503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245141504, 3245142015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245142016, 3245143039, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245143040, 3245144063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245144064, 3245145087, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245145088, 3245146111, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245146112, 3245147135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245147136, 3245148159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245148160, 3245149183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245149184, 3245150207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245150208, 3245154303, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245154304, 3245158399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245158400, 3245158911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245158912, 3245159423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245159424, 3245159935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245159936, 3245160447, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245160448, 3245160959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245160960, 3245161471, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245161472, 3245161983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245161984, 3245162495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245162496, 3245163007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245163008, 3245163519, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245163520, 3245164031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245164032, 3245164543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245164544, 3245165055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245165056, 3245165567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245165568, 3245166079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245166080, 3245166591, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245166592, 3245166847, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245166848, 3245167103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245167104, 3245167359, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245167360, 3245167615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245167616, 3245167871, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245167872, 3245168127, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245168128, 3245168383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245168384, 3245168639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245168640, 3245168895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245168896, 3245169151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245169152, 3245169407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245169408, 3245169919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245169920, 3245170175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245170176, 3245170431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245170432, 3245170687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245170688, 3245171711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245171712, 3245172735, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245172736, 3245173759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245173760, 3245174783, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245174784, 3245175039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245175040, 3245175295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245175296, 3245175551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245175552, 3245175807, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245175808, 3245176063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245176064, 3245176319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245176576, 3245176831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245176832, 3245177343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245177344, 3245177599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245177600, 3245177855, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245177856, 3245178111, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245178112, 3245178623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245178624, 3245178879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245178880, 3245179391, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245179392, 3245179903, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245179904, 3245180415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245180416, 3245180927, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245180928, 3245181439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245181440, 3245181951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245181952, 3245182463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245182464, 3245182975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245182976, 3245183999, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245184000, 3245185023, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245185024, 3245187071, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245187072, 3245190143, N'UA', N'Ukraine') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245190144, 3245191167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245191168, 3245193215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245193216, 3245195263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245195264, 3245197311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245197312, 3245199359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245199360, 3245199615, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245199616, 3245199871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245199872, 3245200127, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245200128, 3245200383, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245200384, 3245200639, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245200640, 3245200895, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245200896, 3245201151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245201152, 3245201407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245201408, 3245201663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245201664, 3245201919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245201920, 3245202175, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245202176, 3245202687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245202688, 3245203199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245203200, 3245203455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245203712, 3245204223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245204224, 3245204479, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245204480, 3245204735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245204736, 3245205247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245205248, 3245205503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245205504, 3245205759, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245205760, 3245206015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245206016, 3245206271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245206272, 3245206527, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245206528, 3245207551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245207552, 3245208063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245208064, 3245208575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245208576, 3245209087, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245209088, 3245209599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245209600, 3245210111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245210112, 3245210623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245210624, 3245211135, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245211136, 3245211647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245211648, 3245212159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245212160, 3245212671, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245212672, 3245213183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245213184, 3245213695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245213696, 3245214207, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245214208, 3245214719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245214720, 3245215231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245215232, 3245215743, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245215744, 3245217791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245217792, 3245218815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245218816, 3245219839, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245219840, 3245221887, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245221888, 3245223935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245223936, 3245225983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245225984, 3245228031, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245228032, 3245229055, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245229056, 3245230079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245230080, 3245231103, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245232384, 3245232639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245232640, 3245232895, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245232896, 3245233151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245233152, 3245233407, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245233408, 3245233663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245233664, 3245233919, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245233920, 3245234175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245234176, 3245234431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245234432, 3245234687, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245234688, 3245234943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245234944, 3245235199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245235200, 3245235455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245235456, 3245235711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245235712, 3245235967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245235968, 3245236223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245236736, 3245237247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245237248, 3245237759, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245237760, 3245238271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245238272, 3245238783, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245238784, 3245239295, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245239296, 3245240319, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245240320, 3245241343, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245241344, 3245242367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245242368, 3245243391, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245243392, 3245244415, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245244416, 3245244671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245244672, 3245244927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245244928, 3245245183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245245184, 3245245439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245245440, 3245245695, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245245696, 3245245951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245245952, 3245246207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245246208, 3245246463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245246464, 3245246719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245246720, 3245246975, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245246976, 3245247231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245247232, 3245247487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245247488, 3245247743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245247744, 3245247999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245248000, 3245248255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245248256, 3245248511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245248512, 3245248767, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245248768, 3245249023, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245249024, 3245249279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245249280, 3245249535, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245249536, 3245249791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245249792, 3245250047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245250048, 3245250303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245250304, 3245250559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245250560, 3245250815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245250816, 3245251071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245251072, 3245251327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245251328, 3245251583, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245251584, 3245251839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245251840, 3245252095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245252096, 3245252351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245252352, 3245252607, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245252608, 3245253631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245253632, 3245254143, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245254144, 3245254655, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245254656, 3245255167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245255168, 3245255679, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245255680, 3245257215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245257216, 3245257727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245257728, 3245258239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245258240, 3245258751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245258752, 3245259263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245259264, 3245259775, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245259776, 3245260287, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245260288, 3245260799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245260800, 3245261823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245261824, 3245262847, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245262848, 3245263871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245263872, 3245264895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245264896, 3245266943, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245266944, 3245268991, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245268992, 3245270015, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245270016, 3245271039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245271040, 3245272063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245273088, 3245275135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245275136, 3245277183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245277184, 3245277695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245277696, 3245278207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245278208, 3245278719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245278720, 3245279743, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245279744, 3245280255, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245280256, 3245280767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245280768, 3245281279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245281280, 3245281791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245281792, 3245282303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245282304, 3245282815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245282816, 3245283327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245283328, 3245283839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245283840, 3245284351, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245284352, 3245284863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245284864, 3245285375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245285376, 3245285631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245285632, 3245285887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245285888, 3245286143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245286144, 3245286399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245286400, 3245287423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245287424, 3245287679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245287680, 3245287935, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245287936, 3245288191, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245288192, 3245288703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245288704, 3245288959, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245288960, 3245289215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245289216, 3245289471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245289472, 3245290495, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245290496, 3245291519, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245291520, 3245292543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245292544, 3245293567, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245293568, 3245294079, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245294080, 3245294591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245294592, 3245295103, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245295104, 3245296127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245296128, 3245296639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245296640, 3245297151, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245297152, 3245297663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245297664, 3245297919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245297920, 3245298175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245298176, 3245298431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245298432, 3245298687, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245298688, 3245298943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245298944, 3245299199, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245299200, 3245299455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245299456, 3245299711, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245299712, 3245299967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245299968, 3245300223, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245300224, 3245300479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245300480, 3245300991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245300992, 3245301247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245301248, 3245301503, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245301504, 3245301759, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245301760, 3245302783, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245302784, 3245303807, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245303808, 3245304831, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245304832, 3245306367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245306368, 3245306879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245306880, 3245307391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245307392, 3245307903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245307904, 3245308415, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245308416, 3245308927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245308928, 3245309439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245309440, 3245309951, N'UA', N'Ukraine') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245309952, 3245311999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245312000, 3245314047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245314048, 3245315071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245315072, 3245316095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245316096, 3245317119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245317120, 3245318143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245318144, 3245318399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245318400, 3245318655, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245318656, 3245318911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245318912, 3245319167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245319168, 3245319423, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245319424, 3245319679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245319680, 3245319935, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245319936, 3245320191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245320192, 3245320703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245320704, 3245320959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245320960, 3245321215, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245321216, 3245321471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245321472, 3245321727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245321728, 3245321983, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245321984, 3245322239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245322240, 3245323263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245323264, 3245325311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245325312, 3245326335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245326336, 3245326847, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245326848, 3245327359, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245327360, 3245328383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245328384, 3245328895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245328896, 3245329407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245329408, 3245329919, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245329920, 3245333503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245333504, 3245334527, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245334528, 3245334783, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245334784, 3245335039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245335040, 3245335551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245335552, 3245335807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245335808, 3245336063, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245336064, 3245336575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245336576, 3245336831, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245336832, 3245337087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245337088, 3245337343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245337344, 3245337599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245337600, 3245337855, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245337856, 3245338367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245338368, 3245339647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245339648, 3245340671, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245340672, 3245341695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245341696, 3245342719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245342720, 3245867007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245867008, 3245878303, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245878304, 3245878335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245878336, 3245888703, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245888704, 3245888767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245888768, 3245896991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245896992, 3245897007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245897008, 3245899343, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245899344, 3245899351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245899352, 3245906367, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245906368, 3245906431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245906432, 3245910831, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245910832, 3245910847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245910848, 3245931263, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245931264, 3245931519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245931520, 3245932543, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245932544, 3245998079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3245998080, 3246024479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246024480, 3246024487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246024488, 3246100351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246100352, 3246100367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246100368, 3246128479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246128480, 3246128495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246128496, 3246129151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246129152, 3246141439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246141440, 3246141695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246141696, 3246142975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246142976, 3246143231, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246143232, 3246143743, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246143744, 3246143999, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246144000, 3246144255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246144256, 3246145023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246145024, 3246147839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246147840, 3246148095, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246148096, 3246148607, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246148608, 3246149631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246149632, 3246214655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246214656, 3246215167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246215168, 3246260223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246260224, 3246325759, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246325760, 3246375159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246375160, 3246375423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246375424, 3246391295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246391296, 3246475535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246475536, 3246475551, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246475552, 3246537887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246537888, 3246537903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246537904, 3246613503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246613504, 3246614527, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246614528, 3246784511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246784512, 3246915583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3246915584, 3247046655, N'PT', N'Portugal') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247046656, 3247046911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247046912, 3247048703, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247048704, 3247048959, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247048960, 3247049215, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247049216, 3247054079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247054080, 3247054335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247054336, 3247054591, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247054592, 3247054847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247054848, 3247063039, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247063040, 3247063295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247063296, 3247063551, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247063552, 3247063807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247063808, 3247064063, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247064064, 3247064319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247064320, 3247064575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247064576, 3247064831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247064832, 3247065087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247065088, 3247065343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247065344, 3247065599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247065600, 3247065855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247065856, 3247066111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247066112, 3247066367, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247066368, 3247066623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247066624, 3247066879, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247067136, 3247067647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247067648, 3247067903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247067904, 3247068159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247068160, 3247068415, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247068416, 3247068671, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247068672, 3247068927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247068928, 3247069183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247069184, 3247069439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247069440, 3247069695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247069696, 3247069951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247069952, 3247070207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247070208, 3247070463, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247070464, 3247070719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247070720, 3247070975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247070976, 3247071231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247071232, 3247071487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247071488, 3247072255, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247072256, 3247072511, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247072512, 3247072767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247072768, 3247073023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247073024, 3247073279, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247073280, 3247073535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247073536, 3247073791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247073792, 3247074047, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247074048, 3247074303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247074304, 3247074559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247074560, 3247074815, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247074816, 3247075071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247075072, 3247075327, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247075328, 3247075839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247075840, 3247076095, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247076096, 3247076351, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247076352, 3247076607, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247076608, 3247076863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247076864, 3247077119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247077120, 3247077375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247077376, 3247077631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247077632, 3247077887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247077888, 3247078143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247078144, 3247078399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247078400, 3247078655, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247078656, 3247078911, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247078912, 3247079167, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247079168, 3247079423, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247079424, 3247080447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247080448, 3247081471, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247081472, 3247083519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247083520, 3247084543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247084544, 3247085567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247085568, 3247086591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247086592, 3247087615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247087616, 3247088639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247088640, 3247089663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247089664, 3247090687, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247090688, 3247091711, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247091712, 3247092735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247092736, 3247093759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247093760, 3247094783, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247094784, 3247095807, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247095808, 3247097855, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247097856, 3247098879, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247098880, 3247099903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247099904, 3247100927, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247100928, 3247101951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247101952, 3247102975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247102976, 3247106047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247106048, 3247107071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247107072, 3247108095, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247108096, 3247109119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247109120, 3247110143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247110144, 3247111167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247111168, 3247112191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247112192, 3247177727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247177728, 3247243263, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247243264, 3247260671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247260672, 3247260695, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247260696, 3247260703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247260704, 3247260735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247260736, 3247260743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247260744, 3247260895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247260896, 3247260903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247260904, 3247260999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261000, 3247261007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261008, 3247261071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261072, 3247261079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261080, 3247261223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261224, 3247261231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261232, 3247261287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261288, 3247261295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261296, 3247261303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261304, 3247261319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261320, 3247261487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261488, 3247261495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247261496, 3247262047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247262048, 3247262055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247262056, 3247262159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247262160, 3247262167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247262168, 3247263007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263008, 3247263015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263016, 3247263175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263176, 3247263183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263184, 3247263215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263216, 3247263223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263224, 3247263263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263264, 3247263271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263272, 3247263479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263480, 3247263487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263488, 3247263599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263600, 3247263607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263608, 3247263655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263656, 3247263671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263672, 3247263815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263816, 3247263823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263824, 3247263943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263944, 3247263951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263952, 3247263959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263960, 3247263967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247263968, 3247264023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264024, 3247264031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264032, 3247264039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264040, 3247264047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264048, 3247264303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264304, 3247264311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264312, 3247264383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264384, 3247264391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264392, 3247264423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264424, 3247264431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264432, 3247264895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264896, 3247264903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247264904, 3247265255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265256, 3247265263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265264, 3247265463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265464, 3247265471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265472, 3247265663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265664, 3247265671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265672, 3247265695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265696, 3247265703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247265704, 3247266559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247266560, 3247280127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280128, 3247280263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280264, 3247280271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280272, 3247280463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280464, 3247280471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280472, 3247280479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280480, 3247280487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280488, 3247280495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280496, 3247280503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280504, 3247280775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280776, 3247280783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280784, 3247280791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280792, 3247280807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247280808, 3247281543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247281544, 3247281551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247281552, 3247281583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247281584, 3247281591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247281592, 3247281791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247281792, 3247281799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247281800, 3247282223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247282224, 3247282231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247282232, 3247282655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247282656, 3247282663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247282664, 3247282975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247282976, 3247282983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247282984, 3247283367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247283368, 3247283375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247283376, 3247283695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247283696, 3247283703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247283704, 3247283927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247283928, 3247283935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247283936, 3247284063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284064, 3247284071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284072, 3247284151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284152, 3247284159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284160, 3247284167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284168, 3247284175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284176, 3247284183, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284184, 3247284191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284192, 3247284223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284224, 3247284231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284232, 3247284351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284352, 3247284359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284360, 3247284607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284608, 3247284615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284616, 3247284623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284624, 3247284631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284632, 3247284679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284680, 3247284687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284688, 3247284887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284888, 3247284895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247284896, 3247285167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285168, 3247285175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285176, 3247285239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285240, 3247285247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285248, 3247285407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285408, 3247285415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285416, 3247285431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285432, 3247285439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285440, 3247285543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285544, 3247285575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285576, 3247285599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285600, 3247285655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285656, 3247285663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285664, 3247285679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285680, 3247285799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285800, 3247285807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285808, 3247285927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285928, 3247285975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285976, 3247285991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247285992, 3247286023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247286024, 3247286615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247286616, 3247286623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247286624, 3247286743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247286744, 3247286751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247286752, 3247287199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247287200, 3247287207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247287208, 3247287223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247287224, 3247287231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247287232, 3247287471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247287472, 3247287479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247287480, 3247288319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247288320, 3247302655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247302656, 3247302711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247302712, 3247302719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247302720, 3247302807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247302808, 3247302815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247302816, 3247302999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303000, 3247303007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303008, 3247303599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303600, 3247303607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303608, 3247303687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303688, 3247303695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303696, 3247303751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303752, 3247303759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247303760, 3247307599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247307600, 3247307607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247307608, 3247308511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247308512, 3247308519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247308520, 3247308583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247308584, 3247308591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247308592, 3247308687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247308688, 3247308695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247308696, 3247308799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247308800, 3247439871, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247439872, 3247702015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247702016, 3247702271, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247702272, 3247704831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247704832, 3247705087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247705088, 3247705855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247705856, 3247706111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247706112, 3247711743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247711744, 3247712255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247712256, 3247713279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247713280, 3247713535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247713536, 3247713791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247713792, 3247714047, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247714048, 3247714303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247714304, 3247716351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247716352, 3247717887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247717888, 3247718399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247718400, 3247769599, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247769600, 3247771647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247771648, 3247775743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247775744, 3247782303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247782304, 3247782311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247782312, 3247783935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247783936, 3247792127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247792128, 3247800319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247800320, 3247816703, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247816704, 3247817471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247817472, 3247817727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247817728, 3247820799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247820800, 3247822335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247822336, 3247823103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247823104, 3247823871, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247823872, 3247825151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247825152, 3247825919, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247825920, 3247826943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247826944, 3247828991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247828992, 3247833087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247833088, 3247865855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247865856, 3247871999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247872000, 3247875327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247875328, 3247875583, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247875584, 3247876095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247876096, 3247876351, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247876352, 3247876607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247876608, 3247876863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247876864, 3247877119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247877120, 3247877631, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247877632, 3247879167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247879168, 3247882239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247882240, 3247898623, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247898624, 3247899647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247899648, 3247900671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247900672, 3247901695, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247901696, 3247902719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247902720, 3247903743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247903744, 3247904767, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247904768, 3247905791, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247905792, 3247906815, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247906816, 3247907839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247907840, 3247908863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247908864, 3247909887, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247909888, 3247910911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247910912, 3247912959, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247912960, 3247913983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247913984, 3247915007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247915008, 3247917055, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247917056, 3247918079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247918080, 3247919103, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247919104, 3247920127, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247920128, 3247921151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247921152, 3247922175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247922176, 3247923199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247923200, 3247925247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247925248, 3247926271, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247926272, 3247927295, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247927296, 3247928319, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247928320, 3247929343, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247929344, 3247931391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247931392, 3247960063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247960064, 3247962111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247962112, 3247963135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247963136, 3247964159, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3247964160, 3248095231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248095232, 3248095823, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248095824, 3248095831, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248095832, 3248160767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248160768, 3248226303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248226304, 3248235007, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248235008, 3248235263, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248235264, 3248357375, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248357376, 3248358367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248358368, 3248358383, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248358384, 3248370511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248370512, 3248370519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248370520, 3248371743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248371744, 3248371751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248371752, 3248372239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248372240, 3248372247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248372248, 3248372255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248372256, 3248372263, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248372264, 3248372271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248372272, 3248372319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248372320, 3248372327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248372328, 3248417311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248417312, 3248417343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248417344, 3248488447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248488448, 3248525311, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248525312, 3248525567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248525568, 3248525823, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248525824, 3248619519, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248619520, 3248638463, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248638464, 3248638719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248638720, 3248750591, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248750592, 3248750847, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248750848, 3248752383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248752384, 3248752639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248752640, 3248752895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248752896, 3248753151, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248753152, 3248753663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248753664, 3248753919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248753920, 3248754431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248754432, 3248754687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248754688, 3248758783, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248758784, 3248774143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248774144, 3248775167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248775168, 3248783359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248791552, 3248792319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248792320, 3248796287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248796288, 3248796351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248796352, 3248796415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248796416, 3248796863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248796864, 3248798647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248798648, 3248798651, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248798652, 3248798975, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248798976, 3248799231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248799232, 3248799735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248799736, 3248807935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248807936, 3248808447, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248808448, 3248808959, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248808960, 3248810079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248810080, 3248810111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248810112, 3248810143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248810144, 3248810175, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248810176, 3248810207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248810208, 3248810239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248810240, 3248810495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248810496, 3248812543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248812544, 3248813055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248813056, 3248813567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248813568, 3248814079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248814080, 3248815103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248815104, 3248815615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248815616, 3248816127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248816128, 3248881663, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3248881664, 3249012735, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249012736, 3249012991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249012992, 3249014271, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249014272, 3249014783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249014784, 3249025535, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249025536, 3249025791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249025792, 3249026559, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249026560, 3249026815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249026816, 3249045503, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249045504, 3249078271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249078272, 3249143807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249143808, 3249274879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249274880, 3249277759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249277760, 3249277775, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249277776, 3249290143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249290144, 3249290159, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249290160, 3249330111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249330112, 3249330143, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249330144, 3249350095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249350096, 3249350111, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249350112, 3249405951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249405952, 3249406975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249406976, 3249407231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249407232, 3249521279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249521280, 3249521343, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249521344, 3249537023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249537024, 3249537279, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249537280, 3249537791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249537792, 3249538047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249538048, 3249551359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249551360, 3249552639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249552640, 3249668095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249668096, 3249676799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249676800, 3249677055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249677056, 3249677311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249677312, 3249679103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249679104, 3249679359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249679360, 3249683455, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249683456, 3249684479, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249684480, 3249698047, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249698048, 3249698303, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249698304, 3249698815, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249698816, 3249699839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249699840, 3249700863, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249700864, 3249701631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249701632, 3249701887, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249701888, 3249702143, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249702144, 3249702399, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249702400, 3249702655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249702656, 3249702911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249702912, 3249703679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249703680, 3249703935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249703936, 3249704191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249704192, 3249704447, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249704448, 3249704703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249704704, 3249704959, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249704960, 3249705983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249705984, 3249706495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249706496, 3249707007, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249707008, 3249707519, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249707520, 3249708031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249708032, 3249708543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249708544, 3249709055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249709056, 3249709311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249709312, 3249709567, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249709568, 3249709823, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249709824, 3249710079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249710080, 3249710335, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249710336, 3249710591, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249710592, 3249710847, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249710848, 3249711103, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249711104, 3249711359, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249711360, 3249711871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249711872, 3249712127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249712128, 3249712383, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249712384, 3249712639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249712640, 3249712895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249712896, 3249713151, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249713152, 3249715199, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249715200, 3249715455, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249715456, 3249715711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249715712, 3249715967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249715968, 3249716223, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249716224, 3249716479, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249716480, 3249716735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249716736, 3249717247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249717248, 3249718271, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249718272, 3249719295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249719296, 3249720319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249720320, 3249721343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249721344, 3249721599, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249721600, 3249721855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249721856, 3249722623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249722624, 3249723135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249723136, 3249723391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249723392, 3249723647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249723648, 3249723903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249723904, 3249724159, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249724160, 3249724415, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249724416, 3249724671, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249724672, 3249724927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249724928, 3249725183, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249725184, 3249725439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249725440, 3249725951, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249725952, 3249726463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249726464, 3249726975, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249726976, 3249727487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249727488, 3249727999, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249728000, 3249728511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249728512, 3249729023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249729024, 3249729535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249729536, 3249730559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249730560, 3249731583, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249731584, 3249732607, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249732608, 3249733631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249733632, 3249799167, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3249799168, 3250061311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250061312, 3250099455, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250099456, 3250099711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250099712, 3250192383, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250192384, 3250246143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250246144, 3250246399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250246400, 3250323455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250323456, 3250323711, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250323712, 3250324479, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250324480, 3250324991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250324992, 3250325247, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250325248, 3250325503, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250325504, 3250326527, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250326528, 3250327039, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250327040, 3250331647, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250331648, 3250335743, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250335744, 3250339839, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250339840, 3250348031, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250348032, 3250356223, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250356224, 3250357247, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250357248, 3250357823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250357888, 3250357919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250357920, 3250357927, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250357928, 3250357959, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250357960, 3250358015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250358016, 3250358527, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250358528, 3250358783, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250358784, 3250359295, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250359296, 3250359807, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250359808, 3250362879, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250362880, 3250363391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250363392, 3250363903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250363904, 3250364415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250364416, 3250372607, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250372608, 3250373375, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250373376, 3250373631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250373632, 3250374143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250374144, 3250374655, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250374656, 3250374911, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250374912, 3250375679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250375680, 3250376703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250376704, 3250380799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250380800, 3250381055, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250381056, 3250386943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250386944, 3250387199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250387200, 3250387455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250387456, 3250387711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250387712, 3250387967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250387968, 3250388223, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250388224, 3250388479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250388480, 3250388735, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250388736, 3250388991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250388992, 3250405887, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250405888, 3250406399, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250406400, 3250406911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250406912, 3250407423, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250407424, 3250407935, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250407936, 3250408447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250408448, 3250408959, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250408960, 3250409471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250409472, 3250409983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250409984, 3250410495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250410496, 3250411007, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250411008, 3250411519, N'LT', N'Lithuania') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250411520, 3250412031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250412032, 3250412543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250412544, 3250413055, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250413056, 3250413567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250413568, 3250414079, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250414080, 3250414591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250414592, 3250415103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250415104, 3250415615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250415616, 3250416127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250416128, 3250417663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250417664, 3250418175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250418176, 3250418687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250418688, 3250419199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250419200, 3250419711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250419712, 3250420223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250420224, 3250420735, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250420736, 3250421247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250421248, 3250421759, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250421760, 3250422015, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250422016, 3250423295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250423296, 3250423551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250423552, 3250423807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250423808, 3250424063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250424064, 3250424319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250424320, 3250424831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250424832, 3250425343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250425344, 3250425599, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250425600, 3250425855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250425856, 3250426111, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250426112, 3250426367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250426368, 3250426623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250426624, 3250426879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250426880, 3250427135, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250427136, 3250427391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250427392, 3250429951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250429952, 3250438143, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250438144, 3250438207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250438208, 3250438399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250438400, 3250438431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250438432, 3250443543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250443544, 3250443551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250443552, 3250446335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250446336, 3250451583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250451584, 3250451599, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250451600, 3250454527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250454528, 3250585599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250585600, 3250585855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250585856, 3250588671, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250588672, 3250588799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250588800, 3250588927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250588928, 3250589183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250589184, 3250589439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250589440, 3250589471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250589472, 3250589503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250589504, 3250589567, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250589568, 3250589631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250589632, 3250589695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250589696, 3250593791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250593792, 3250594815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250594816, 3250595327, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250595328, 3250595839, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250595840, 3250596351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250596352, 3250597887, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250597888, 3250598399, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250598400, 3250598911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250598912, 3250599423, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250599424, 3250599935, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250599936, 3250600447, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250600448, 3250601471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250601472, 3250601983, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250601984, 3250610175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250610176, 3250618367, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250618368, 3250626559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250626560, 3250634751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250634752, 3250642943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250642944, 3250651135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250651136, 3250659327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250659328, 3250667519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250667520, 3250675711, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250675712, 3250683903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250683904, 3250692095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250692096, 3250692351, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250692352, 3250692607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250692608, 3250693375, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250693376, 3250694399, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250694400, 3250694655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250694656, 3250694911, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250694912, 3250695167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250695168, 3250695679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250695680, 3250697471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250697472, 3250697727, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250697728, 3250697983, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250697984, 3250698239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250698240, 3250698751, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250698752, 3250699775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250699776, 3250700287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250700288, 3250708479, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250708480, 3250716671, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250716672, 3250716927, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250716928, 3250718207, N'MA', N'Morocco') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250718208, 3250720767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250720768, 3250722047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250722048, 3250722303, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250722304, 3250724863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250724864, 3250733055, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250733056, 3250741247, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250741248, 3250749439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250749440, 3250749695, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250749696, 3250749951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250749952, 3250750463, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250750464, 3250751487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250751488, 3250751743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250751744, 3250751999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250752000, 3250752511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250752512, 3250753023, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250753024, 3250754047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250754048, 3250754303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250754304, 3250754479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250754480, 3250754495, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250754496, 3250754559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250754560, 3250755071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250755072, 3250755583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250755584, 3250755839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250755840, 3250756351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250756352, 3250756607, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250756608, 3250756863, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250756864, 3250757119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250757120, 3250757375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250757376, 3250757631, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250757632, 3250765823, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250765824, 3250782207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250782208, 3250847743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250847744, 3250978815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3250978816, 3251044351, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251044352, 3251109887, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251109888, 3251175423, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251175424, 3251176703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251176704, 3251176959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251176960, 3251177471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251177472, 3251179519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251179520, 3251180031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251180032, 3251180543, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251180544, 3251181055, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251181056, 3251181567, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251181568, 3251182079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251182080, 3251182591, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251182592, 3251183103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251183104, 3251183615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251183616, 3251183871, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251183872, 3251184127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251184128, 3251184383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251184384, 3251184639, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251184896, 3251185407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251185408, 3251185663, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251185664, 3251185919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251185920, 3251186175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251186176, 3251186431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251186432, 3251186687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251186688, 3251186943, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251186944, 3251187199, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251187200, 3251187455, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251187456, 3251187711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251187712, 3251188735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251188736, 3251189759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251189760, 3251190783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251190784, 3251191807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251191808, 3251192319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251192320, 3251192831, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251192832, 3251193343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251193344, 3251193855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251193856, 3251194367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251194368, 3251194879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251194880, 3251195391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251195392, 3251195903, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251195904, 3251196927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251196928, 3251197951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251197952, 3251198975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251198976, 3251199999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251200000, 3251200511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251200512, 3251201279, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251201280, 3251201535, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251201536, 3251201791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251201792, 3251202047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251202048, 3251202303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251202304, 3251202559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251202560, 3251202815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251202816, 3251203327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251203328, 3251203583, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251203584, 3251203839, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251203840, 3251204095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251204096, 3251204607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251204608, 3251205119, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251205120, 3251205631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251205632, 3251206143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251206144, 3251206655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251206656, 3251207167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251207168, 3251207679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251207680, 3251208191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251208192, 3251209215, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251209216, 3251210239, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251210240, 3251211263, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251211264, 3251212287, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251212288, 3251212415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251212416, 3251212543, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251212544, 3251212671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251212672, 3251212799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251212800, 3251212927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251212928, 3251213055, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213056, 3251213119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213120, 3251213151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213152, 3251213183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213184, 3251213215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213216, 3251213247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213248, 3251213311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213312, 3251213439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213440, 3251213503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213504, 3251213567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213568, 3251213631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213696, 3251213759, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213760, 3251213823, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213824, 3251213887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251213888, 3251214015, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214016, 3251214079, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214080, 3251214143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214208, 3251214271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214272, 3251214335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214336, 3251214463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214464, 3251214591, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214592, 3251214975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251214976, 3251215103, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251215104, 3251215231, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251215232, 3251215359, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251215360, 3251215487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251215488, 3251215615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251215616, 3251215743, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251215744, 3251215871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251215872, 3251215999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251216000, 3251216127, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251216128, 3251216255, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251216256, 3251216383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251216384, 3251216639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251216640, 3251216895, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251216896, 3251217151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251217408, 3251217663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251217664, 3251217919, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251217920, 3251218175, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251218176, 3251218431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251218432, 3251219199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251219200, 3251219455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251219456, 3251219711, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251219712, 3251220223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251220224, 3251220479, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251220480, 3251222527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251222528, 3251224575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251224576, 3251225087, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251225088, 3251225599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251225600, 3251226111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251226112, 3251226623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251226624, 3251227135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251227136, 3251227647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251227648, 3251228159, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251228160, 3251229695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251229696, 3251230719, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251230720, 3251231743, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251231744, 3251232767, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251232768, 3251233791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251233792, 3251234815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251234816, 3251235839, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251235840, 3251236863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251236864, 3251237887, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251237888, 3251238911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251238912, 3251239935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251239936, 3251240959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251240960, 3251241215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251241216, 3251243007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251243008, 3251245055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251245056, 3251245311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251245312, 3251245567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251245568, 3251245823, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251245824, 3251246079, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251246080, 3251246335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251246336, 3251246591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251246592, 3251246847, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251246848, 3251247103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251247104, 3251247359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251247360, 3251247871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251247872, 3251248127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251248128, 3251248383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251248384, 3251248639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251248640, 3251248895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251248896, 3251249151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251249152, 3251251199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251251200, 3251251455, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251251456, 3251251711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251251712, 3251251967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251251968, 3251252223, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251252224, 3251252479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251252480, 3251252735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251252736, 3251256831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251256832, 3251257343, N'HU', N'Hungary') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251257344, 3251259903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251259904, 3251260671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251260672, 3251261183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251261184, 3251261439, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251261440, 3251261951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251261952, 3251264255, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251264256, 3251264511, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251264512, 3251264767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251264768, 3251265023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251265024, 3251265279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251265280, 3251265535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251265536, 3251267839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251267840, 3251268095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251268096, 3251268351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251268352, 3251269119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251269120, 3251269375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251269376, 3251269631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251269632, 3251269887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251269888, 3251270143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251270144, 3251270399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251270400, 3251270655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251270656, 3251270911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251270912, 3251271167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251271168, 3251271423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251271424, 3251271679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251271680, 3251271935, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251271936, 3251272191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251272192, 3251272447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251272448, 3251272703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251272704, 3251272959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251272960, 3251273471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251273472, 3251290111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251290112, 3251302399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251302400, 3251306239, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251306240, 3251306495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251306496, 3251306751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251306752, 3251307007, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251307008, 3251307519, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251307520, 3251307775, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251307776, 3251308031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251308032, 3251310591, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251310592, 3251311103, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251311104, 3251311615, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251311616, 3251312127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251312128, 3251312383, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251312384, 3251312639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251312640, 3251314175, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251314176, 3251314687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251314688, 3251315711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251315712, 3251316735, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251322880, 3251331071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251331072, 3251339263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251339264, 3251347455, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251347456, 3251355647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251355648, 3251356159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251356160, 3251356671, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251356672, 3251357183, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251357184, 3251357695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251357696, 3251358207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251358208, 3251358719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251358720, 3251359231, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251359232, 3251360255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251360256, 3251360767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251360768, 3251361279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251361280, 3251361791, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251361792, 3251362303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251362304, 3251362815, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251362816, 3251363327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251363328, 3251363839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251363840, 3251364095, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251364096, 3251364607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251364608, 3251364863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251364864, 3251366911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251366912, 3251367423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251367424, 3251367935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251367936, 3251372031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251372032, 3251604447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251604448, 3251604455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251604456, 3251634175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251634176, 3251661311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251661312, 3251661567, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251661568, 3251672575, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251672576, 3251672831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251672832, 3251674879, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251674880, 3251675135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251675136, 3251705343, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251705344, 3251705599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251705600, 3251707391, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251707392, 3251707647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251707648, 3251710207, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251710208, 3251710215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251710216, 3251710223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251710224, 3251710239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251710240, 3251734271, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251734272, 3251734527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251734528, 3251734783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251734784, 3251765247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251765248, 3251765503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251765504, 3251774207, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251774208, 3251774463, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251774464, 3251783423, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251783424, 3251783679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251783680, 3251795455, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251795456, 3251795711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251795712, 3251802879, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251802880, 3251803135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251803136, 3251806207, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251806208, 3251815167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251815168, 3251815679, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251815680, 3251818495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251818496, 3251850495, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251850496, 3251850751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251850752, 3251851007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251851008, 3251896319, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251896320, 3251927991, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251927992, 3251927999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3251928000, 3252015687, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252015688, 3252015695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252015696, 3252289535, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252289536, 3252291327, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252291328, 3252291583, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252291584, 3252293631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252293632, 3252297983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252297984, 3252313599, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252313600, 3252314111, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252314112, 3252314623, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252314624, 3252314879, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252314880, 3252315135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252315136, 3252316415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252316416, 3252316671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252316672, 3252318463, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252318464, 3252318719, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252318720, 3252318975, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252318976, 3252319231, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252319232, 3252319743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252319744, 3252321791, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252321792, 3252322303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252330496, 3252338687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252338688, 3252340735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252340736, 3252340991, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252340992, 3252342015, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252342016, 3252346367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252346368, 3252346623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252346624, 3252355071, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252355072, 3252355327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252355328, 3252358911, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252358912, 3252358927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252358928, 3252359167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252359168, 3252362239, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252362240, 3252362495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252362496, 3252362751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252362752, 3252363263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252363264, 3252379647, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252387840, 3252404223, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252404224, 3252405759, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252405760, 3252408319, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408320, 3252408339, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408340, 3252408559, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408560, 3252408575, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408576, 3252408607, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408608, 3252408639, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408640, 3252408655, N'CF', N'Central African Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408656, 3252408703, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408704, 3252408711, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408712, 3252408831, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408832, 3252408839, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408840, 3252408847, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408848, 3252408855, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408856, 3252408863, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408864, 3252408871, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408872, 3252408959, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408960, 3252408983, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252408984, 3252409087, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409088, 3252409095, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409096, 3252409103, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409104, 3252409111, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409112, 3252409119, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409120, 3252409127, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409128, 3252409135, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409136, 3252409143, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409144, 3252409215, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409216, 3252409223, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409224, 3252409231, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409232, 3252409263, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409264, 3252409343, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409344, 3252409375, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409376, 3252409407, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409408, 3252409439, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409440, 3252409471, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409472, 3252409487, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409488, 3252409599, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409600, 3252409663, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409664, 3252409855, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252409856, 3252410367, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252410368, 3252410623, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252410624, 3252410783, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252410784, 3252410879, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252410880, 3252411007, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411008, 3252411135, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411136, 3252411263, N'IQ', N'Iraq') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411264, 3252411391, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411392, 3252411647, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411648, 3252411663, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411664, 3252411711, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411712, 3252411743, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411744, 3252411775, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411776, 3252411791, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411792, 3252411839, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411840, 3252411855, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411856, 3252411903, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252411904, 3252412159, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252412160, 3252412415, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252412416, 3252412479, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252412480, 3252412671, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252412672, 3252412799, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252412800, 3252412927, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252412928, 3252413439, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252413440, 3252413823, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252413824, 3252413951, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252413952, 3252414223, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414224, 3252414239, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414240, 3252414271, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414272, 3252414463, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414464, 3252414479, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414480, 3252414495, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414496, 3252414527, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414528, 3252414607, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414608, 3252414639, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414640, 3252414655, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414656, 3252414719, N'ER', N'Eritrea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414720, 3252414975, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252414976, 3252415103, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415104, 3252415231, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415232, 3252415359, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415360, 3252415487, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415488, 3252415503, N'SD', N'Sudan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415504, 3252415519, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415520, 3252415535, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415536, 3252415743, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415744, 3252415839, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415840, 3252415967, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252415968, 3252415999, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252416000, 3252416255, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252416256, 3252416511, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252416512, 3252416575, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252416576, 3252416639, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252416640, 3252416703, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252416704, 3252417023, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252417024, 3252417407, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252417408, 3252417535, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252417536, 3252417855, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252417856, 3252417919, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252417920, 3252417935, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252417936, 3252418047, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418048, 3252418079, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418080, 3252418175, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418176, 3252418207, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418208, 3252418239, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418240, 3252418303, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418304, 3252418559, N'CF', N'Central African Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418560, 3252418623, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418624, 3252418687, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418688, 3252418751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418752, 3252418815, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418816, 3252418847, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418848, 3252418943, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252418944, 3252419007, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419008, 3252419071, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419072, 3252419087, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419088, 3252419103, N'ER', N'Eritrea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419104, 3252419119, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419120, 3252419127, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419128, 3252419135, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419136, 3252419167, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419168, 3252419199, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419200, 3252419215, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419216, 3252419247, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419248, 3252419263, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419264, 3252419279, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419280, 3252419311, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419312, 3252419327, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419328, 3252419343, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419344, 3252419359, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419360, 3252419423, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419424, 3252419583, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419584, 3252419711, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252419712, 3252420095, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252420096, 3252420119, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252420120, 3252420351, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252420352, 3252420607, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252420608, 3252421119, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252421120, 3252424703, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424704, 3252424719, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424720, 3252424735, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424736, 3252424767, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424768, 3252424799, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424800, 3252424815, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424816, 3252424959, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424960, 3252424967, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252424968, 3252425087, N'LT', N'Lithuania') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425088, 3252425215, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425216, 3252425343, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425344, 3252425471, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425472, 3252425543, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425544, 3252425727, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425728, 3252425855, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425856, 3252425983, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252425984, 3252426239, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252426240, 3252426495, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252426496, 3252426751, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252426752, 3252427263, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252427264, 3252427519, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252427520, 3252427775, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252427776, 3252428287, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252428288, 3252428351, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252428352, 3252428543, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252428544, 3252428615, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252428616, 3252428799, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252428800, 3252428887, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252428888, 3252428895, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252428896, 3252429327, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252429328, 3252429343, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252429344, 3252429567, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252429568, 3252429711, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252429712, 3252429823, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252429824, 3252429951, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252429952, 3252430079, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252430080, 3252430335, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252430336, 3252430463, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252430464, 3252430559, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252430560, 3252430591, N'BF', N'Burkina Faso') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252430592, 3252430847, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252430848, 3252431359, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252431360, 3252431871, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252431872, 3252432127, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432128, 3252432255, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432256, 3252432383, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432384, 3252432399, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432400, 3252432447, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432448, 3252432463, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432464, 3252432511, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432512, 3252432527, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432528, 3252432575, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432576, 3252432591, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432592, 3252432639, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432640, 3252432767, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432768, 3252432895, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252432896, 3252433151, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252433152, 3252433407, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252433408, 3252433663, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252433664, 3252433919, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252433920, 3252434175, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252434176, 3252434431, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252434432, 3252434687, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252434688, 3252434935, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252434936, 3252434943, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252434944, 3252435199, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252435200, 3252435231, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252435232, 3252435455, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252435456, 3252435711, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252435712, 3252435839, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252435840, 3252435967, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252435968, 3252436223, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252436224, 3252436479, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252436480, 3252436735, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252436736, 3252436991, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252436992, 3252437759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252437760, 3252438015, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252438016, 3252438271, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252438272, 3252438335, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252438336, 3252438527, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252438528, 3252438783, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252438784, 3252438911, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252438912, 3252439039, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252439040, 3252439295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252439296, 3252439391, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252439392, 3252439551, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252439552, 3252439583, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252439584, 3252439807, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252439808, 3252439839, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252439840, 3252440063, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252440064, 3252440319, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252440320, 3252440383, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252440384, 3252440575, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252440576, 3252441087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252441088, 3252441599, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252441600, 3252442111, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252442112, 3252442239, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252442240, 3252442303, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252442304, 3252442367, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252442368, 3252442623, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252442624, 3252442751, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252442752, 3252442783, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252442784, 3252443263, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252443264, 3252443327, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252443328, 3252444287, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252444288, 3252444399, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252444400, 3252444927, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252444928, 3252445183, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252445184, 3252445263, N'GN', N'Guinea') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252445264, 3252446207, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252446208, 3252446591, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252446592, 3252446703, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252446704, 3252446711, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252446712, 3252446719, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252446720, 3252446751, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252446752, 3252446815, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252446816, 3252447231, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252447232, 3252447999, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252448000, 3252448255, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252448256, 3252448511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252448512, 3252448767, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252448768, 3252449279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252449280, 3252449535, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252449536, 3252449607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252449608, 3252449791, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252449792, 3252450047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252450048, 3252450303, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252450304, 3252450831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252450832, 3252451071, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252451072, 3252451327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252451328, 3252451583, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252451584, 3252451647, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252451648, 3252451839, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252451840, 3252451855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252451856, 3252451967, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252451968, 3252451999, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452000, 3252452095, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452096, 3252452127, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452128, 3252452159, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452160, 3252452175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452176, 3252452191, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452192, 3252452215, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452216, 3252452223, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452224, 3252452239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452240, 3252452287, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452288, 3252452415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452416, 3252452479, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452480, 3252452487, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452488, 3252452607, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452608, 3252452735, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452736, 3252452863, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452864, 3252452911, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252452912, 3252453375, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252453376, 3252454527, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252454528, 3252454911, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252454912, 3252455167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252455168, 3252455935, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252455936, 3252456447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252456448, 3252456959, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252456960, 3252457215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252457216, 3252457471, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252457472, 3252459519, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252459520, 3252465663, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252465664, 3252465919, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252465920, 3252465951, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252465952, 3252465983, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252465984, 3252466047, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252466048, 3252466175, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252466176, 3252466687, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252466688, 3252467199, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252467200, 3252467455, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252467456, 3252468031, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252468032, 3252468223, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252468224, 3252468479, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252468480, 3252468735, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252468736, 3252468991, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252468992, 3252469247, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252469248, 3252472159, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252472160, 3252472831, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252472832, 3252473343, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252473344, 3252473855, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252473856, 3252474879, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252474880, 3252475407, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252475408, 3252476159, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252476160, 3252476415, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252476416, 3252476671, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252476672, 3252476799, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252476800, 3252477183, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252477184, 3252477311, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252477312, 3252477439, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252477440, 3252477447, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252477448, 3252477695, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252477696, 3252477951, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252477952, 3252478975, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252478976, 3252479039, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479040, 3252479103, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479104, 3252479199, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479200, 3252479231, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479232, 3252479295, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479296, 3252479359, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479360, 3252479375, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479376, 3252479487, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479488, 3252479615, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479616, 3252479743, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479744, 3252479871, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252479872, 3252479999, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252480000, 3252480271, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252480272, 3252480511, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252480512, 3252480639, N'CG', N'Congo') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252480640, 3252481023, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252481024, 3252481535, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252481536, 3252482047, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252482048, 3252482095, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252482096, 3252486143, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252486144, 3252490239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252490240, 3252507135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252507136, 3252507647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252507648, 3252509951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252509952, 3252510719, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252510720, 3252514815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252514816, 3252515071, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252515072, 3252515327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252515328, 3252515583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252515584, 3252515839, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252515840, 3252516095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252516096, 3252516351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252516352, 3252516607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252516608, 3252516863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252516864, 3252517119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252517120, 3252517375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252517376, 3252517631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252517632, 3252517887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252517888, 3252518143, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252518144, 3252518399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252518400, 3252518655, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252518656, 3252518911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252518912, 3252527103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252527104, 3252535295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252535296, 3252539391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252539392, 3252540415, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252540416, 3252541951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252541952, 3252542207, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252542208, 3252551679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252551680, 3252567295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252567296, 3252567551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252567552, 3252567807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252567808, 3252568063, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252568064, 3252579327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252579328, 3252579583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252579584, 3252579839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252579840, 3252580095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252580096, 3252580351, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252580352, 3252584447, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252584448, 3252584703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252584704, 3252584959, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252584960, 3252585215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252585216, 3252585471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252585472, 3252585727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252585728, 3252585983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252585984, 3252586239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252586240, 3252586495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252586496, 3252586751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252586752, 3252587007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252587008, 3252587263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252587264, 3252587519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252587520, 3252587775, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252587776, 3252588031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252588032, 3252600319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252600320, 3252600831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252600832, 3252616703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252616704, 3252616959, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252616960, 3252617215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252617216, 3252617471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252617472, 3252636671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252636672, 3252636927, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252636928, 3252637183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252637184, 3252637695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252637696, 3252642303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252642304, 3252642559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252642560, 3252642815, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252642816, 3252643071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252643072, 3252643327, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252643328, 3252643583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252643584, 3252643839, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252643840, 3252682751, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252682752, 3252813823, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252813824, 3252830207, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252830208, 3252832255, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252832256, 3252832767, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252832768, 3252834303, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252834304, 3252862975, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252862976, 3252879359, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252879360, 3252895743, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252895744, 3252903935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252912128, 3252912383, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252912384, 3252912639, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252912640, 3252912895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252912896, 3252913151, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252913152, 3252913407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252913408, 3252913663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252913664, 3252913919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252913920, 3252914175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252914176, 3252916223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252916224, 3252920319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252920320, 3252928511, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252928512, 3252929535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252929536, 3252930559, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252930560, 3252931071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252931072, 3252931583, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252931584, 3252932095, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252932096, 3252933631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252933632, 3252934655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252934656, 3252936703, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252936704, 3252937215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252937216, 3252937727, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252937728, 3252938239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252938240, 3252938751, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252938752, 3252939263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252939264, 3252939775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252939776, 3252940287, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252940288, 3252940799, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252940800, 3252941311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252941312, 3252941823, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252941824, 3252942847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252942848, 3252943359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252943360, 3252943871, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252943872, 3252944383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252944384, 3252944895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3252944896, 3253010431, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253010432, 3253075967, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253075968, 3253207039, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253207040, 3253223679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253223680, 3253223935, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253223936, 3253230591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253230592, 3253230847, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253230848, 3253231103, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253231104, 3253247999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253248000, 3253248255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253248256, 3253248511, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253248512, 3253264383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253264384, 3253264895, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253264896, 3253265407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253265408, 3253265919, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253265920, 3253270527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253270528, 3253271551, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253271552, 3253338111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253338112, 3253469183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253469184, 3253471231, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253471232, 3253534719, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253534720, 3253600255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253600256, 3253601279, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253601280, 3253602303, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253602304, 3253603327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253603328, 3253605375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253605376, 3253606399, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253606400, 3253607423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253607424, 3253608447, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253608448, 3253609471, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253609472, 3253610495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253610496, 3253611519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253611520, 3253612543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253612544, 3253613567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253613568, 3253614591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253614592, 3253615615, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253615616, 3253616639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253616640, 3253617663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253617664, 3253618687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253618688, 3253619711, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253619712, 3253620735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253620736, 3253622783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253622784, 3253623807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253623808, 3253624831, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253624832, 3253625855, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253625856, 3253626879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253626880, 3253627903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253627904, 3253628927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253628928, 3253629951, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253629952, 3253630975, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253630976, 3253631999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253632000, 3253633023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253633024, 3253635071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253635072, 3253636095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253636096, 3253637119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253637120, 3253638143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253638144, 3253639167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253639168, 3253640191, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253640192, 3253641215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253641216, 3253642239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253642240, 3253643263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253643264, 3253645311, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253645312, 3253646335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253646336, 3253647359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253647360, 3253648383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253648384, 3253649407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253649408, 3253650431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253650432, 3253651455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253651456, 3253652479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253652480, 3253653503, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253653504, 3253654527, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253654528, 3253657599, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253657600, 3253658623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253658624, 3253659647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253659648, 3253660671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253660672, 3253661695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253661696, 3253662719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253662720, 3253663743, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253663744, 3253664767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253664768, 3253665791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253665792, 3253666815, N'CZ', N'Czech Republic') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253666816, 3253667839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253667840, 3253668863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253668864, 3253669887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253669888, 3253670911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253670912, 3253671935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253671936, 3253672959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253672960, 3253673983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253673984, 3253675007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253675008, 3253676031, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253676032, 3253677055, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253677056, 3253678079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253678080, 3253679103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253679104, 3253680127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253680128, 3253682175, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253682176, 3253683199, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253683200, 3253685247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253685248, 3253686271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253686272, 3253687295, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253687296, 3253688319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253688320, 3253690367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253690368, 3253691391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253691392, 3253692415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253692416, 3253693439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253693440, 3253694463, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253694464, 3253695487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253695488, 3253696511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253696512, 3253697535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253697536, 3253698559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253698560, 3253699071, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253699072, 3253699583, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253699584, 3253700095, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253700096, 3253700607, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253700608, 3253701119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253701120, 3253702143, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253702144, 3253702655, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253702656, 3253703679, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253703680, 3253704191, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253704192, 3253704703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253704704, 3253705215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253705216, 3253705727, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253705728, 3253706239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253706240, 3253706751, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253706752, 3253707263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253707264, 3253707775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253707776, 3253708287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253708288, 3253708799, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253708800, 3253709311, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253709312, 3253709823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253709824, 3253710335, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253710336, 3253710847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253710848, 3253711359, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253711360, 3253712383, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253712384, 3253712895, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253712896, 3253713407, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253713408, 3253713919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253713920, 3253714431, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253714432, 3253714943, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253714944, 3253715455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253715456, 3253715967, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253715968, 3253716479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253716480, 3253716991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253716992, 3253717503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253717504, 3253718015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253718016, 3253719551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253719552, 3253720063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253720064, 3253720575, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253720576, 3253721087, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253721088, 3253721599, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253721600, 3253722111, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253722112, 3253722623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253722624, 3253723135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253723136, 3253723647, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253723648, 3253724159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253724160, 3253724671, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253724672, 3253725695, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253725696, 3253726207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253726208, 3253726719, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253726720, 3253727231, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253727232, 3253727743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253727744, 3253728255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253728256, 3253728767, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253728768, 3253729279, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253729280, 3253729791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253729792, 3253730303, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253730304, 3253730815, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253730816, 3253731327, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253731328, 3253796863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253796864, 3253862399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253862400, 3253862655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253862656, 3253882879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253882880, 3253886975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253886976, 3253887231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253887232, 3253887487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253887488, 3253887743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253887744, 3253887999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253888000, 3253888255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253888256, 3253888511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253888512, 3253888767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253888768, 3253889023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253889024, 3253889279, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253889280, 3253889535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253889536, 3253889791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253889792, 3253890303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253890304, 3253890559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253890560, 3253890815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253890816, 3253891071, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253891072, 3253891327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253891328, 3253891583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253891584, 3253891839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253891840, 3253892351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253892352, 3253892607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253892608, 3253892863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253892864, 3253893119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253893120, 3253893375, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253893376, 3253893631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253893632, 3253893887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253893888, 3253894143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253894144, 3253894399, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253894400, 3253894655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253894656, 3253894911, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253894912, 3253895167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253895168, 3253911551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253911552, 3253919743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253919744, 3253923839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253923840, 3253927935, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253927936, 3253961727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253961728, 3253962239, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253962240, 3253962751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253962752, 3253963263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253963264, 3253963775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253963776, 3253964287, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253964288, 3253964799, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253964800, 3253965311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253965312, 3253966335, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253966336, 3253966847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253966848, 3253967359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253967360, 3253967871, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253967872, 3253968895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253968896, 3253969407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253969408, 3253969919, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253969920, 3253970431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253970432, 3253970687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253970688, 3253970943, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253970944, 3253972991, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253972992, 3253974783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253974784, 3253974847, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253974848, 3253974911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253974912, 3253974975, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253974976, 3253975039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253975040, 3253977087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253977088, 3253985279, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253985280, 3253993471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3253993472, 3254124543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254124544, 3254156799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254156800, 3254157055, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254157056, 3254177279, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254177280, 3254177535, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254177536, 3254255615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254255616, 3254485503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485504, 3254485799, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485800, 3254485807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485808, 3254485819, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485820, 3254485820, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485821, 3254485821, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485822, 3254485822, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485823, 3254485855, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485856, 3254485859, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485860, 3254485887, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254485888, 3254486527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486528, 3254486543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486544, 3254486559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486560, 3254486591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486592, 3254486655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486656, 3254486671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486672, 3254486687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486688, 3254486719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486720, 3254486735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486736, 3254486767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486768, 3254486783, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254486784, 3254487039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487040, 3254487199, N'KM', N'Comoros') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487200, 3254487263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487264, 3254487295, N'KM', N'Comoros') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487296, 3254487419, N'CF', N'Central African Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487420, 3254487551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487552, 3254487803, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487804, 3254487807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487808, 3254487855, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487856, 3254487863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254487864, 3254488063, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488064, 3254488447, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488448, 3254488450, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488451, 3254488515, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488516, 3254488516, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488517, 3254488518, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488519, 3254488521, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488522, 3254488548, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488549, 3254488550, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488551, 3254488831, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254488832, 3254489087, N'DJ', N'Djibouti') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489088, 3254489343, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489344, 3254489365, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489366, 3254489367, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489368, 3254489369, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489370, 3254489370, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489371, 3254489373, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489374, 3254489375, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489376, 3254489407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489408, 3254489439, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489440, 3254489443, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489444, 3254489455, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489456, 3254489463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489464, 3254489519, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489520, 3254489535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489536, 3254489567, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489568, 3254489599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489600, 3254489855, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254489856, 3254490111, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254490112, 3254490367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254490368, 3254490623, N'CF', N'Central African Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254490624, 3254491135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254491136, 3254491391, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254491392, 3254491607, N'GQ', N'Equatorial Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254491608, 3254491615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254491616, 3254491647, N'GQ', N'Equatorial Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254491648, 3254491903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254491904, 3254492031, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254492032, 3254492159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254492160, 3254492671, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254492672, 3254492927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254492928, 3254493183, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493184, 3254493253, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493254, 3254493311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493312, 3254493323, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493324, 3254493343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493344, 3254493354, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493355, 3254493375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493376, 3254493410, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493411, 3254493439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493440, 3254493695, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254493696, 3254494527, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254494528, 3254494719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254494720, 3254494735, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254494736, 3254494743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254494744, 3254494803, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254494804, 3254494807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254494808, 3254494975, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254494976, 3254495087, N'DJ', N'Djibouti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254495088, 3254495231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254495232, 3254495487, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254495488, 3254495743, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254495744, 3254496255, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254496256, 3254496511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254496512, 3254496527, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254496528, 3254496767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254496768, 3254497247, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254497248, 3254508031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254508032, 3254508543, N'GQ', N'Equatorial Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254508544, 3254508799, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254508800, 3254508831, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254508832, 3254509055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254509056, 3254509567, N'GQ', N'Equatorial Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254509568, 3254509783, N'DJ', N'Djibouti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254509784, 3254510339, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510340, 3254510359, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510360, 3254510375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510376, 3254510407, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510408, 3254510420, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510421, 3254510421, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510422, 3254510423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510424, 3254510427, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510428, 3254510431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510432, 3254510432, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510433, 3254510440, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510441, 3254510441, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510442, 3254510443, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510444, 3254510451, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510452, 3254510455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510456, 3254510519, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510520, 3254510527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510528, 3254510559, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510560, 3254510563, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510564, 3254510847, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254510848, 3254521855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254521856, 3254522367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254522368, 3254523567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254523568, 3254523575, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254523576, 3254523599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254523600, 3254523607, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254523608, 3254523615, N'GQ', N'Equatorial Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254523616, 3254550527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254550528, 3254550783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254550784, 3254551039, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254551040, 3254551295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254551296, 3254551551, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254551552, 3254551807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254551808, 3254552063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254552064, 3254552319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254552320, 3254552831, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254552832, 3254553087, N'HK', N'Hong Kong') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254553088, 3254553343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254553344, 3254553599, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254553600, 3254554879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254554880, 3254555135, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254555136, 3254555391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254555392, 3254555647, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254555648, 3254557439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254557440, 3254557695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254557696, 3254576383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254576384, 3254576543, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254576544, 3254583296, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254583297, 3254583300, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254583301, 3254583302, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254583303, 3254583551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254583552, 3254583567, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254583568, 3254583583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254583584, 3254623743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254623744, 3254624255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254624256, 3254648831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254648832, 3254648895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254648896, 3254649087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254649088, 3254649855, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254649856, 3254650879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254650880, 3254653439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254653440, 3254654847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254654848, 3254654975, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254654976, 3254655743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254655744, 3254656255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254656256, 3254656511, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254656512, 3254656767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254656768, 3254657023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254657024, 3254665215, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254665216, 3254697983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254697984, 3254698495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254698496, 3254699007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254699008, 3254699519, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254699520, 3254700031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254700032, 3254700543, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254700544, 3254701055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254701056, 3254701567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254701568, 3254702079, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254702080, 3254702591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254702592, 3254703103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254703104, 3254703615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254703616, 3254704127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254704128, 3254705663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254705664, 3254706175, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254706176, 3254706687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254706688, 3254707199, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254707200, 3254707711, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254707712, 3254708223, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254708224, 3254709247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254709248, 3254710271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254710272, 3254710783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254710784, 3254711295, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254711296, 3254711807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254711808, 3254712831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254712832, 3254713343, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254713344, 3254713855, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254713856, 3254714367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254714368, 3254779903, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254845440, 3254910975, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254910976, 3254959623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254959624, 3254959631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254959632, 3254994734, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254994735, 3254994735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3254994736, 3255000053, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255000054, 3255000054, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255000055, 3255006719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255006720, 3255006975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255006976, 3255011005, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255011006, 3255011006, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255011007, 3255120639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255120640, 3255120895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255120896, 3255123711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255123712, 3255123967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255123968, 3255172351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255172352, 3255172607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255172608, 3255173119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255173120, 3255173631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255173632, 3255173647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255173648, 3255173711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255173712, 3255173759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255173760, 3255173823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255173824, 3255173839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255173840, 3255174151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174152, 3255174159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174160, 3255174167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174168, 3255174199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174200, 3255174207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174208, 3255174215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174216, 3255174247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174248, 3255174271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174272, 3255174279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174280, 3255174311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174312, 3255174319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174320, 3255174327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174328, 3255174335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174336, 3255174351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174352, 3255174359, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174360, 3255174375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174376, 3255174383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174384, 3255174399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255174400, 3255175167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175168, 3255175199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175200, 3255175263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175264, 3255175279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175280, 3255175295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175296, 3255175311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175312, 3255175327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175328, 3255175431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175432, 3255175447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175448, 3255175455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175456, 3255175503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175504, 3255175511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175512, 3255175535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175536, 3255175551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175552, 3255175559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175560, 3255175591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175592, 3255175607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175608, 3255175679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175680, 3255175935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255175936, 3255176191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255176192, 3255177215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255177216, 3255177471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255177472, 3255177855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255177856, 3255177983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255177984, 3255187199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255187200, 3255187455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255187456, 3255187711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255187712, 3255188479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255188480, 3255191807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255191808, 3255192319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255192320, 3255193855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255193856, 3255193887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255193888, 3255193959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255193960, 3255193967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255193968, 3255193975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255193976, 3255193983, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255193984, 3255194007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194008, 3255194015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194016, 3255194039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194040, 3255194055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194056, 3255194431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194432, 3255194495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194496, 3255194559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194560, 3255194623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194624, 3255194703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194704, 3255194719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194720, 3255194815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194816, 3255194879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255194880, 3255205887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255205888, 3255214079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255214080, 3255222271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255222272, 3255223295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255223296, 3255224319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255224320, 3255225343, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255225344, 3255226367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255226368, 3255227391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255227392, 3255228415, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255228416, 3255230463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255230464, 3255230719, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255230720, 3255230975, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255230976, 3255231231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255231232, 3255231487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255231488, 3255231743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255231744, 3255231999, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255232000, 3255232255, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255232256, 3255233023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255233024, 3255233279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255233280, 3255233535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255233536, 3255233791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255233792, 3255234047, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255234048, 3255234303, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255234304, 3255234559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255234560, 3255234815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255234816, 3255235071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255235072, 3255235327, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255235328, 3255235583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255235584, 3255235839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255235840, 3255236351, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255236352, 3255236607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255236608, 3255236863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255236864, 3255237119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255237120, 3255237375, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255237376, 3255237887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255237888, 3255238143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255238144, 3255238399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255238400, 3255238655, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255238656, 3255240991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255240992, 3255241007, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255241008, 3255241143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255241144, 3255241151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255241152, 3255243583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255243584, 3255243591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255243592, 3255243679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255243680, 3255243711, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255243712, 3255245599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255245600, 3255245631, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255245632, 3255245687, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255245688, 3255245695, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255245696, 3255246591, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255246592, 3255246623, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255246624, 3255247455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255247456, 3255247487, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255247488, 3255247615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255247616, 3255247631, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255247632, 3255247647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255247648, 3255247663, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255247664, 3255248127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255248128, 3255248383, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255248384, 3255249295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255249296, 3255249311, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255249312, 3255252487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255252488, 3255252495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255252496, 3255252559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255252560, 3255252575, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255252576, 3255254847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255254848, 3255254879, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255254880, 3255254927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255254928, 3255254943, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255254944, 3255259903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255259904, 3255259911, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255259912, 3255259919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255259920, 3255259927, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255259928, 3255260095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255260096, 3255260127, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255260128, 3255260319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255260320, 3255260335, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255260336, 3255260343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255260344, 3255260347, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255260348, 3255261519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255261520, 3255261535, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255261536, 3255261679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255261680, 3255261695, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255261696, 3255262799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255262800, 3255262815, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255262816, 3255263295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255263296, 3255263327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255263328, 3255263423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255263424, 3255263455, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255263456, 3255266055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255266056, 3255266063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255266064, 3255270431, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255270432, 3255270463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255270464, 3255271359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255271360, 3255271391, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255271392, 3255276223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255276224, 3255276255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255276256, 3255278855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255278856, 3255278863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255278864, 3255279087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255279088, 3255279103, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255279104, 3255279131, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255279132, 3255279135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255279136, 3255279167, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255279168, 3255280047, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255280048, 3255280055, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255280056, 3255281311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255281312, 3255281343, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255281344, 3255282663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255282664, 3255282671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255282672, 3255283871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255283872, 3255283903, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255283904, 3255283927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255283928, 3255283931, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255283932, 3255284239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255284240, 3255284255, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255284256, 3255285535, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255285536, 3255285567, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255285568, 3255286095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255286096, 3255286103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255286104, 3255286111, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255286112, 3255286279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255286280, 3255286287, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255286288, 3255288735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255288736, 3255288799, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255288800, 3255288831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255288832, 3255289343, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255289344, 3255290143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255290144, 3255290175, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255290176, 3255290271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255290272, 3255290287, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255290288, 3255290351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255290352, 3255290367, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255290368, 3255290879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255290880, 3255291391, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291392, 3255291399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291400, 3255291423, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291424, 3255291615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291616, 3255291623, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291624, 3255291767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291768, 3255291775, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291776, 3255291839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291840, 3255291855, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291856, 3255291871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291872, 3255291887, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291888, 3255291983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255291984, 3255291999, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255292000, 3255292311, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255292312, 3255292319, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255292320, 3255297015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255297016, 3255297023, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255297024, 3255300319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255300320, 3255300351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255300352, 3255300803, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255300804, 3255300807, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255300808, 3255304191, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255304192, 3255304447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255304448, 3255311359, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255311360, 3255311615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255311616, 3255311871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255311872, 3255312127, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255312128, 3255312383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255312384, 3255315455, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255315456, 3255315711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255315712, 3255316223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255316224, 3255316479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255316480, 3255316991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255316992, 3255317247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255317248, 3255317503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255317504, 3255317759, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255317760, 3255318015, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255318016, 3255318271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255318272, 3255318527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255318528, 3255318783, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255318784, 3255319295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255319552, 3255319807, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255319808, 3255320063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255320064, 3255320319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255320320, 3255320575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255328768, 3255336959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255336960, 3255345151, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255345152, 3255353343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255353344, 3255361535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255361536, 3255369727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255386112, 3255386623, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255386624, 3255387135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255387136, 3255388159, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255388160, 3255388671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255388672, 3255389183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255389184, 3255389695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255389696, 3255390207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255390208, 3255390719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255390720, 3255391231, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255391232, 3255391743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255391744, 3255392767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255392768, 3255393791, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255393792, 3255394303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255394304, 3255399679, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255399680, 3255400447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255400448, 3255401471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255401472, 3255412303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255412304, 3255412339, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255412340, 3255412479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255412480, 3255412735, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255412736, 3255413247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255413248, 3255413759, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255413760, 3255414271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255414272, 3255414527, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255414528, 3255414783, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255414784, 3255415807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255415808, 3255416319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255416320, 3255416831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255416832, 3255417855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255417856, 3255418879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255418880, 3255422975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255422976, 3255426047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255426048, 3255426559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255426560, 3255426815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255426816, 3255427071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255427072, 3255435263, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255435264, 3255436543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255436544, 3255436799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255436800, 3255437055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255437056, 3255438335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255438336, 3255446527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255446528, 3255446783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255446784, 3255447551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255447552, 3255449599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255449600, 3255450111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255450112, 3255450367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255450368, 3255450623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255450624, 3255451135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255451136, 3255452671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255452672, 3255468031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255468032, 3255468543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255468544, 3255469055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255469056, 3255469567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255469568, 3255469823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255469824, 3255470079, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255470080, 3255470591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255470592, 3255470847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255470848, 3255471103, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255471104, 3255471615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255471616, 3255471871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255471872, 3255472127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255472128, 3255472383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255472384, 3255472639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255472640, 3255472895, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255472896, 3255473151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255473152, 3255473407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255473408, 3255473663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255473664, 3255473919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255473920, 3255474175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255474176, 3255476735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255476736, 3255476991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255476992, 3255477247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255477248, 3255477503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255477504, 3255477759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255477760, 3255478271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255478272, 3255478783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255478784, 3255479039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255479040, 3255480575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255480576, 3255480831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255480832, 3255482367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482368, 3255482623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482624, 3255482815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482816, 3255482831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482832, 3255482839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482840, 3255482847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482848, 3255482863, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482864, 3255482879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255482880, 3255483135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255483136, 3255484415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255484416, 3255484671, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255484672, 3255484927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255484928, 3255485183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255485184, 3255485439, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255485440, 3255486463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255486464, 3255486719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255486720, 3255486975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255486976, 3255487487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255487488, 3255487743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255487744, 3255487999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255488000, 3255488255, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255488256, 3255488511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255488512, 3255489535, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255489536, 3255489887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255489888, 3255490047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255490048, 3255490559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255490560, 3255492607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255492608, 3255496703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255496704, 3255497727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255497728, 3255497983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255497984, 3255498239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255498240, 3255498495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255498496, 3255498751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255498752, 3255500799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255500800, 3255544319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255544320, 3255544575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255544576, 3255544831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255544832, 3255558143, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255558144, 3255558399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255558400, 3255565823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255565824, 3255566079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255566080, 3255566335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255566336, 3255599103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255599104, 3255615487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255615488, 3255623679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255623680, 3255631871, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255631872, 3255660287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255660288, 3255660543, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255660544, 3255666431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255666432, 3255666687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255666688, 3255697407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255697408, 3255762943, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255762944, 3255799039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255799040, 3255799295, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255799296, 3255800575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255800576, 3255800831, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255800832, 3255817215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255817472, 3255817727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255817728, 3255828479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255828480, 3255909183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255909184, 3255909191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3255909192, 3256025087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256025088, 3256054271, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256054272, 3256054527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256054528, 3256057855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256057856, 3256074751, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256074752, 3256075007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256075008, 3256076287, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256076288, 3256076799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256076800, 3256080127, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256080128, 3256080383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256080384, 3256080639, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256080640, 3256080767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256080768, 3256081919, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256081920, 3256082175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256082176, 3256082431, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256082432, 3256090623, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256090624, 3256164863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256164864, 3256165375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256165376, 3256187391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256187392, 3256187647, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256187648, 3256221695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256221696, 3256222207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256222208, 3256222463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256222464, 3256223743, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256223744, 3256226047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256226048, 3256229887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256229888, 3256233983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256233984, 3256238079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256238080, 3256246271, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256246272, 3256345343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256345344, 3256345599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256345600, 3256352767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256352768, 3256385535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256385536, 3256393727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256401920, 3256410111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256410112, 3256410623, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256410624, 3256411135, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256411136, 3256411647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256411648, 3256412159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256412160, 3256412671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256412672, 3256413183, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256413184, 3256413695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256413696, 3256414207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256414208, 3256414719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256414720, 3256415231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256415232, 3256415743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256415744, 3256416255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256416256, 3256416767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256416768, 3256417279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256417280, 3256417791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256417792, 3256418303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256418304, 3256427503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256427504, 3256427511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256427512, 3256427519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256427520, 3256443727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256443728, 3256443735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256443736, 3256446855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256446856, 3256446863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256446864, 3256448575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256448576, 3256448591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256448592, 3256452063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256452064, 3256452071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256452072, 3256483839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256483840, 3256487151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256487152, 3256487159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256487160, 3256489471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256489472, 3256489983, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256489984, 3256490239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256490240, 3256490495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256490496, 3256513023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256513024, 3256513279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256513280, 3256513791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256513792, 3256514047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256514048, 3256524287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256524288, 3256524799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256524800, 3256528895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256528896, 3256530943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256530944, 3256549375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256549376, 3256614911, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256614912, 3256680447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256680448, 3256682415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256682416, 3256682431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256682432, 3256688639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256688640, 3256692735, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256692736, 3256693759, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256693760, 3256694783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256694784, 3256695807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256695808, 3256696831, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256696832, 3256697343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256697344, 3256697855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256697856, 3256698367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698368, 3256698399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698400, 3256698407, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698408, 3256698431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698432, 3256698463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698464, 3256698471, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698472, 3256698479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698480, 3256698495, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698496, 3256698623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698624, 3256698879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256698880, 3256700927, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256700928, 3256701183, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256701184, 3256701439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256701440, 3256701695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256701696, 3256702719, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256702720, 3256705023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256705024, 3256705279, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256705280, 3256705791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256705792, 3256706047, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256706048, 3256707071, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256707072, 3256709119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256709120, 3256709887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256709888, 3256710655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256710656, 3256711167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256711168, 3256711423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256711424, 3256711679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256711680, 3256712191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256712192, 3256713215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256713216, 3256727551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256727552, 3256728575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256728576, 3256729599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256729600, 3256731647, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256731648, 3256732671, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256732672, 3256732927, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256732928, 3256733183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256733184, 3256733439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256733440, 3256733695, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256733696, 3256735743, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256735744, 3256737791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256737792, 3256745983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256745984, 3256778751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256778752, 3256786943, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256786944, 3256787199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256787200, 3256787455, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256787456, 3256787711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256787712, 3256787967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256787968, 3256788223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256788224, 3256788479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256788480, 3256788735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256788736, 3256788991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256788992, 3256789247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256789248, 3256789503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256789504, 3256789759, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256789760, 3256790015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256790016, 3256790271, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256790272, 3256790783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256790784, 3256791039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256791040, 3256791295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256791296, 3256791551, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256791552, 3256791807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256791808, 3256792063, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256792064, 3256792319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256792320, 3256792575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256792832, 3256793087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256793088, 3256793343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256793344, 3256793599, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256793600, 3256793855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256793856, 3256794111, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256794112, 3256794367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256794368, 3256794623, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256794624, 3256794879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256794880, 3256795135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256795136, 3256811519, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256811520, 3256877055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3256877056, 3257196543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257196544, 3257200639, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257200640, 3257204735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257204736, 3257270271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257270272, 3257286655, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257286656, 3257294847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257294848, 3257303039, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257303040, 3257311231, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257311232, 3257335807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257335808, 3257357311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257357312, 3257357567, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257357568, 3257357823, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257357824, 3257371903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257371904, 3257372159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257372160, 3257372671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257372672, 3257388799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257388800, 3257389055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257389056, 3257401343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257401344, 3257466879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257466880, 3257467135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257467136, 3257467391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257467392, 3257467903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257467904, 3257468927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257468928, 3257469183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257469184, 3257469439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257469440, 3257469951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257469952, 3257470975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257470976, 3257475071, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257475072, 3257475327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257475328, 3257475583, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257475584, 3257476095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257476096, 3257476351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257476352, 3257477119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257477120, 3257477375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257477376, 3257477887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257477888, 3257480447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257480448, 3257480959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257480960, 3257481215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257481216, 3257481471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257481472, 3257481727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257481728, 3257481983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257481984, 3257482239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257482240, 3257482751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257482752, 3257483007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257483008, 3257491455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257491456, 3257495551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257495552, 3257497855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257497856, 3257499647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257499648, 3257525495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257525496, 3257525503, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257525504, 3257532415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257532416, 3257542655, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257542656, 3257542911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257542912, 3257543423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257543424, 3257543679, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257543680, 3257544447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257544448, 3257544575, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257544576, 3257544703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257544704, 3257544959, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257544960, 3257545215, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257545216, 3257546495, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257546496, 3257546527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257546528, 3257546623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257546624, 3257546655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257546656, 3257546687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257546688, 3257546719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257546720, 3257546751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257546752, 3257548799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257548800, 3257556991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257556992, 3257557503, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257557504, 3257558015, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257558016, 3257559551, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257559552, 3257560063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257560064, 3257561087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257561088, 3257561599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257561600, 3257562111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257562112, 3257563647, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257563648, 3257564159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257564160, 3257564671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257564672, 3257565183, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257565184, 3257570303, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570304, 3257570311, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570312, 3257570319, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570320, 3257570327, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570328, 3257570367, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570368, 3257570431, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570432, 3257570495, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570496, 3257570527, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257570528, 3257573375, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257573376, 3257574015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257574016, 3257574143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257574144, 3257574399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257574400, 3257574655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257574656, 3257576191, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257576192, 3257577471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257577472, 3257581567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257581568, 3257585663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257585664, 3257586687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257586688, 3257586943, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257586944, 3257587455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257587456, 3257587711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257587712, 3257587967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257587968, 3257588223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257588224, 3257588735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257588736, 3257589759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257589760, 3257663487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257663488, 3257729023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257729024, 3257794559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257794560, 3257827327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257827328, 3257827839, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257827840, 3257829375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257829376, 3257830399, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257830400, 3257835519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257835520, 3257844223, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257844224, 3257851903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257851904, 3257860095, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257860096, 3257925631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257925632, 3257991167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3257991168, 3258056703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258056704, 3258056959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258056960, 3258058239, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258058240, 3258058495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258058496, 3258059007, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258059008, 3258059263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258059264, 3258059519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258059520, 3258059775, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258059776, 3258063871, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258063872, 3258064127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258064128, 3258064383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258064384, 3258065151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258065152, 3258065407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258065408, 3258065663, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258065664, 3258065919, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258065920, 3258066175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258066176, 3258066431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258066432, 3258066943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258066944, 3258067199, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258067200, 3258067455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258067456, 3258067967, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258067968, 3258068223, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258068224, 3258068479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258068480, 3258068735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258068736, 3258068991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258068992, 3258069247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258069248, 3258069503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258069504, 3258069759, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258069760, 3258070015, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258070016, 3258070271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258070272, 3258070527, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258070528, 3258071295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258071296, 3258071551, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258071552, 3258071807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258071808, 3258072063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258072064, 3258072319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258072320, 3258072575, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258072576, 3258072831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258072832, 3258073087, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258073088, 3258074111, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258074112, 3258074879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258074880, 3258075135, N'IL', N'Israel') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258075136, 3258075391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258075392, 3258075647, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258075648, 3258075903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258075904, 3258076159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258076160, 3258076415, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258076416, 3258076927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258076928, 3258077439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258077440, 3258077695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258077696, 3258077951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258077952, 3258078207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258078208, 3258078463, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258078464, 3258078719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258078720, 3258078975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258078976, 3258079231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258079232, 3258079487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258079488, 3258079743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258079744, 3258079999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258080000, 3258080255, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258080256, 3258080511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258080512, 3258080767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258080768, 3258081023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258081024, 3258081279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258081280, 3258081535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258081536, 3258081791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258081792, 3258082047, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258082048, 3258082303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258082304, 3258082559, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258082560, 3258082815, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258082816, 3258083071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258083072, 3258083583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258083584, 3258083839, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258083840, 3258084351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258084352, 3258084607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258084608, 3258084863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258084864, 3258085119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258085120, 3258085375, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258085376, 3258085631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258085632, 3258085887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258085888, 3258086143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258086144, 3258086399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258086400, 3258086655, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258086656, 3258087167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258087168, 3258087423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258087424, 3258087679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258087680, 3258087935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258087936, 3258088191, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258088192, 3258088447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258088448, 3258088959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258088960, 3258089215, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258089216, 3258089471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258089472, 3258097663, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258097664, 3258097919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258097920, 3258098175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258098176, 3258098431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258098432, 3258098687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258098688, 3258098943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258098944, 3258099199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258099200, 3258099455, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258099456, 3258099711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258099712, 3258099967, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258099968, 3258100223, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258100224, 3258100479, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258100480, 3258100735, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258100736, 3258100991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258100992, 3258101247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258101248, 3258101503, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258101504, 3258101759, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258101760, 3258102015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258102016, 3258102271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258102272, 3258102527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258102528, 3258102783, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258102784, 3258103039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258103040, 3258103295, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258103296, 3258103551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258103552, 3258103807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258103808, 3258104063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258104064, 3258104319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258104320, 3258104575, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258104576, 3258104831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258104832, 3258105599, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258105600, 3258105855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258105856, 3258109951, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258109952, 3258110207, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258110208, 3258111487, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258111488, 3258111743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258111744, 3258121215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258121216, 3258121471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258121472, 3258121727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258121728, 3258121983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258121984, 3258122239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258122240, 3258128895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258128896, 3258129151, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258129152, 3258163967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258163968, 3258164223, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258164224, 3258164479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258164480, 3258164735, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258164736, 3258167551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258167552, 3258167807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258167808, 3258187775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258187776, 3258231295, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258231296, 3258232831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258232832, 3258250495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258250496, 3258250751, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258250752, 3258251007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258251008, 3258251775, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258251776, 3258253311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258253312, 3258272767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258272768, 3258273791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258273792, 3258297343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258297344, 3258297599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258297600, 3258298111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258298112, 3258298367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258298368, 3258318847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258318848, 3258320895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258320896, 3258322943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258322944, 3258326015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258326016, 3258327039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258327040, 3258335231, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258343424, 3258351615, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258351616, 3258352639, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258352640, 3258353663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258353664, 3258354687, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258354688, 3258356735, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258356736, 3258357759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258357760, 3258359807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258359808, 3258360831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258360832, 3258361855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258361856, 3258362879, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258362880, 3258363903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258363904, 3258364927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258364928, 3258365951, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258365952, 3258366975, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258366976, 3258367999, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258368000, 3258384383, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258384384, 3258427647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258427648, 3258427903, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258427904, 3258428159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258428416, 3258449919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258449920, 3258502682, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258502683, 3258502683, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258502684, 3258503935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258503936, 3258504191, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258504192, 3258504703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258504704, 3258504959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258504960, 3258505215, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258505216, 3258515455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258515456, 3258580991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258580992, 3258601983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258601984, 3258602495, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258602496, 3258625791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258625792, 3258626047, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258626048, 3258646527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258646528, 3258712063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258712064, 3258746879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258746880, 3258748927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258748928, 3258941439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258941440, 3258943487, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258943488, 3258944511, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258944512, 3258945535, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258945536, 3258946559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258946560, 3258947583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258947584, 3258948607, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258948608, 3258949631, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258949632, 3258972159, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258972160, 3258974207, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3258974208, 3259023103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259023104, 3259023119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259023120, 3259032551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259032552, 3259032559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259032560, 3259034319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259034320, 3259034327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259034328, 3259039743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259039744, 3259062015, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259062016, 3259062271, N'GW', N'Guinea-Bissau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259062272, 3259105279, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259105280, 3259170815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259170816, 3259178495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259178496, 3259178751, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259178752, 3259194111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259194112, 3259194367, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259194368, 3259219967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259219968, 3259220479, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259220480, 3259223295, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259223296, 3259223807, N'TM', N'Turkmenistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259223808, 3259224831, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259224832, 3259225343, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259225344, 3259226111, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259226112, 3259226623, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259226624, 3259227135, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259227136, 3259227391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259227392, 3259227903, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259227904, 3259228159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259228160, 3259236351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259236352, 3259269375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259269376, 3259269631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259269632, 3259301887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259301888, 3259302143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259302144, 3259302399, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259302400, 3259303423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259303424, 3259305983, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259305984, 3259310079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259310080, 3259310335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259310336, 3259311103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259311104, 3259311615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259311616, 3259311871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259311872, 3259312639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259312640, 3259313151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259313152, 3259313407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259313408, 3259313663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259313664, 3259314175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259314176, 3259316223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259316224, 3259317247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259317248, 3259318271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318272, 3259318311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318312, 3259318319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318320, 3259318343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318344, 3259318351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318352, 3259318367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318368, 3259318399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318400, 3259318503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318504, 3259318511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318512, 3259318527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318528, 3259318591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318592, 3259318599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318600, 3259318607, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318608, 3259318663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318664, 3259318671, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318672, 3259318679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318680, 3259318687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318688, 3259318727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318728, 3259318735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259318736, 3259319055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319056, 3259319071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319072, 3259319087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319088, 3259319095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319096, 3259319103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319104, 3259319111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319112, 3259319199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319200, 3259319215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319216, 3259319255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319256, 3259319263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319264, 3259319287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319288, 3259319295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319296, 3259319303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319304, 3259319311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319312, 3259319319, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319320, 3259319367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319368, 3259319375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319376, 3259319407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319408, 3259319423, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319424, 3259319439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319440, 3259319447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319448, 3259319463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319464, 3259319471, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319472, 3259319587, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319588, 3259319591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319592, 3259319663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319664, 3259319667, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319668, 3259319823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319824, 3259319831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319832, 3259319879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319880, 3259319887, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319888, 3259319987, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319988, 3259319991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259319992, 3259320011, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320012, 3259320015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320016, 3259320055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320056, 3259320063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320064, 3259320575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320576, 3259320583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320584, 3259320743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320744, 3259320751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259320752, 3259334655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259334656, 3259338751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259338752, 3259342847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259342848, 3259344895, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259344896, 3259345151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259345152, 3259345407, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259345408, 3259345663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259345664, 3259346943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259346944, 3259347199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259347200, 3259347455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259347456, 3259347967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259347968, 3259348223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259348224, 3259348991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259348992, 3259351039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259351040, 3259351551, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259351552, 3259352063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259352064, 3259352575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259352576, 3259353087, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259353088, 3259353855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259353856, 3259354111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259354112, 3259354367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259354368, 3259354623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259354624, 3259354879, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259354880, 3259355135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259355136, 3259359231, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259359232, 3259367423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259367424, 3259432959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259432960, 3259498495, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259498496, 3259506943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259506944, 3259507199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259507200, 3259507711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259507712, 3259507967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259507968, 3259508223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259508224, 3259508479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259508480, 3259515647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259515648, 3259515903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259515904, 3259518207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259518208, 3259518463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259518464, 3259518719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259518720, 3259518975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259518976, 3259521023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259521024, 3259521535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259521536, 3259524863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259524864, 3259525119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259525120, 3259530751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259530752, 3259531007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259531008, 3259531263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259531264, 3259531519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259531520, 3259531663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259531664, 3259531679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259531680, 3259532031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259532032, 3259532047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259532048, 3259534847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259534848, 3259534863, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259534864, 3259537407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259537408, 3259537919, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259537920, 3259538687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259538688, 3259538943, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259538944, 3259541503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259541504, 3259543551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259543552, 3259545599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259545600, 3259546111, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259546112, 3259555839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259555840, 3259556095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259556096, 3259562495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259562496, 3259562751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259562752, 3259576351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259576352, 3259576359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259576360, 3259576799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259576800, 3259576831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259576832, 3259577247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259577248, 3259577263, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259577264, 3259581439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259581440, 3259581951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259581952, 3259587583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259587584, 3259588095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259588096, 3259588607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259588608, 3259596799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259596800, 3259597055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259597056, 3259599359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259599360, 3259599615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259599616, 3259601151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259601152, 3259601407, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259601408, 3259614463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259614464, 3259614719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259614720, 3259614975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259614976, 3259615231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259615232, 3259615743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259615744, 3259615999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259616000, 3259620095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259620096, 3259620351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259620352, 3259628031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259628032, 3259628543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259628544, 3259630335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259630336, 3259630591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259630592, 3259633407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259633408, 3259633663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259633664, 3259635711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259635712, 3259635967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259635968, 3259636735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259636736, 3259636991, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259636992, 3259637759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259637760, 3259638015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259638016, 3259638783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259638784, 3259639039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259639040, 3259639551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259639552, 3259639807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259639808, 3259640319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259640320, 3259640575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259640576, 3259640831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259640832, 3259641343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259641344, 3259642367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259642368, 3259642623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259642624, 3259650047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259650048, 3259650175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259650176, 3259650303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259650304, 3259650815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259650816, 3259656191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259656192, 3259656207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259656208, 3259656255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259656256, 3259656287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259656288, 3259656303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259656304, 3259656311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259656312, 3259656959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259656960, 3259657215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259657216, 3259657727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259657728, 3259657887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259657888, 3259657919, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259657920, 3259657983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259657984, 3259660287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259660288, 3259660303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259660304, 3259660327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259660328, 3259660335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259660336, 3259660543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259660544, 3259660799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259660800, 3259664639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259664640, 3259664647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259664648, 3259664751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259664752, 3259664767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259664768, 3259665695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259665696, 3259665727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259665728, 3259695103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259695104, 3259695615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259695616, 3259695871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259695872, 3259695903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259695904, 3259696639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259696640, 3259696895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259696896, 3259699199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259699200, 3259699711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259699712, 3259701759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259701760, 3259702303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259702304, 3259702319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259702320, 3259702335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259702336, 3259751423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259751424, 3259751431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259751432, 3259751479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259751480, 3259751487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259751488, 3259751519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259751520, 3259751615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259751616, 3259752191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259752192, 3259752447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259752448, 3259760639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259760640, 3259814399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259814400, 3259814655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259814656, 3259821823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259821824, 3259822079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259822080, 3259891711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259891712, 3259957247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259957248, 3259958271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259959296, 3259960319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259960320, 3259961343, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259961344, 3259962367, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259962368, 3259963391, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259963392, 3259964415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259964416, 3259965439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259965440, 3259966463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259966464, 3259967487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259967488, 3259968511, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259968512, 3259969535, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259969536, 3259970559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259970560, 3259971583, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259971584, 3259972607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259972608, 3259973631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259973632, 3259981823, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259981824, 3259990015, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259990016, 3259991999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259992000, 3259992063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3259992064, 3260001284, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260001285, 3260001359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260001360, 3260006399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260006400, 3260014591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260014592, 3260018687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260018688, 3260019711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260019712, 3260021247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260021248, 3260021759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260021760, 3260022271, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260022272, 3260022783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260022784, 3260237775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260237776, 3260237791, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260237792, 3260284927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260284928, 3260288767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260288768, 3260289023, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260289024, 3260303935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260303936, 3260304127, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260304128, 3260322047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260322048, 3260322303, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260322304, 3260339071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260339072, 3260339135, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260339136, 3260341503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260341504, 3260341631, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260341632, 3260353535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260353536, 3260353791, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260353792, 3260354559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260354560, 3260355839, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260355840, 3260415487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260415488, 3260415999, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260416000, 3260481535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260481536, 3260547071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260547072, 3260547327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260547328, 3260547583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260547584, 3260547839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260547840, 3260548095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260548096, 3260548351, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260548352, 3260548607, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260548608, 3260548863, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260548864, 3260549119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260549120, 3260549375, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260549376, 3260549631, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260549632, 3260549887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260549888, 3260550143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260550144, 3260550399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260550400, 3260550655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260550656, 3260550911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260550912, 3260551167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260551168, 3260553983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260553984, 3260554239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260554240, 3260555263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260555264, 3260556703, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260556704, 3260556799, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260556800, 3260559615, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260559616, 3260559647, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260559648, 3260559711, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260559712, 3260559719, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260559720, 3260563455, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260563456, 3260571647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260571648, 3260579839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260579840, 3260580351, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260580352, 3260580863, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260580864, 3260581375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260581376, 3260581887, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260581888, 3260582399, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260582400, 3260583423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260583424, 3260583935, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260583936, 3260584447, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260584448, 3260585471, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260585472, 3260586495, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260586496, 3260587007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260587008, 3260587519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260587520, 3260588031, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260588032, 3260596223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260596224, 3260596735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260596736, 3260597247, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260597248, 3260597759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260597760, 3260598271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260598272, 3260598783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260598784, 3260599295, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260599296, 3260599807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260599808, 3260600319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260600320, 3260601343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260601344, 3260601855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260601856, 3260602367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260602368, 3260602879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260602880, 3260603903, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260603904, 3260604415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260612608, 3260613631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260613632, 3260613887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260613888, 3260614143, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260614144, 3260626175, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260626176, 3260626431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260626432, 3260626943, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260626944, 3260627199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260627200, 3260668415, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260668416, 3260668671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260668672, 3260668927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260668928, 3260669183, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260669184, 3260669695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260669696, 3260669951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260669952, 3260678143, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260678144, 3260743679, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260743680, 3260800255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260800256, 3260800271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260800272, 3260809215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260809216, 3260874751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260874752, 3260875775, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260875776, 3260876031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260876032, 3260891391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260891392, 3260891647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260891648, 3260891903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260891904, 3260892159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260892160, 3260892415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260892416, 3260892671, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260892672, 3260892927, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260892928, 3260893183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260893184, 3260893439, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260893440, 3260894207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260894208, 3260895231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260895232, 3260898303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260898304, 3260899327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260899328, 3260900095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260900096, 3260901119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260901120, 3260903423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260903424, 3260906239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260906240, 3260906367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260906368, 3260906495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260906496, 3260907519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260907520, 3260915711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260915712, 3260923903, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3260923904, 3261071359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261071360, 3261136895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261136896, 3261150143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261150144, 3261150207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261150208, 3261202431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261202432, 3261266175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261266176, 3261266431, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261266432, 3261267967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261267968, 3261333503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261333504, 3261399039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261399040, 3261472767, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261472768, 3261503487, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261503488, 3261503935, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261503936, 3261530111, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261530112, 3261595647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261595648, 3261661183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261661184, 3261669375, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261669376, 3261673471, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261673472, 3261675519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261675520, 3261675775, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261675776, 3261676031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261676032, 3261676287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261676288, 3261676543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261676544, 3261676799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261676800, 3261677055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261677056, 3261685759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261685760, 3261687807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261687808, 3261689855, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261689856, 3261691903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261691904, 3261694463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261694464, 3261694975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261694976, 3261695487, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261695488, 3261695999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261696000, 3261696511, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261696512, 3261697023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261697024, 3261698047, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261698048, 3261698559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261698560, 3261699071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261699072, 3261699583, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261699584, 3261700095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261700096, 3261700607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261700608, 3261701119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261701120, 3261701631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261701632, 3261702143, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261702144, 3261710335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261710336, 3261718527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261718528, 3261726719, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261726720, 3261734911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261734912, 3261743103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261743104, 3261751295, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261751296, 3261759487, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261759488, 3261767679, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261767680, 3261775871, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261775872, 3261776383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261776384, 3261776895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261776896, 3261777407, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261777408, 3261777919, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261777920, 3261778431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261778432, 3261778943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261778944, 3261779455, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261779456, 3261779967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261779968, 3261780479, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261780480, 3261780991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261780992, 3261781503, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261781504, 3261782015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261782016, 3261783039, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261783040, 3261783551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261783552, 3261784063, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261784064, 3261816575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261816576, 3261816831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261816832, 3261857791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261857792, 3261867951, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261867952, 3261867955, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261867956, 3261923327, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261923328, 3261988863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3261988864, 3262099199, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262099200, 3262099455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262099456, 3262108671, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262108672, 3262108927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262108928, 3262114047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262114048, 3262114559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262114560, 3262115071, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262115072, 3262115327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262115328, 3262124031, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262124032, 3262128127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262128128, 3262136319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262136320, 3262137599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262137600, 3262137855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262137856, 3262139903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262139904, 3262140415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262140416, 3262140671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262140672, 3262140927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262140928, 3262141439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262141440, 3262142463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262142464, 3262142719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262142720, 3262143231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262143232, 3262143487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262143488, 3262143743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262143744, 3262144047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262144048, 3262145023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262145024, 3262145279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262145280, 3262145551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262145552, 3262145567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262145568, 3262145615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262145616, 3262145631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262145632, 3262146047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262146048, 3262146815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262146816, 3262147071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262147072, 3262147327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262147328, 3262147583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262147584, 3262147839, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262147840, 3262148607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262148608, 3262148863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262148864, 3262148879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262148880, 3262148919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262148920, 3262148927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262148928, 3262149119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149120, 3262149151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149152, 3262149159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149160, 3262149167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149168, 3262149183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149184, 3262149247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149248, 3262149631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149632, 3262149887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262149888, 3262150911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262150912, 3262151047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151048, 3262151071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151072, 3262151103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151104, 3262151135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151136, 3262151151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151152, 3262151167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151168, 3262151679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151680, 3262151935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262151936, 3262152191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262152192, 3262152703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262152704, 3262185471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262185472, 3262227711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262227712, 3262227967, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262227968, 3262283775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262283776, 3262284799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262284800, 3262286847, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262286848, 3262287871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262287872, 3262289919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262289920, 3262316543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262316544, 3262348799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262348800, 3262349055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262349056, 3262382079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262382080, 3262414847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262414848, 3262415359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262415360, 3262416895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262416896, 3262417407, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262417408, 3262417919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262417920, 3262418431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262418432, 3262419455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262419456, 3262419967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262419968, 3262420479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262420480, 3262420991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262420992, 3262421503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262421504, 3262422015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262422016, 3262422527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262422528, 3262423039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262423040, 3262423551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262423552, 3262424063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262424064, 3262424575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262424576, 3262425087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262425088, 3262425599, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262425600, 3262426111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262426112, 3262426623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262426624, 3262427135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262427136, 3262427647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262427648, 3262428159, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262428160, 3262428671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262428672, 3262429183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262429184, 3262429695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262429696, 3262430207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262430208, 3262430719, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262430720, 3262431231, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262431232, 3262431743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262431744, 3262432255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262432256, 3262432767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262432768, 3262433279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262433280, 3262433791, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262433792, 3262434303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262434304, 3262434815, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262434816, 3262435839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262435840, 3262436351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262436352, 3262436863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262436864, 3262437375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262437376, 3262437887, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262437888, 3262438399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262438400, 3262438911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262438912, 3262439423, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262439424, 3262439935, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262439936, 3262440447, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262440448, 3262440959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262440960, 3262441471, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262441472, 3262441983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262441984, 3262442495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262442496, 3262443007, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262443008, 3262443519, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262443520, 3262444031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262444032, 3262444543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262444544, 3262445055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262445056, 3262445567, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262445568, 3262446079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262446080, 3262446591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262446592, 3262447103, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262447104, 3262447615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262447616, 3262460415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262460416, 3262460543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262460544, 3262460671, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262460672, 3262460799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262460800, 3262460927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262460928, 3262461055, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461056, 3262461183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461184, 3262461311, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461312, 3262461439, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461440, 3262461567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461568, 3262461695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461696, 3262461823, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461824, 3262461951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262461952, 3262463999, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262464000, 3262472191, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472192, 3262472207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472208, 3262472211, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472212, 3262472215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472216, 3262472219, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472220, 3262472223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472224, 3262472231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472232, 3262472235, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472236, 3262472243, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472244, 3262472247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472248, 3262472251, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472252, 3262472267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472268, 3262472271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472272, 3262472275, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472276, 3262472279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472280, 3262472291, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472292, 3262472295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472296, 3262472311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472312, 3262472315, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472316, 3262472331, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472332, 3262472335, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472336, 3262472339, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472340, 3262472351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472352, 3262472355, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472356, 3262472359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472360, 3262472363, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472364, 3262472367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472368, 3262472371, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472372, 3262472375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472376, 3262472379, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472380, 3262472387, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472388, 3262472391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472392, 3262472395, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472396, 3262472399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472400, 3262472403, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472404, 3262472407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472408, 3262472411, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472412, 3262472415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472416, 3262472419, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472420, 3262472423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472424, 3262472427, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472428, 3262472431, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472432, 3262472435, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472436, 3262472443, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472444, 3262472447, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472448, 3262472459, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472460, 3262472463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472464, 3262472467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472468, 3262472471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472472, 3262472479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472480, 3262472483, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472484, 3262472495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472496, 3262472499, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472500, 3262472511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472512, 3262472515, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472516, 3262472519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472520, 3262472527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472528, 3262472531, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472532, 3262472535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472536, 3262472539, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472540, 3262472543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472544, 3262472547, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472548, 3262472551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472552, 3262472555, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472556, 3262472563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472564, 3262472567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472568, 3262472575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472576, 3262472579, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472580, 3262472583, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472584, 3262472591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472592, 3262472595, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472596, 3262472599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472600, 3262472603, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472604, 3262472607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472608, 3262472615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472616, 3262472619, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472620, 3262472623, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472624, 3262472631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472632, 3262472635, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472636, 3262472651, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472652, 3262472655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472656, 3262472659, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472660, 3262472663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472664, 3262472667, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472668, 3262472675, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472676, 3262472679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472680, 3262472683, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472684, 3262472691, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472692, 3262472695, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472696, 3262472699, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472700, 3262472703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472704, 3262472707, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472708, 3262472711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472712, 3262472715, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472716, 3262472727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472728, 3262472735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472736, 3262472739, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472740, 3262472743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472744, 3262472747, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472748, 3262472751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472752, 3262472755, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472756, 3262472759, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472760, 3262472763, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472764, 3262472767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472768, 3262472771, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472772, 3262472775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472776, 3262472779, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472780, 3262472783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472784, 3262472791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472792, 3262472795, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472796, 3262472799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472800, 3262472807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472808, 3262472811, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472812, 3262472819, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472820, 3262472823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472824, 3262472827, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472828, 3262472835, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472836, 3262472839, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472840, 3262472843, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472844, 3262472847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472848, 3262472851, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472852, 3262472855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472856, 3262472859, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472860, 3262472863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472864, 3262472867, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472868, 3262472871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472872, 3262472875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472876, 3262472879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472880, 3262472883, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472884, 3262472891, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472892, 3262472899, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472900, 3262472903, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472904, 3262472907, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472908, 3262472911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472912, 3262472915, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472916, 3262472923, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472924, 3262472927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472928, 3262472931, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472932, 3262472935, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472936, 3262472939, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472940, 3262472943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472944, 3262472947, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472948, 3262472951, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472952, 3262472955, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472956, 3262472959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472960, 3262472963, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472964, 3262472967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472968, 3262472975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472976, 3262472979, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472980, 3262472983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472984, 3262472987, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472988, 3262472991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472992, 3262472995, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262472996, 3262472999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473000, 3262473003, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473004, 3262473007, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473008, 3262473011, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473012, 3262473015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473016, 3262473019, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473020, 3262473023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473024, 3262473027, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473028, 3262473031, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473032, 3262473035, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473036, 3262473039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473040, 3262473043, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473044, 3262473047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473048, 3262473051, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473052, 3262473055, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473056, 3262473075, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473076, 3262473079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473080, 3262473083, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473084, 3262473087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473088, 3262473091, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473092, 3262473099, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473100, 3262473103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473104, 3262473107, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473108, 3262473115, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473116, 3262473119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473120, 3262473127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473128, 3262473135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473136, 3262473139, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473140, 3262473143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473144, 3262473151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473152, 3262473155, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473156, 3262473159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473160, 3262473163, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473164, 3262473167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473168, 3262473171, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473172, 3262473175, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473176, 3262473195, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473196, 3262473199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473200, 3262473203, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473204, 3262473207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473208, 3262473211, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473212, 3262473215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473216, 3262473323, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473324, 3262473327, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473328, 3262473471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473472, 3262473473, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473474, 3262473478, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473479, 3262473480, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473481, 3262473483, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473484, 3262473484, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473485, 3262473485, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473486, 3262473486, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473487, 3262473513, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473514, 3262473514, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473515, 3262473516, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473517, 3262473517, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473518, 3262473526, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473527, 3262473527, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473528, 3262473540, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473541, 3262473541, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473542, 3262473543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473544, 3262473544, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473545, 3262473548, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473549, 3262473549, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473550, 3262473557, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473558, 3262473558, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473559, 3262473567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473568, 3262473568, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473569, 3262473570, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473571, 3262473571, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473572, 3262473582, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473583, 3262473583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473584, 3262473586, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473587, 3262473587, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473588, 3262473597, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473598, 3262473598, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473599, 3262473658, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473659, 3262473659, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473660, 3262473663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473664, 3262473664, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473665, 3262473688, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473689, 3262473689, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473690, 3262473691, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473692, 3262473692, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473693, 3262473729, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473730, 3262473735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473736, 3262473736, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473737, 3262473771, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473772, 3262473772, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473773, 3262473785, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473786, 3262473855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473856, 3262473859, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473860, 3262473903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473904, 3262473907, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473908, 3262473931, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473932, 3262473935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473936, 3262473963, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473964, 3262473967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473968, 3262473971, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473972, 3262473983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473984, 3262473985, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473986, 3262473986, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473987, 3262473987, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473988, 3262473988, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473989, 3262473989, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473990, 3262473990, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473991, 3262473991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473992, 3262473992, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473993, 3262473993, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473994, 3262473995, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473996, 3262473996, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473997, 3262473998, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262473999, 3262473999, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474000, 3262474000, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474001, 3262474001, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474002, 3262474002, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474003, 3262474003, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474004, 3262474004, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474005, 3262474005, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474006, 3262474007, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474008, 3262474009, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474010, 3262474010, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474011, 3262474011, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474012, 3262474013, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474014, 3262474014, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474015, 3262474016, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474017, 3262474018, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474019, 3262474026, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474027, 3262474027, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474028, 3262474030, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474031, 3262474031, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474032, 3262474032, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474033, 3262474033, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474034, 3262474034, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474035, 3262474035, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474036, 3262474036, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474037, 3262474037, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474038, 3262474038, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474039, 3262474039, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474040, 3262474041, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474042, 3262474042, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474043, 3262474043, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474044, 3262474044, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474045, 3262474048, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474049, 3262474049, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474050, 3262474061, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474062, 3262474063, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474064, 3262474064, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474065, 3262474065, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474066, 3262474066, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474067, 3262474067, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474068, 3262474068, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474069, 3262474069, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474070, 3262474070, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474071, 3262474071, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474072, 3262474072, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474073, 3262474075, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474076, 3262474076, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474077, 3262474077, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474078, 3262474078, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474079, 3262474079, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474080, 3262474083, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474084, 3262474084, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474085, 3262474087, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474088, 3262474088, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474089, 3262474089, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474090, 3262474091, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474092, 3262474094, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474095, 3262474095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474096, 3262474097, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474098, 3262474098, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474099, 3262474102, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474103, 3262474103, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474104, 3262474104, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474105, 3262474105, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474106, 3262474106, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474107, 3262474107, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474108, 3262474108, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474109, 3262474110, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474111, 3262474111, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474112, 3262474112, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474113, 3262474113, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474114, 3262474114, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474115, 3262474115, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474116, 3262474116, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474117, 3262474117, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474118, 3262474118, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474119, 3262474119, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474120, 3262474120, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474121, 3262474121, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474122, 3262474122, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474123, 3262474125, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474126, 3262474126, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474127, 3262474128, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474129, 3262474130, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474131, 3262474131, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474132, 3262474133, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474134, 3262474134, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474135, 3262474136, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474137, 3262474137, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474138, 3262474139, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474140, 3262474140, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474141, 3262474142, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474143, 3262474143, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474144, 3262474150, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474151, 3262474151, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474152, 3262474152, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474153, 3262474153, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474154, 3262474154, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474155, 3262474155, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474156, 3262474156, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474157, 3262474157, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474158, 3262474159, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474160, 3262474162, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474163, 3262474163, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474164, 3262474164, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474165, 3262474165, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474166, 3262474166, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474167, 3262474167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474168, 3262474168, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474169, 3262474169, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474170, 3262474170, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474171, 3262474171, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474172, 3262474172, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474173, 3262474173, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474174, 3262474174, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474175, 3262474175, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474176, 3262474176, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474177, 3262474177, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474178, 3262474178, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474179, 3262474179, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474180, 3262474180, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474181, 3262474181, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474182, 3262474182, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474183, 3262474185, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474186, 3262474186, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474187, 3262474187, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474188, 3262474188, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474189, 3262474189, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474190, 3262474190, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474191, 3262474192, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474193, 3262474193, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474194, 3262474194, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474195, 3262474195, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474196, 3262474196, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474197, 3262474198, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474199, 3262474199, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474200, 3262474200, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474201, 3262474201, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474202, 3262474203, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474204, 3262474204, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474205, 3262474205, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474206, 3262474206, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474207, 3262474207, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474208, 3262474208, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474209, 3262474209, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474210, 3262474210, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474211, 3262474211, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474212, 3262474212, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474213, 3262474213, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474214, 3262474214, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474215, 3262474215, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474216, 3262474216, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474217, 3262474217, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474218, 3262474218, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474219, 3262474219, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474220, 3262474222, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474223, 3262474223, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474224, 3262474224, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474225, 3262474225, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474226, 3262474226, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474227, 3262474227, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474228, 3262474228, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474229, 3262474230, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474231, 3262474231, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474232, 3262474234, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474235, 3262474236, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474237, 3262474238, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474239, 3262474239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474240, 3262474255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474256, 3262474259, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474260, 3262474263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474264, 3262474267, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474268, 3262474271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474272, 3262474275, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474276, 3262474367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474368, 3262474371, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474372, 3262474395, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474396, 3262474399, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474400, 3262474463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474464, 3262474467, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474468, 3262474495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474496, 3262474631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474632, 3262474635, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474636, 3262474791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474792, 3262474815, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474816, 3262474895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262474896, 3262475007, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475008, 3262475009, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475010, 3262475023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475024, 3262475024, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475025, 3262475025, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475026, 3262475027, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475028, 3262475029, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475030, 3262475033, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475034, 3262475036, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475037, 3262475037, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475038, 3262475042, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475043, 3262475043, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475044, 3262475044, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475045, 3262475045, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475046, 3262475065, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475066, 3262475068, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475069, 3262475072, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475073, 3262475075, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475076, 3262475076, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475077, 3262475077, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475078, 3262475079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475080, 3262475080, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475081, 3262475081, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475082, 3262475082, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475083, 3262475083, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475084, 3262475084, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475085, 3262475085, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475086, 3262475087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475088, 3262475088, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475089, 3262475090, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475091, 3262475092, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475093, 3262475094, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475095, 3262475095, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475096, 3262475140, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475141, 3262475141, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475142, 3262475167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475168, 3262475168, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475169, 3262475174, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475175, 3262475175, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475176, 3262475185, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475186, 3262475186, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475187, 3262475189, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475190, 3262475190, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475191, 3262475191, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475192, 3262475192, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475193, 3262475201, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475202, 3262475205, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475206, 3262475209, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475210, 3262475210, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475211, 3262475213, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475214, 3262475214, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475215, 3262475222, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475223, 3262475263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475264, 3262475267, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475268, 3262475271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475272, 3262475275, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475276, 3262475279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475280, 3262475283, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475284, 3262475287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475288, 3262475295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475296, 3262475303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475304, 3262475307, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475308, 3262475311, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475312, 3262475315, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475316, 3262475319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475320, 3262475323, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475324, 3262475327, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475328, 3262475331, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475332, 3262475335, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475336, 3262475339, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475340, 3262475343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475344, 3262475347, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475348, 3262475351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475352, 3262475355, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475356, 3262475359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475360, 3262475363, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475364, 3262475367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475368, 3262475371, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475372, 3262475375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475376, 3262475383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475384, 3262475387, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475388, 3262475395, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475396, 3262475399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475400, 3262475403, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475404, 3262475407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475408, 3262475415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475416, 3262475419, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475420, 3262475423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475424, 3262475427, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475428, 3262475431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475432, 3262475435, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475436, 3262475439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475440, 3262475443, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475444, 3262475447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475448, 3262475451, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475452, 3262475459, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475460, 3262475463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475464, 3262475467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475468, 3262475471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475472, 3262475475, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475476, 3262475479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475480, 3262475483, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475484, 3262475487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475488, 3262475491, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475492, 3262475495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475496, 3262475499, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475500, 3262475503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475504, 3262475507, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475508, 3262475511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475512, 3262475515, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475516, 3262475519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475520, 3262475527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475528, 3262475531, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475532, 3262475559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475560, 3262475575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475576, 3262475591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475592, 3262475595, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475596, 3262475607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475608, 3262475611, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475612, 3262475631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475632, 3262475635, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475636, 3262475639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475640, 3262475683, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475684, 3262475687, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475688, 3262475691, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475692, 3262475695, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475696, 3262475715, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475716, 3262475719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475720, 3262475723, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475724, 3262475775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475776, 3262475783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475784, 3262475787, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475788, 3262475791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475792, 3262475807, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475808, 3262475811, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475812, 3262475815, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475816, 3262475819, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475820, 3262475823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475824, 3262475839, N'RO', N'Romania') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475840, 3262475855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475856, 3262475871, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475872, 3262475875, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475876, 3262475879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475880, 3262475883, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475884, 3262475887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475888, 3262475891, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475892, 3262475895, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475896, 3262475903, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475904, 3262475919, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475920, 3262475935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475936, 3262475951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475952, 3262475963, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475964, 3262475967, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475968, 3262475975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475976, 3262475983, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475984, 3262475991, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262475992, 3262476015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476016, 3262476019, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476020, 3262476023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476024, 3262476027, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476028, 3262476031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476032, 3262476039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476040, 3262476043, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476044, 3262476047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476048, 3262476055, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476056, 3262476059, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476060, 3262476063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476064, 3262476067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476068, 3262476071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476072, 3262476075, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476076, 3262476079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476080, 3262476083, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476084, 3262476087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476088, 3262476091, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476092, 3262476095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476096, 3262476103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476104, 3262476107, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476108, 3262476111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476112, 3262476115, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476116, 3262476119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476120, 3262476123, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476124, 3262476127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476128, 3262476131, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476132, 3262476135, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476136, 3262476139, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476140, 3262476143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476144, 3262476147, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476148, 3262476155, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476156, 3262476159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476160, 3262476163, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476164, 3262476171, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476172, 3262476175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476176, 3262476179, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476180, 3262476183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476184, 3262476187, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476188, 3262476191, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476192, 3262476195, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476196, 3262476199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476200, 3262476203, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476204, 3262476207, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476208, 3262476211, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476212, 3262476215, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476216, 3262476223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476224, 3262476227, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476228, 3262476231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476232, 3262476235, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476236, 3262476239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476240, 3262476243, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476244, 3262476247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476248, 3262476251, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476252, 3262476255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476256, 3262476259, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476260, 3262476267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476268, 3262476271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476272, 3262476275, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476276, 3262476279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476280, 3262476283, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476284, 3262476291, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476292, 3262476295, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476296, 3262476299, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476300, 3262476303, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476304, 3262476307, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476308, 3262476315, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476316, 3262476319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476320, 3262476323, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476324, 3262476327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476328, 3262476331, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476332, 3262476339, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476340, 3262476343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476344, 3262476347, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476348, 3262476351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476352, 3262476355, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476356, 3262476363, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476364, 3262476367, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476368, 3262476371, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476372, 3262476375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476376, 3262476387, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476388, 3262476391, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476392, 3262476395, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476396, 3262476399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476400, 3262476403, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476404, 3262476411, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476412, 3262476415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476416, 3262476419, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476420, 3262476423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476424, 3262476427, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476428, 3262476431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476432, 3262476435, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476436, 3262476439, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476440, 3262476443, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476444, 3262476447, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476448, 3262476455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476456, 3262476459, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476460, 3262476463, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476464, 3262476467, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476468, 3262476471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476472, 3262476475, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476476, 3262476483, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476484, 3262476487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476488, 3262476491, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476492, 3262476495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476496, 3262476499, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476500, 3262476503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476504, 3262476507, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476508, 3262476511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476512, 3262476515, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476516, 3262476519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476520, 3262476523, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476524, 3262476527, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476528, 3262476531, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476532, 3262476535, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476536, 3262476539, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476540, 3262476543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476544, 3262476547, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476548, 3262476551, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476552, 3262476555, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476556, 3262476559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476560, 3262476567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476568, 3262476571, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476572, 3262476575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476576, 3262476587, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476588, 3262476591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476592, 3262476595, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476596, 3262476603, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476604, 3262476607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476608, 3262476611, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476612, 3262476615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476616, 3262476619, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476620, 3262476623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476624, 3262476627, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476628, 3262476635, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476636, 3262476639, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476640, 3262476643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476644, 3262476647, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476648, 3262476651, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476652, 3262476655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476656, 3262476667, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476668, 3262476671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476672, 3262476675, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476676, 3262476679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476680, 3262476683, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476684, 3262476687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476688, 3262476691, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476692, 3262476695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476696, 3262476699, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476700, 3262476707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476708, 3262476715, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476716, 3262476719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476720, 3262476723, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476724, 3262476727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476728, 3262476731, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476732, 3262476735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476736, 3262476739, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476740, 3262476743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476744, 3262476747, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476748, 3262476751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476752, 3262476755, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476756, 3262476759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476760, 3262476763, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476764, 3262476767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476768, 3262476771, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476772, 3262476779, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476780, 3262476783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476784, 3262476787, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476788, 3262476791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476792, 3262476795, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476796, 3262476799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476800, 3262476803, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476804, 3262476807, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476808, 3262476827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476828, 3262476831, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476832, 3262476839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476840, 3262476843, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476844, 3262476847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476848, 3262476851, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476852, 3262476855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476856, 3262476859, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476860, 3262476863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476864, 3262476867, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476868, 3262476883, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476884, 3262476887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476888, 3262476891, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476892, 3262476895, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476896, 3262476899, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476900, 3262476903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476904, 3262476907, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476908, 3262476911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476912, 3262476915, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476916, 3262476919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476920, 3262476923, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476924, 3262476927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476928, 3262476935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476936, 3262476939, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476940, 3262476951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476952, 3262476955, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476956, 3262476971, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476972, 3262476975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476976, 3262476979, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476980, 3262476983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476984, 3262476987, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476988, 3262476995, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262476996, 3262476999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477000, 3262477003, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477004, 3262477007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477008, 3262477011, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477012, 3262477015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477016, 3262477019, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477020, 3262477023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477024, 3262477035, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477036, 3262477039, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477040, 3262477043, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477044, 3262477047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477048, 3262477059, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477060, 3262477063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477064, 3262477067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477068, 3262477071, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477072, 3262477075, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477076, 3262477083, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477084, 3262477087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477088, 3262477091, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477092, 3262477095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477096, 3262477107, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477108, 3262477111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477112, 3262477131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477132, 3262477135, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477136, 3262477147, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477148, 3262477151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477152, 3262477155, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477156, 3262477159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477160, 3262477163, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477164, 3262477167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477168, 3262477171, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477172, 3262477175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477176, 3262477187, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477188, 3262477191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477192, 3262477195, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477196, 3262477199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477200, 3262477203, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477204, 3262477207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477208, 3262477211, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477212, 3262477215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477216, 3262477219, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477220, 3262477223, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477224, 3262477227, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477228, 3262477231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477232, 3262477239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477240, 3262477243, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477244, 3262477247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477248, 3262477251, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477252, 3262477255, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477256, 3262477259, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477260, 3262477263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477264, 3262477267, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477268, 3262477271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477272, 3262477275, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477276, 3262477279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477280, 3262477283, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477284, 3262477287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477288, 3262477291, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477292, 3262477295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477296, 3262477299, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477300, 3262477303, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477304, 3262477307, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477308, 3262477311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477312, 3262477315, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477316, 3262477319, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477320, 3262477327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477328, 3262477331, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477332, 3262477335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477336, 3262477339, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477340, 3262477343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477344, 3262477347, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477348, 3262477355, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477356, 3262477359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477360, 3262477363, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477364, 3262477367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477368, 3262477371, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477372, 3262477375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477376, 3262477379, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477380, 3262477383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477384, 3262477387, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477388, 3262477399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477400, 3262477403, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477404, 3262477407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477408, 3262477411, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477412, 3262477415, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477416, 3262477419, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477420, 3262477427, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477428, 3262477431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477432, 3262477439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477440, 3262477443, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477444, 3262477447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477448, 3262477451, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477452, 3262477455, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477456, 3262477467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477468, 3262477471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477472, 3262477475, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477476, 3262477479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477480, 3262477483, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477484, 3262477487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477488, 3262477499, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477500, 3262477503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477504, 3262477507, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477508, 3262477511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477512, 3262477519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477520, 3262477523, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477524, 3262477527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477528, 3262477543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477544, 3262477547, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477548, 3262477551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477552, 3262477555, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477556, 3262477559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477560, 3262477563, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477564, 3262477571, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477572, 3262477575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477576, 3262477579, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477580, 3262477583, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477584, 3262477587, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477588, 3262477591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477592, 3262477595, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477596, 3262477599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477600, 3262477603, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477604, 3262477607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477608, 3262477611, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477612, 3262477615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477616, 3262477619, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477620, 3262477623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477624, 3262477627, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477628, 3262477631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477632, 3262477635, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477636, 3262477639, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477640, 3262477643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477644, 3262477647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477648, 3262477655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477656, 3262477659, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477660, 3262477671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477672, 3262477675, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477676, 3262477687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477688, 3262477691, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477692, 3262477695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477696, 3262477699, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477700, 3262477703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477704, 3262477707, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477708, 3262477711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477712, 3262477727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477728, 3262477731, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477732, 3262477735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477736, 3262477739, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477740, 3262477743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477744, 3262477751, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477752, 3262477759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477760, 3262477763, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477764, 3262477767, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477768, 3262477771, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477772, 3262477775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477776, 3262477779, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477780, 3262477783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477784, 3262477787, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477788, 3262477791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477792, 3262477795, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477796, 3262477799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477800, 3262477803, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477804, 3262477807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477808, 3262477811, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477812, 3262477819, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477820, 3262477823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477824, 3262477827, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477828, 3262477831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477832, 3262477835, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477836, 3262477839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477840, 3262477843, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477844, 3262477847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477848, 3262477851, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477852, 3262477855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477856, 3262477859, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477860, 3262477863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477864, 3262477867, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477868, 3262477871, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477872, 3262477883, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477884, 3262477891, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477892, 3262477895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477896, 3262477899, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477900, 3262477903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477904, 3262477907, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477908, 3262477911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477912, 3262477915, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477916, 3262477919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477920, 3262477923, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477924, 3262477927, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477928, 3262477931, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477932, 3262477935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477936, 3262477939, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477940, 3262477943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477944, 3262477955, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477956, 3262477959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477960, 3262477963, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477964, 3262477967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477968, 3262477971, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477972, 3262477987, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477988, 3262477991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262477992, 3262477999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478000, 3262478003, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478004, 3262478007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478008, 3262478011, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478012, 3262478015, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478016, 3262478019, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478020, 3262478027, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478028, 3262478031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478032, 3262478035, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478036, 3262478039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478040, 3262478043, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478044, 3262478047, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478048, 3262478055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478056, 3262478063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478064, 3262478067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478068, 3262478071, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478072, 3262478081, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478082, 3262478082, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478083, 3262478083, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478084, 3262478084, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478085, 3262478085, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478086, 3262478088, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478089, 3262478089, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478090, 3262478090, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478091, 3262478091, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478092, 3262478092, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478093, 3262478093, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478094, 3262478094, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478095, 3262478095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478096, 3262478096, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478097, 3262478097, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478098, 3262478098, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478099, 3262478099, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478100, 3262478100, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478101, 3262478101, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478102, 3262478102, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478103, 3262478103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478104, 3262478104, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478105, 3262478105, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478106, 3262478106, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478107, 3262478107, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478108, 3262478108, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478109, 3262478109, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478110, 3262478110, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478111, 3262478113, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478114, 3262478114, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478115, 3262478115, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478116, 3262478116, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478117, 3262478117, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478118, 3262478118, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478119, 3262478119, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478120, 3262478120, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478121, 3262478121, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478122, 3262478122, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478123, 3262478123, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478124, 3262478124, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478125, 3262478125, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478126, 3262478126, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478127, 3262478127, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478128, 3262478128, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478129, 3262478129, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478130, 3262478130, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478131, 3262478131, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478132, 3262478132, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478133, 3262478133, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478134, 3262478134, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478135, 3262478135, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478136, 3262478137, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478138, 3262478138, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478139, 3262478139, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478140, 3262478140, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478141, 3262478143, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478144, 3262478145, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478146, 3262478146, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478147, 3262478147, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478148, 3262478148, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478149, 3262478149, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478150, 3262478150, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478151, 3262478151, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478152, 3262478152, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478153, 3262478153, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478154, 3262478154, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478155, 3262478155, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478156, 3262478156, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478157, 3262478157, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478158, 3262478158, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478159, 3262478159, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478160, 3262478160, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478161, 3262478161, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478162, 3262478162, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478163, 3262478163, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478164, 3262478164, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478165, 3262478165, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478166, 3262478166, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478167, 3262478167, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478168, 3262478168, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478169, 3262478169, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478170, 3262478171, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478172, 3262478172, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478173, 3262478174, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478175, 3262478175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478176, 3262478176, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478177, 3262478177, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478178, 3262478178, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478179, 3262478180, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478181, 3262478181, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478182, 3262478182, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478183, 3262478183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478184, 3262478184, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478185, 3262478185, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478186, 3262478186, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478187, 3262478187, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478188, 3262478188, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478189, 3262478189, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478190, 3262478190, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478191, 3262478192, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478193, 3262478194, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478195, 3262478207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478208, 3262478211, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478212, 3262478215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478216, 3262478219, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478220, 3262478223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478224, 3262478227, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478228, 3262478231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478232, 3262478235, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478236, 3262478239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478240, 3262478243, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478244, 3262478247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478248, 3262478251, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478252, 3262478255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478256, 3262478259, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478260, 3262478263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478264, 3262478267, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478268, 3262478271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478272, 3262478275, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478276, 3262478299, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478300, 3262478303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478304, 3262478307, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478308, 3262478311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478312, 3262478315, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478316, 3262478319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478320, 3262478323, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478324, 3262478327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478328, 3262478331, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478332, 3262478335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478336, 3262478337, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478338, 3262478338, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478339, 3262478343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478344, 3262478344, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478345, 3262478345, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478346, 3262478346, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478347, 3262478347, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478348, 3262478348, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478349, 3262478349, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478350, 3262478350, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478351, 3262478351, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478352, 3262478352, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478353, 3262478353, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478354, 3262478354, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478355, 3262478355, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478356, 3262478356, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478357, 3262478358, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478359, 3262478360, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478361, 3262478361, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478362, 3262478362, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478363, 3262478363, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478364, 3262478364, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478365, 3262478366, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478367, 3262478367, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478368, 3262478368, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478369, 3262478369, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478370, 3262478370, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478371, 3262478371, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478372, 3262478373, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478374, 3262478374, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478375, 3262478376, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478377, 3262478377, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478378, 3262478378, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478379, 3262478379, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478380, 3262478381, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478382, 3262478382, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478383, 3262478383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478384, 3262478384, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478385, 3262478385, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478386, 3262478386, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478387, 3262478387, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478388, 3262478388, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478389, 3262478389, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478390, 3262478390, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478391, 3262478391, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478392, 3262478393, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478394, 3262478394, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478395, 3262478396, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478397, 3262478397, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478398, 3262478398, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478399, 3262478399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478400, 3262478400, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478401, 3262478401, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478402, 3262478402, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478403, 3262478403, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478404, 3262478404, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478405, 3262478406, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478407, 3262478412, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478413, 3262478413, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478414, 3262478414, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478415, 3262478415, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478416, 3262478416, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478417, 3262478417, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478418, 3262478418, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478419, 3262478419, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478420, 3262478421, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478422, 3262478422, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478423, 3262478423, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478424, 3262478424, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478425, 3262478425, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478426, 3262478426, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478427, 3262478428, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478429, 3262478429, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478430, 3262478430, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478431, 3262478431, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478432, 3262478432, N'RE', N'Reunion') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478433, 3262478433, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478434, 3262478434, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478435, 3262478435, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478436, 3262478437, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478438, 3262478438, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478439, 3262478439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478440, 3262478440, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478441, 3262478441, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478442, 3262478442, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478443, 3262478443, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478444, 3262478444, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478445, 3262478445, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478446, 3262478447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478448, 3262478448, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478449, 3262478449, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478450, 3262478450, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478451, 3262478451, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478452, 3262478452, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478453, 3262478453, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478454, 3262478454, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478455, 3262478455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478456, 3262478456, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478457, 3262478457, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478458, 3262478458, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478459, 3262478459, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478460, 3262478460, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478461, 3262478465, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478466, 3262478466, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478467, 3262478467, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478468, 3262478468, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478469, 3262478469, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478470, 3262478470, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478471, 3262478471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478472, 3262478472, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478473, 3262478473, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478474, 3262478474, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478475, 3262478476, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478477, 3262478478, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478479, 3262478479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478480, 3262478480, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478481, 3262478481, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478482, 3262478482, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478483, 3262478483, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478484, 3262478484, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478485, 3262478485, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478486, 3262478487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478488, 3262478488, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478489, 3262478489, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478490, 3262478490, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478491, 3262478491, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478492, 3262478492, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478493, 3262478493, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478494, 3262478494, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478495, 3262478495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478496, 3262478496, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478497, 3262478500, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478501, 3262478501, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478502, 3262478502, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478503, 3262478503, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478504, 3262478504, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478505, 3262478505, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478506, 3262478506, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478507, 3262478507, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478508, 3262478508, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478509, 3262478509, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478510, 3262478513, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478514, 3262478514, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478515, 3262478515, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478516, 3262478516, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478517, 3262478519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478520, 3262478520, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478521, 3262478521, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478522, 3262478522, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478523, 3262478523, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478524, 3262478524, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478525, 3262478526, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478527, 3262478527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478528, 3262478528, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478529, 3262478529, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478530, 3262478530, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478531, 3262478531, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478532, 3262478536, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478537, 3262478537, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478538, 3262478538, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478539, 3262478539, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478540, 3262478540, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478541, 3262478542, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478543, 3262478543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478544, 3262478544, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478545, 3262478546, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478547, 3262478547, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478548, 3262478548, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478549, 3262478549, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478550, 3262478550, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478551, 3262478551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478552, 3262478552, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478553, 3262478553, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478554, 3262478554, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478555, 3262478555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478556, 3262478556, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478557, 3262478557, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478558, 3262478558, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478559, 3262478560, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478561, 3262478562, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478563, 3262478563, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478564, 3262478564, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478565, 3262478566, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478567, 3262478567, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478568, 3262478568, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478569, 3262478569, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478570, 3262478570, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478571, 3262478594, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478595, 3262478595, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478596, 3262478596, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478597, 3262478597, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478598, 3262478599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478600, 3262478600, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478601, 3262478601, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478602, 3262478602, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478603, 3262478604, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478605, 3262478605, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478606, 3262478606, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478607, 3262478607, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478608, 3262478608, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478609, 3262478609, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478610, 3262478610, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478611, 3262478611, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478612, 3262478620, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478621, 3262478621, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478622, 3262478622, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478623, 3262478623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478624, 3262478624, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478625, 3262478625, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478626, 3262478626, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478627, 3262478627, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478628, 3262478628, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478629, 3262478629, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478630, 3262478630, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478631, 3262478631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478632, 3262478632, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478633, 3262478633, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478634, 3262478634, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478635, 3262478635, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478636, 3262478636, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478637, 3262478637, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478638, 3262478639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478640, 3262478640, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478641, 3262478641, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478642, 3262478642, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478643, 3262478643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478644, 3262478644, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478645, 3262478645, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478646, 3262478646, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478647, 3262478647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478648, 3262478648, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478649, 3262478649, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478650, 3262478650, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478651, 3262478651, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478652, 3262478653, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478654, 3262478655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478656, 3262478656, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478657, 3262478657, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478658, 3262478658, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478659, 3262478659, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478660, 3262478660, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478661, 3262478661, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478662, 3262478662, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478663, 3262478663, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478664, 3262478664, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478665, 3262478665, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478666, 3262478666, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478667, 3262478667, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478668, 3262478668, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478669, 3262478670, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478671, 3262478671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478672, 3262478673, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478674, 3262478674, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478675, 3262478675, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478676, 3262478676, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478677, 3262478677, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478678, 3262478678, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478679, 3262478679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478680, 3262478680, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478681, 3262478681, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478682, 3262478682, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478683, 3262478683, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478684, 3262478684, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478685, 3262478685, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478686, 3262478686, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478687, 3262478687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478688, 3262478688, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478689, 3262478689, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478690, 3262478690, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478691, 3262478691, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478692, 3262478692, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478693, 3262478693, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478694, 3262478694, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478695, 3262478695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478696, 3262478696, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478697, 3262478697, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478698, 3262478698, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478699, 3262478699, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478700, 3262478700, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478701, 3262478701, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478702, 3262478702, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478703, 3262478703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478704, 3262478704, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478705, 3262478706, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478707, 3262478707, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478708, 3262478721, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478722, 3262478722, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478723, 3262478724, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478725, 3262478725, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478726, 3262478726, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478727, 3262478727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478728, 3262478728, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478729, 3262478729, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478730, 3262478730, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478731, 3262478731, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478732, 3262478732, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478733, 3262478733, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478734, 3262478734, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478735, 3262478735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478736, 3262478736, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478737, 3262478737, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478738, 3262478738, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478739, 3262478739, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478740, 3262478740, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478741, 3262478741, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478742, 3262478742, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478743, 3262478743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478744, 3262478744, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478745, 3262478745, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478746, 3262478746, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478747, 3262478747, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478748, 3262478748, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478749, 3262478751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478752, 3262478752, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478753, 3262478753, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478754, 3262478754, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478755, 3262478755, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478756, 3262478756, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478757, 3262478757, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478758, 3262478758, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478759, 3262478759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478760, 3262478760, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478761, 3262478761, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478762, 3262478762, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478763, 3262478763, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478764, 3262478764, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478765, 3262478766, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478767, 3262478767, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478768, 3262478768, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478769, 3262478769, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478770, 3262478770, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478771, 3262478771, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478772, 3262478772, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478773, 3262478773, N'CZ', N'Czech Republic') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478774, 3262478774, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478775, 3262478775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478776, 3262478776, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478777, 3262478778, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478779, 3262478779, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478780, 3262478780, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478781, 3262478781, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478782, 3262478782, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478783, 3262478783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478784, 3262478785, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478786, 3262478786, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478787, 3262478787, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478788, 3262478788, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478789, 3262478789, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478790, 3262478790, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478791, 3262478791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478792, 3262478792, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478793, 3262478793, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478794, 3262478794, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478795, 3262478795, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478796, 3262478796, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478797, 3262478797, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478798, 3262478798, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478799, 3262478799, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478800, 3262478800, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478801, 3262478801, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478802, 3262478802, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478803, 3262478803, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478804, 3262478804, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478805, 3262478806, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478807, 3262478807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478808, 3262478808, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478809, 3262478809, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478810, 3262478810, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478811, 3262478811, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478812, 3262478812, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478813, 3262478813, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478814, 3262478851, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478852, 3262478853, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478854, 3262478855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478856, 3262478856, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478857, 3262478857, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478858, 3262478860, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478861, 3262478861, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478862, 3262478862, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478863, 3262478863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478864, 3262478864, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478865, 3262478865, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478866, 3262478866, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478867, 3262478867, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478868, 3262478868, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478869, 3262478870, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478871, 3262478872, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478873, 3262478873, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478874, 3262478874, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478875, 3262478875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478876, 3262478876, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478877, 3262478877, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478878, 3262478878, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478879, 3262478881, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478882, 3262478882, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478883, 3262478886, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478887, 3262478887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478888, 3262478888, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478889, 3262478890, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478891, 3262478893, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478894, 3262478894, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478895, 3262478895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478896, 3262478896, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478897, 3262478897, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478898, 3262478898, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478899, 3262478899, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478900, 3262478900, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478901, 3262478901, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478902, 3262478902, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478903, 3262478904, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478905, 3262478905, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478906, 3262478909, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478910, 3262478910, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478911, 3262478911, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478912, 3262478912, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478913, 3262478913, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478914, 3262478914, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478915, 3262478915, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478916, 3262478919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478920, 3262478920, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478921, 3262478921, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478922, 3262478924, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478925, 3262478925, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478926, 3262478926, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478927, 3262478927, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478928, 3262478928, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478929, 3262478929, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478930, 3262478931, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478932, 3262478932, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478933, 3262478935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478936, 3262478937, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478938, 3262478938, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478939, 3262478939, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478940, 3262478940, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478941, 3262478941, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478942, 3262478942, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478943, 3262478943, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478944, 3262478945, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478946, 3262478946, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478947, 3262478947, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478948, 3262478948, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478949, 3262478949, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478950, 3262478952, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478953, 3262478953, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478954, 3262478954, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478955, 3262478955, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478956, 3262478956, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478957, 3262478957, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478958, 3262478958, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478959, 3262478961, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478962, 3262478963, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478964, 3262478964, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478965, 3262478966, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478967, 3262478967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478968, 3262478968, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478969, 3262478969, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478970, 3262478970, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478971, 3262478971, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478972, 3262478972, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478973, 3262478973, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478974, 3262478974, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478975, 3262478980, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478981, 3262478981, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478982, 3262478982, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478983, 3262478983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478984, 3262478984, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478985, 3262478985, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478986, 3262478986, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478987, 3262478987, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478988, 3262478988, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478989, 3262478989, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478990, 3262478990, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478991, 3262478992, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478993, 3262478993, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478994, 3262478997, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478998, 3262478998, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262478999, 3262478999, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479000, 3262479000, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479001, 3262479001, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479002, 3262479002, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479003, 3262479003, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479004, 3262479007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479008, 3262479008, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479009, 3262479009, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479010, 3262479011, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479012, 3262479012, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479013, 3262479013, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479014, 3262479014, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479015, 3262479015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479016, 3262479016, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479017, 3262479017, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479018, 3262479018, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479019, 3262479019, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479020, 3262479022, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479023, 3262479024, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479025, 3262479025, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479026, 3262479027, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479028, 3262479028, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479029, 3262479029, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479030, 3262479030, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479031, 3262479031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479032, 3262479036, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479037, 3262479037, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479038, 3262479038, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479039, 3262479039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479040, 3262479040, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479041, 3262479041, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479042, 3262479042, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479043, 3262479043, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479044, 3262479044, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479045, 3262479045, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479046, 3262479046, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479047, 3262479047, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479048, 3262479048, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479049, 3262479050, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479051, 3262479051, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479052, 3262479052, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479053, 3262479053, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479054, 3262479055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479056, 3262479056, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479057, 3262479057, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479058, 3262479058, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479059, 3262479059, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479060, 3262479062, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479063, 3262479063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479064, 3262479065, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479066, 3262479066, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479067, 3262479067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479068, 3262479068, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479069, 3262479069, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479070, 3262479070, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479071, 3262479074, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479075, 3262479075, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479076, 3262479076, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479077, 3262479077, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479078, 3262479078, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479079, 3262479079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479080, 3262479080, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479081, 3262479081, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479082, 3262479082, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479083, 3262479083, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479084, 3262479084, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479085, 3262479085, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479086, 3262479086, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479087, 3262479088, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479089, 3262479089, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479090, 3262479090, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479091, 3262479091, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479092, 3262479092, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479093, 3262479093, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479094, 3262479095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479096, 3262479096, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479097, 3262479097, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479098, 3262479098, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479099, 3262479099, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479100, 3262479100, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479101, 3262479101, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479102, 3262479102, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479103, 3262479105, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479106, 3262479106, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479107, 3262479107, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479108, 3262479108, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479109, 3262479109, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479110, 3262479110, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479111, 3262479111, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479112, 3262479115, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479116, 3262479116, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479117, 3262479117, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479118, 3262479118, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479119, 3262479120, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479121, 3262479121, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479122, 3262479122, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479123, 3262479123, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479124, 3262479124, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479125, 3262479125, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479126, 3262479130, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479131, 3262479131, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479132, 3262479132, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479133, 3262479133, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479134, 3262479134, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479135, 3262479139, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479140, 3262479140, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479141, 3262479142, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479143, 3262479143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479144, 3262479144, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479145, 3262479145, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479146, 3262479146, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479147, 3262479147, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479148, 3262479149, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479150, 3262479151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479152, 3262479152, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479153, 3262479153, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479154, 3262479154, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479155, 3262479155, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479156, 3262479156, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479157, 3262479157, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479158, 3262479158, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479159, 3262479159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479160, 3262479160, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479161, 3262479161, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479162, 3262479162, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479163, 3262479163, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479164, 3262479164, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479165, 3262479167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479168, 3262479168, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479169, 3262479169, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479170, 3262479170, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479171, 3262479171, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479172, 3262479174, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479175, 3262479175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479176, 3262479178, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479179, 3262479179, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479180, 3262479180, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479181, 3262479181, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479182, 3262479182, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479183, 3262479183, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479184, 3262479184, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479185, 3262479185, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479186, 3262479186, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479187, 3262479187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479188, 3262479188, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479189, 3262479189, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479190, 3262479191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479192, 3262479192, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479193, 3262479193, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479194, 3262479194, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479195, 3262479195, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479196, 3262479196, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479197, 3262479197, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479198, 3262479199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479200, 3262479200, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479201, 3262479201, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479202, 3262479202, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479203, 3262479208, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479209, 3262479209, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479210, 3262479212, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479213, 3262479213, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479214, 3262479214, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479215, 3262479215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479216, 3262479219, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479220, 3262479220, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479221, 3262479223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479224, 3262479224, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479225, 3262479225, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479226, 3262479226, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479227, 3262479227, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479228, 3262479228, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479229, 3262479233, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479234, 3262479234, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479235, 3262479236, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479237, 3262479238, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479239, 3262479239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479240, 3262479240, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479241, 3262479242, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479243, 3262479243, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479244, 3262479244, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479245, 3262479249, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479250, 3262479250, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479251, 3262479252, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479253, 3262479253, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479254, 3262479254, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479255, 3262479255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479256, 3262479256, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479257, 3262479257, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479258, 3262479261, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479262, 3262479262, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479263, 3262479264, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479265, 3262479265, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479266, 3262479266, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479267, 3262479267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479268, 3262479268, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479269, 3262479269, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479270, 3262479271, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479272, 3262479272, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479273, 3262479273, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479274, 3262479274, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479275, 3262479275, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479276, 3262479276, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479277, 3262479277, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479278, 3262479278, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479279, 3262479279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479280, 3262479280, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479281, 3262479281, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479282, 3262479282, N'AD', N'Andorra') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479283, 3262479283, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479284, 3262479284, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479285, 3262479285, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479286, 3262479289, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479290, 3262479290, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479291, 3262479293, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479294, 3262479294, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479295, 3262479295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479296, 3262479296, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479297, 3262479298, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479299, 3262479299, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479300, 3262479300, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479301, 3262479301, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479302, 3262479303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479304, 3262479304, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479305, 3262479307, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479308, 3262479308, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479309, 3262479309, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479310, 3262479310, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479311, 3262479311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479312, 3262479312, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479313, 3262479313, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479314, 3262479318, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479319, 3262479319, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479320, 3262479320, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479321, 3262479321, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479322, 3262479323, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479324, 3262479324, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479325, 3262479325, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479326, 3262479327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479328, 3262479328, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479329, 3262479329, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479330, 3262479330, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479331, 3262479332, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479333, 3262479333, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479334, 3262479334, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479335, 3262479335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479336, 3262479336, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479337, 3262479337, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479338, 3262479338, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479339, 3262479339, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479340, 3262479340, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479341, 3262479341, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479342, 3262479342, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479343, 3262479343, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479344, 3262479344, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479345, 3262479345, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479346, 3262479346, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479347, 3262479347, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479348, 3262479350, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479351, 3262479351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479352, 3262479352, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479353, 3262479353, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479354, 3262479355, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479356, 3262479356, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479357, 3262479357, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479358, 3262479361, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479362, 3262479362, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479363, 3262479366, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479367, 3262479367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479368, 3262479368, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479369, 3262479369, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479370, 3262479370, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479371, 3262479371, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479372, 3262479372, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479373, 3262479373, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479374, 3262479374, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479375, 3262479375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479376, 3262479377, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479378, 3262479378, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479379, 3262479379, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479380, 3262479380, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479381, 3262479381, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479382, 3262479385, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479386, 3262479386, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479387, 3262479387, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479388, 3262479389, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479390, 3262479390, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479391, 3262479391, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479392, 3262479393, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479394, 3262479394, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479395, 3262479395, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479396, 3262479396, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479397, 3262479397, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479398, 3262479399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479400, 3262479400, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479401, 3262479402, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479403, 3262479403, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479404, 3262479404, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479405, 3262479405, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479406, 3262479406, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479407, 3262479410, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479411, 3262479411, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479412, 3262479413, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479414, 3262479414, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479415, 3262479415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479416, 3262479416, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479417, 3262479419, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479420, 3262479420, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479421, 3262479421, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479422, 3262479422, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479423, 3262479423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479424, 3262479426, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479427, 3262479427, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479428, 3262479429, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479430, 3262479430, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479431, 3262479432, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479433, 3262479433, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479434, 3262479434, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479435, 3262479437, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479438, 3262479438, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479439, 3262479439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479440, 3262479440, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479441, 3262479441, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479442, 3262479442, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479443, 3262479443, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479444, 3262479444, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479445, 3262479445, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479446, 3262479446, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479447, 3262479448, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479449, 3262479449, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479450, 3262479452, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479453, 3262479453, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479454, 3262479455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479456, 3262479456, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479457, 3262479462, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479463, 3262479463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479464, 3262479465, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479466, 3262479466, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479467, 3262479467, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479468, 3262479469, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479470, 3262479471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479472, 3262479472, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479473, 3262479473, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479474, 3262479474, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479475, 3262479475, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479476, 3262479476, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479477, 3262479477, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479478, 3262479478, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479479, 3262479480, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479481, 3262479481, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479482, 3262479482, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479483, 3262479483, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479484, 3262479484, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479485, 3262479489, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479490, 3262479490, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479491, 3262479492, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479493, 3262479493, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479494, 3262479494, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479495, 3262479495, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479496, 3262479498, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479499, 3262479499, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479500, 3262479502, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479503, 3262479503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479504, 3262479504, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479505, 3262479507, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479508, 3262479508, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479509, 3262479509, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479510, 3262479513, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479514, 3262479514, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479515, 3262479515, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479516, 3262479516, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479517, 3262479517, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479518, 3262479518, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479519, 3262479519, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479520, 3262479521, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479522, 3262479522, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479523, 3262479526, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479527, 3262479528, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479529, 3262479529, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479530, 3262479530, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479531, 3262479535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479536, 3262479536, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479537, 3262479538, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479539, 3262479539, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479540, 3262479540, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479541, 3262479541, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479542, 3262479543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479544, 3262479544, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479545, 3262479545, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479546, 3262479546, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479547, 3262479547, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479548, 3262479548, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479549, 3262479549, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479550, 3262479552, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479553, 3262479553, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479554, 3262479554, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479555, 3262479555, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479556, 3262479556, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479557, 3262479558, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479559, 3262479559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479560, 3262479560, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479561, 3262479561, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479562, 3262479562, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479563, 3262479563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479564, 3262479564, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479565, 3262479565, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479566, 3262479566, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479567, 3262479567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479568, 3262479568, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479569, 3262479572, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479573, 3262479573, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479574, 3262479574, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479575, 3262479575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479576, 3262479576, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479577, 3262479577, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479578, 3262479578, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479579, 3262479579, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479580, 3262479580, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479581, 3262479581, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479582, 3262479583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479584, 3262479584, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479585, 3262479585, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479586, 3262479586, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479587, 3262479588, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479589, 3262479589, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479590, 3262479590, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479591, 3262479591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479592, 3262479592, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479593, 3262479593, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479594, 3262479594, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479595, 3262479596, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479597, 3262479598, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479599, 3262479600, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479601, 3262479601, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479602, 3262479602, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479603, 3262479604, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479605, 3262479605, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479606, 3262479606, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479607, 3262479607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479608, 3262479609, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479610, 3262479610, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479611, 3262479611, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479612, 3262479612, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479613, 3262479613, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479614, 3262479617, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479618, 3262479618, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479619, 3262479619, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479620, 3262479620, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479621, 3262479622, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479623, 3262479623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479624, 3262479624, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479625, 3262479625, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479626, 3262479626, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479627, 3262479628, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479629, 3262479629, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479630, 3262479630, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479631, 3262479631, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479632, 3262479632, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479633, 3262479633, N'LU', N'Luxembourg') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479634, 3262479634, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479635, 3262479636, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479637, 3262479637, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479638, 3262479638, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479639, 3262479639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479640, 3262479640, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479641, 3262479641, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479642, 3262479642, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479643, 3262479643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479644, 3262479644, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479645, 3262479645, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479646, 3262479646, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479647, 3262479647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479648, 3262479648, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479649, 3262479653, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479654, 3262479654, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479655, 3262479655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479656, 3262479656, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479657, 3262479657, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479658, 3262479658, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479659, 3262479659, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479660, 3262479660, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479661, 3262479662, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479663, 3262479664, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479665, 3262479665, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479666, 3262479667, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479668, 3262479668, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479669, 3262479669, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479670, 3262479670, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479671, 3262479671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479672, 3262479673, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479674, 3262479674, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479675, 3262479676, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479677, 3262479677, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479678, 3262479678, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479679, 3262479679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479680, 3262479680, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479681, 3262479681, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479682, 3262479682, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479683, 3262479683, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479684, 3262479685, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479686, 3262479687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479688, 3262479688, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479689, 3262479689, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479690, 3262479690, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479691, 3262479691, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479692, 3262479692, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479693, 3262479693, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479694, 3262479694, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479695, 3262479695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479696, 3262479696, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479697, 3262479697, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479698, 3262479698, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479699, 3262479701, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479702, 3262479702, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479703, 3262479703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479704, 3262479707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479708, 3262479708, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479709, 3262479709, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479710, 3262479711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479712, 3262479712, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479713, 3262479713, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479714, 3262479714, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479715, 3262479715, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479716, 3262479716, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479717, 3262479717, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479718, 3262479720, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479721, 3262479721, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479722, 3262479724, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479725, 3262479725, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479726, 3262479727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479728, 3262479728, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479729, 3262479730, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479731, 3262479731, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479732, 3262479732, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479733, 3262479734, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479735, 3262479736, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479737, 3262479737, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479738, 3262479738, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479739, 3262479739, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479740, 3262479740, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479741, 3262479741, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479742, 3262479742, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479743, 3262479745, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479746, 3262479746, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479747, 3262479747, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479748, 3262479748, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479749, 3262479749, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479750, 3262479750, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479751, 3262479751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479752, 3262479752, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479753, 3262479753, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479754, 3262479754, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479755, 3262479755, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479756, 3262479756, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479757, 3262479757, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479758, 3262479762, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479763, 3262479763, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479764, 3262479764, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479765, 3262479765, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479766, 3262479766, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479767, 3262479770, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479771, 3262479771, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479772, 3262479774, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479775, 3262479775, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479776, 3262479776, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479777, 3262479777, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479778, 3262479778, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479779, 3262479782, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479783, 3262479783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479784, 3262479784, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479785, 3262479785, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479786, 3262479786, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479787, 3262479788, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479789, 3262479789, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479790, 3262479790, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479791, 3262479792, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479793, 3262479793, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479794, 3262479794, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479795, 3262479795, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479796, 3262479797, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479798, 3262479799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479800, 3262479808, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479809, 3262479809, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479810, 3262479810, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479811, 3262479811, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479812, 3262479812, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479813, 3262479816, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479817, 3262479817, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479818, 3262479818, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479819, 3262479819, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479820, 3262479820, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479821, 3262479822, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479823, 3262479823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479824, 3262479824, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479825, 3262479825, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479826, 3262479826, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479827, 3262479827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479828, 3262479829, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479830, 3262479830, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479831, 3262479832, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479833, 3262479833, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479834, 3262479834, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479835, 3262479835, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479836, 3262479836, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479837, 3262479837, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479838, 3262479838, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479839, 3262479839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479840, 3262479840, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479841, 3262479841, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479842, 3262479842, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479843, 3262479843, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479844, 3262479844, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479845, 3262479845, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479846, 3262479846, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479847, 3262479847, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479848, 3262479852, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479853, 3262479853, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479854, 3262479855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479856, 3262479856, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479857, 3262479859, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479860, 3262479860, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479861, 3262479861, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479862, 3262479862, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479863, 3262479863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479864, 3262479864, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479865, 3262479865, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479866, 3262479866, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479867, 3262479867, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479868, 3262479868, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479869, 3262479869, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479870, 3262479873, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479874, 3262479875, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479876, 3262479876, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479877, 3262479877, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479878, 3262479879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479880, 3262479880, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479881, 3262479881, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479882, 3262479883, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479884, 3262479884, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479885, 3262479886, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479887, 3262479887, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479888, 3262479888, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479889, 3262479889, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479890, 3262479892, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479893, 3262479893, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479894, 3262479894, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479895, 3262479896, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479897, 3262479899, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479900, 3262479900, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479901, 3262479901, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479902, 3262479902, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479903, 3262479903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479904, 3262479908, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479909, 3262479909, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479910, 3262479912, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479913, 3262479913, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479914, 3262479914, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479915, 3262479915, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479916, 3262479917, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479918, 3262479918, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479919, 3262479922, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479923, 3262479923, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479924, 3262479929, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479930, 3262479930, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479931, 3262479931, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479932, 3262479932, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479933, 3262479933, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479934, 3262479935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479936, 3262479936, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479937, 3262479937, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479938, 3262479939, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479940, 3262479940, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479941, 3262479941, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479942, 3262479944, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479945, 3262479945, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479946, 3262479946, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479947, 3262479947, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479948, 3262479948, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479949, 3262479949, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479950, 3262479950, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479951, 3262479953, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479954, 3262479954, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479955, 3262479955, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479956, 3262479956, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479957, 3262479957, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479958, 3262479959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479960, 3262479960, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479961, 3262479961, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479962, 3262479962, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479963, 3262479963, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479964, 3262479964, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479965, 3262479965, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479966, 3262479974, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479975, 3262479975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479976, 3262479976, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479977, 3262479978, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479979, 3262479979, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479980, 3262479980, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479981, 3262479984, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479985, 3262479985, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479986, 3262479987, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479988, 3262479988, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479989, 3262479989, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479990, 3262479990, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479991, 3262479991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479992, 3262479992, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479993, 3262479993, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479994, 3262479994, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479995, 3262479995, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479996, 3262479996, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262479997, 3262480001, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480002, 3262480002, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480003, 3262480005, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480006, 3262480006, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480007, 3262480009, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480010, 3262480010, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480011, 3262480011, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480012, 3262480012, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480013, 3262480015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480016, 3262480016, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480017, 3262480018, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480019, 3262480019, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480020, 3262480020, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480021, 3262480021, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480022, 3262480022, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480023, 3262480029, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480030, 3262480030, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480031, 3262480031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480032, 3262480032, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480033, 3262480033, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480034, 3262480034, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480035, 3262480035, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480036, 3262480037, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480038, 3262480038, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480039, 3262480039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480040, 3262480040, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480041, 3262480041, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480042, 3262480042, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480043, 3262480043, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480044, 3262480044, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480045, 3262480045, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480046, 3262480048, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480049, 3262480049, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480050, 3262480051, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480052, 3262480052, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480053, 3262480057, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480058, 3262480058, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480059, 3262480059, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480060, 3262480060, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480061, 3262480062, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480063, 3262480063, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480064, 3262480066, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480067, 3262480067, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480068, 3262480071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480072, 3262480072, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480073, 3262480073, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480074, 3262480074, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480075, 3262480076, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480077, 3262480078, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480079, 3262480080, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480081, 3262480081, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480082, 3262480082, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480083, 3262480083, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480084, 3262480084, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480085, 3262480085, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480086, 3262480087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480088, 3262480088, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480089, 3262480089, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480090, 3262480090, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480091, 3262480092, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480093, 3262480093, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480094, 3262480094, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480095, 3262480095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480096, 3262480097, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480098, 3262480098, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480099, 3262480104, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480105, 3262480105, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480106, 3262480106, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480107, 3262480107, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480108, 3262480109, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480110, 3262480110, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480111, 3262480111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480112, 3262480112, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480113, 3262480113, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480114, 3262480114, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480115, 3262480116, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480117, 3262480117, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480118, 3262480125, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480126, 3262480126, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480127, 3262480133, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480134, 3262480134, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480135, 3262480135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480136, 3262480136, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480137, 3262480139, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480140, 3262480140, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480141, 3262480141, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480142, 3262480146, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480147, 3262480147, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480148, 3262480148, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480149, 3262480150, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480151, 3262480151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480152, 3262480154, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480155, 3262480155, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480156, 3262480158, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480159, 3262480159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480160, 3262480161, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480162, 3262480162, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480163, 3262480164, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480165, 3262480165, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480166, 3262480172, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480173, 3262480173, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480174, 3262480174, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480175, 3262480175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480176, 3262480176, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480177, 3262480177, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480178, 3262480178, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480179, 3262480179, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480180, 3262480180, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480181, 3262480181, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480182, 3262480182, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480183, 3262480183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480184, 3262480184, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480185, 3262480185, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480186, 3262480186, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480187, 3262480187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480188, 3262480188, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480189, 3262480189, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480190, 3262480190, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480191, 3262480191, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480192, 3262480193, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480194, 3262480194, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480195, 3262480195, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480196, 3262480197, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480198, 3262480198, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480199, 3262480199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480200, 3262480201, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480202, 3262480202, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480203, 3262480205, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480206, 3262480206, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480207, 3262480212, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480213, 3262480213, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480214, 3262480215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480216, 3262480216, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480217, 3262480218, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480219, 3262480219, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480220, 3262480220, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480221, 3262480221, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480222, 3262480226, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480227, 3262480227, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480228, 3262480229, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480230, 3262480230, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480231, 3262480232, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480233, 3262480233, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480234, 3262480234, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480235, 3262480235, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480236, 3262480236, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480237, 3262480237, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480238, 3262480238, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480239, 3262480239, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480240, 3262480243, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480244, 3262480244, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480245, 3262480246, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480247, 3262480247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480248, 3262480248, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480249, 3262480249, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480250, 3262480250, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480251, 3262480251, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480252, 3262480253, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480254, 3262480254, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480255, 3262480259, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480260, 3262480260, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480261, 3262480261, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480262, 3262480264, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480265, 3262480265, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480266, 3262480267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480268, 3262480268, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480269, 3262480269, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480270, 3262480270, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480271, 3262480271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480272, 3262480272, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480273, 3262480273, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480274, 3262480274, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480275, 3262480275, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480276, 3262480276, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480277, 3262480277, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480278, 3262480278, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480279, 3262480282, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480283, 3262480283, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480284, 3262480285, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480286, 3262480286, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480287, 3262480293, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480294, 3262480294, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480295, 3262480295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480296, 3262480296, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480297, 3262480300, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480301, 3262480301, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480302, 3262480302, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480303, 3262480304, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480305, 3262480305, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480306, 3262480306, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480307, 3262480311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480312, 3262480312, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480313, 3262480313, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480314, 3262480314, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480315, 3262480315, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480316, 3262480316, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480317, 3262480317, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480318, 3262480318, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480319, 3262480319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480320, 3262480320, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480321, 3262480321, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480322, 3262480322, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480323, 3262480324, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480325, 3262480325, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480326, 3262480329, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480330, 3262480330, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480331, 3262480331, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480332, 3262480332, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480333, 3262480333, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480334, 3262480334, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480335, 3262480335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480336, 3262480336, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480337, 3262480337, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480338, 3262480340, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480341, 3262480341, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480342, 3262480342, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480343, 3262480343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480344, 3262480344, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480345, 3262480345, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480346, 3262480346, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480347, 3262480347, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480348, 3262480348, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480349, 3262480349, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480350, 3262480352, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480353, 3262480353, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480354, 3262480354, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480355, 3262480355, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480356, 3262480356, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480357, 3262480357, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480358, 3262480359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480360, 3262480363, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480364, 3262480364, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480365, 3262480365, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480366, 3262480366, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480367, 3262480367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480368, 3262480368, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480369, 3262480369, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480370, 3262480370, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480371, 3262480371, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480372, 3262480372, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480373, 3262480373, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480374, 3262480374, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480375, 3262480375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480376, 3262480376, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480377, 3262480377, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480378, 3262480378, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480379, 3262480379, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480380, 3262480380, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480381, 3262480381, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480382, 3262480382, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480383, 3262480383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262480384, 3262488575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262488576, 3262489727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262489728, 3262489731, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262489732, 3262489735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262489736, 3262489739, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262489740, 3262496767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262496768, 3262504959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262504960, 3262505471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262505472, 3262505983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262505984, 3262506495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262506496, 3262507007, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262507008, 3262507519, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262507520, 3262509055, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262509056, 3262509567, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262509568, 3262510079, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262510080, 3262511103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262511104, 3262511615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262511616, 3262512127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262512128, 3262512639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262512640, 3262513151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262513152, 3262578687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262578688, 3262611455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262611456, 3262627839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262627840, 3262636031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262636032, 3262644223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262644224, 3262644479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262644480, 3262710527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262710528, 3262712423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262712424, 3262712431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262712432, 3262712575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262712576, 3262712831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262712832, 3262714871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262714872, 3262714879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262714880, 3262715135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262715136, 3262716671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262716672, 3262719631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262719632, 3262719639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262719640, 3262719839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262719840, 3262726911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262726912, 3262726919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262726920, 3262726927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262726928, 3262727143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727144, 3262727151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727152, 3262727183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727184, 3262727191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727192, 3262727199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727200, 3262727207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727208, 3262727503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727504, 3262727511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727512, 3262727631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727632, 3262727639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727640, 3262727663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727664, 3262727671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727672, 3262727791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727792, 3262727799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727800, 3262727871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727872, 3262727879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727880, 3262727935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727936, 3262727943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727944, 3262727983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262727984, 3262727999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728000, 3262728015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728016, 3262728023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728024, 3262728183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728184, 3262728191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728192, 3262728215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728216, 3262728223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728224, 3262728271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728272, 3262728279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728280, 3262728431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728432, 3262728439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728440, 3262728591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728592, 3262728599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728600, 3262728671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728672, 3262728679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728680, 3262728711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728712, 3262728719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728720, 3262728727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728728, 3262728735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728736, 3262728775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728776, 3262728783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262728784, 3262729535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262729536, 3262729543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262729544, 3262730199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730200, 3262730207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730208, 3262730359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730360, 3262730367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730368, 3262730463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730464, 3262730471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730472, 3262730519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730520, 3262730527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730528, 3262730911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730912, 3262730919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262730920, 3262731023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731024, 3262731031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731032, 3262731039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731040, 3262731047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731048, 3262731063, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731064, 3262731071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731072, 3262731095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731096, 3262731111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731112, 3262731231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731232, 3262731239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731240, 3262731351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731352, 3262731359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731360, 3262731439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731440, 3262731447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731448, 3262731519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731520, 3262731527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731528, 3262731703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731704, 3262731711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262731712, 3262732175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732176, 3262732183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732184, 3262732311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732312, 3262732319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732320, 3262732415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732416, 3262732423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732424, 3262732575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732576, 3262732583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732584, 3262732679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732680, 3262732687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732688, 3262732703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732704, 3262732711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732712, 3262732735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732736, 3262732743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732744, 3262732775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732776, 3262732783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732784, 3262732799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262732800, 3262741503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262741504, 3262741631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262741632, 3262741639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262741640, 3262741855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262741856, 3262741863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262741864, 3262742415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262742416, 3262742423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262742424, 3262743143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262743144, 3262743151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262743152, 3262743231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262743232, 3262743239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262743240, 3262744279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262744280, 3262744287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262744288, 3262744367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262744368, 3262744375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262744376, 3262745287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262745288, 3262745295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262745296, 3262745751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262745752, 3262745759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262745760, 3262746071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262746072, 3262746079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262746080, 3262746687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262746688, 3262746695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262746696, 3262747071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262747072, 3262747079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262747080, 3262747175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262747176, 3262747183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262747184, 3262747191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262747192, 3262747199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262747200, 3262749303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262749304, 3262749311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262749312, 3262749583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262749584, 3262749591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262749592, 3262750359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262750360, 3262750367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262750368, 3262750511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262750512, 3262750519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262750520, 3262750663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262750664, 3262750671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262750672, 3262751015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262751016, 3262751023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262751024, 3262751279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262751280, 3262751287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262751288, 3262753791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262753792, 3262754823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262754824, 3262755983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262755984, 3262755991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262755992, 3262756391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262756392, 3262756399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262756400, 3262758167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262758168, 3262758175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262758176, 3262760543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262760544, 3262760551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262760552, 3262760839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262760840, 3262760847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262760848, 3262761727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262761728, 3262761983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262761984, 3262766079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262766080, 3262767103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262767104, 3262767831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262767832, 3262767839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262767840, 3262767895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262767896, 3262767903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262767904, 3262767975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262767976, 3262767983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262767984, 3262768071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768072, 3262768079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768080, 3262768111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768112, 3262768127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768128, 3262768151, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768152, 3262768159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768160, 3262768223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768224, 3262768231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768232, 3262768319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768320, 3262768327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768328, 3262768415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768416, 3262768423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768424, 3262768727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768728, 3262768735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262768736, 3262769415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769416, 3262769431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769432, 3262769655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769656, 3262769663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769664, 3262769687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769688, 3262769695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769696, 3262769775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769776, 3262769783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769784, 3262769831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769832, 3262769839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769840, 3262769911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769912, 3262769919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769920, 3262769975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769976, 3262769983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262769984, 3262770135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770136, 3262770143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770144, 3262770199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770200, 3262770207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770208, 3262770247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770248, 3262770255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770256, 3262770287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770288, 3262770295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770296, 3262770319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770320, 3262770327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770328, 3262770671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770672, 3262770679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770680, 3262770767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770768, 3262770775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770776, 3262770815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770816, 3262770823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262770824, 3262771023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771024, 3262771031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771032, 3262771143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771144, 3262771151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771152, 3262771159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771160, 3262771167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771168, 3262771199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771200, 3262771207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771208, 3262771231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771232, 3262771239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771240, 3262771439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771440, 3262771447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771448, 3262771679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771680, 3262771687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771688, 3262771751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771752, 3262771759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771760, 3262771919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771920, 3262771927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262771928, 3262772063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772064, 3262772071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772072, 3262772183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772184, 3262772191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772192, 3262772375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772376, 3262772383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772384, 3262772647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772648, 3262772655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772656, 3262772663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772664, 3262772671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772672, 3262772751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772752, 3262772759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772760, 3262772775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772776, 3262772783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772784, 3262772791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772792, 3262772799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772800, 3262772887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772888, 3262772895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772896, 3262772959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772960, 3262772967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772968, 3262772975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772976, 3262772983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262772984, 3262772999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262773000, 3262773007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262773008, 3262773343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262773344, 3262773351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262773352, 3262773503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262773504, 3262775295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262775296, 3262775815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262775816, 3262775823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262775824, 3262776327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776328, 3262776335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776336, 3262776343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776344, 3262776351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776352, 3262776359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776360, 3262776367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776368, 3262776455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776456, 3262776463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776464, 3262776503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776504, 3262776511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776512, 3262776863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776864, 3262776871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262776872, 3262777151, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262777152, 3262777159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262777160, 3262777799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262777800, 3262777807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262777808, 3262777887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262777888, 3262777895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262777896, 3262778311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778312, 3262778327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778328, 3262778759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778760, 3262778767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778768, 3262778935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778936, 3262778943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778944, 3262778951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778952, 3262778959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262778960, 3262779591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779592, 3262779599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779600, 3262779615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779616, 3262779623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779624, 3262779751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779752, 3262779759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779760, 3262779791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779792, 3262779799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779800, 3262779807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779808, 3262779815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779816, 3262779839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779840, 3262779847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779848, 3262779951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779952, 3262779959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262779960, 3262780031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780032, 3262780039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780040, 3262780135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780136, 3262780143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780144, 3262780215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780216, 3262780223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780224, 3262780415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780416, 3262780423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780424, 3262780959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780960, 3262780967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262780968, 3262783119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783120, 3262783127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783128, 3262783303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783304, 3262783311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783312, 3262783863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783864, 3262783871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783872, 3262783943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783944, 3262783951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262783952, 3262784311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262784312, 3262784319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262784320, 3262784407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262784408, 3262784415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262784416, 3262785319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262785320, 3262785327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262785328, 3262785615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262785616, 3262785623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262785624, 3262785679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262785680, 3262785687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262785688, 3262786679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262786680, 3262786687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262786688, 3262787271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262787272, 3262787279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262787280, 3262787391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262787392, 3262787399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262787400, 3262787631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262787632, 3262787639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262787640, 3262788047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262788048, 3262788055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262788056, 3262788415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262788416, 3262788423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262788424, 3262788943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262788944, 3262788951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262788952, 3262789119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262789120, 3262790143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262790144, 3262790391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262790392, 3262790399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262790400, 3262790431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262790432, 3262790439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262790440, 3262791055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262791056, 3262791063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262791064, 3262793279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262793280, 3262793287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262793288, 3262794751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262794752, 3262797823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262797824, 3262798743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262798744, 3262798751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262798752, 3262798815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262798816, 3262798823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262798824, 3262799343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262799344, 3262799351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262799352, 3262800127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262800128, 3262800135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262800136, 3262801159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262801160, 3262801167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262801168, 3262803111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262803112, 3262803119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262803120, 3262803215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262803216, 3262803223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262803224, 3262804455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262804456, 3262804463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262804464, 3262805247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262805248, 3262805255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262805256, 3262805495, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262805496, 3262805503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262805504, 3262805735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262805736, 3262805751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262805752, 3262806015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262806016, 3262809087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262809088, 3262810191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262810192, 3262810199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262810200, 3262812759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262812760, 3262812767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262812768, 3262814007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262814008, 3262814015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262814016, 3262824495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824496, 3262824503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824504, 3262824727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824728, 3262824735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824736, 3262824759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824760, 3262824767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824768, 3262824807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824808, 3262824815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262824816, 3262825791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825792, 3262825799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825800, 3262825815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825816, 3262825823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825824, 3262825839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825840, 3262825847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825848, 3262825927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825928, 3262825935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262825936, 3262826167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826168, 3262826175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826176, 3262826431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826432, 3262826439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826440, 3262826471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826472, 3262826479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826480, 3262826487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826488, 3262826495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826496, 3262826503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826504, 3262826511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826512, 3262826559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826560, 3262826567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826568, 3262826631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826632, 3262826639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826640, 3262826735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826736, 3262826743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826744, 3262826759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826760, 3262826767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826768, 3262826831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826832, 3262826847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826848, 3262826919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826920, 3262826927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826928, 3262826959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826960, 3262826967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262826968, 3262827407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827408, 3262827415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827416, 3262827639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827640, 3262827647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827648, 3262827743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827744, 3262827751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827752, 3262827871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827872, 3262827879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262827880, 3262828015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828016, 3262828023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828024, 3262828159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828160, 3262828167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828168, 3262828719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828720, 3262828727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828728, 3262828735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828736, 3262828743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828744, 3262828799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828800, 3262828807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828808, 3262828855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828856, 3262828871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828872, 3262828975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828976, 3262828991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262828992, 3262829095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829096, 3262829103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829104, 3262829279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829280, 3262829287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829288, 3262829383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829384, 3262829391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829392, 3262829399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829400, 3262829407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829408, 3262829567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262829568, 3262830591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262830592, 3262831223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262831224, 3262831231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262831232, 3262832239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832240, 3262832247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832248, 3262832271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832272, 3262832279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832280, 3262832343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832344, 3262832351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832352, 3262832439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832440, 3262832447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832448, 3262832639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262832640, 3262840319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262840320, 3262841255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262841256, 3262841263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262841264, 3262842623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262842624, 3262842879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262842880, 3262844919, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262844920, 3262844927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262844928, 3262846039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262846040, 3262846047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262846048, 3262848751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262848752, 3262848759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262848760, 3262849279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262849280, 3262849287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262849288, 3262849903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262849904, 3262849911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262849912, 3262850119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262850120, 3262850135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262850136, 3262850159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262850160, 3262850167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262850168, 3262850959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262850960, 3262850967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262850968, 3262851287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262851288, 3262851295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262851296, 3262851799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262851800, 3262851807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262851808, 3262852351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262852352, 3262852607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262852608, 3262855935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262855936, 3262857215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262857216, 3262857551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262857552, 3262857559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262857560, 3262857863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262857864, 3262857871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262857872, 3262858135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858136, 3262858143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858144, 3262858527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858528, 3262858535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858536, 3262858559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858560, 3262858575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858576, 3262858607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858608, 3262858615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858616, 3262858647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858648, 3262858663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858664, 3262858951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858952, 3262858967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262858968, 3262859207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859208, 3262859215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859216, 3262859327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859328, 3262859335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859336, 3262859367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859368, 3262859375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859376, 3262859391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859392, 3262859399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859400, 3262859679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859680, 3262859687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859688, 3262859719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859720, 3262859727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859728, 3262859783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859784, 3262859791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859792, 3262859799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859800, 3262859807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859808, 3262859839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859840, 3262859847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859848, 3262859935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859936, 3262859951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262859952, 3262860079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860080, 3262860087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860088, 3262860319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860320, 3262860327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860328, 3262860559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860560, 3262860567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860568, 3262860623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860624, 3262860631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860632, 3262860751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860752, 3262860759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860760, 3262860911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860912, 3262860919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262860920, 3262861303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262861304, 3262861311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262861312, 3262862599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262862600, 3262862607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262862608, 3262863815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262863816, 3262863823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262863824, 3262864063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864064, 3262864071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864072, 3262864239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864240, 3262864247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864248, 3262864383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864384, 3262864391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864392, 3262864551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864552, 3262864559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864560, 3262864575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864576, 3262864583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864584, 3262864775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864776, 3262864783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864784, 3262864839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864840, 3262864847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262864848, 3262865327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262865328, 3262865335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262865336, 3262865951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262865952, 3262865959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262865960, 3262866103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262866104, 3262866111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262866112, 3262866495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262866496, 3262866503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262866504, 3262866599, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262866600, 3262866607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262866608, 3262867463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262867464, 3262867471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262867472, 3262867767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262867768, 3262867775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262867776, 3262868399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262868400, 3262868407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262868408, 3262868415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262868416, 3262868423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262868424, 3262868831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262868832, 3262868839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262868840, 3262869215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262869216, 3262869223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262869224, 3262869239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262869240, 3262869247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262869248, 3262869319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262869320, 3262869327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262869328, 3262870287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870288, 3262870295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870296, 3262870343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870344, 3262870351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870352, 3262870567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870568, 3262870575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870576, 3262870687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870688, 3262870695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870696, 3262870855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870856, 3262870863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262870864, 3262871551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262871552, 3262872319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262872320, 3262872751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262872752, 3262872759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262872760, 3262874383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262874384, 3262874391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262874392, 3262874463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262874464, 3262874471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262874472, 3262875079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875080, 3262875087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875088, 3262875415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875416, 3262875423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875424, 3262875455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875456, 3262875471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875472, 3262875479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875480, 3262875487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875488, 3262875503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875504, 3262875511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875512, 3262875519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875520, 3262875527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875528, 3262875831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875832, 3262875839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875840, 3262875903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875904, 3262875911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262875912, 3262876047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876048, 3262876055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876056, 3262876063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876064, 3262876071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876072, 3262876167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876168, 3262876175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876176, 3262876207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876208, 3262876215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876216, 3262876295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876296, 3262876303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876304, 3262876495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876496, 3262876503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876504, 3262876719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876720, 3262876727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876728, 3262876751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876752, 3262876759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876760, 3262876799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876800, 3262876807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876808, 3262876927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262876928, 3262877951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262877952, 3262878215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262878216, 3262878223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262878224, 3262879911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262879912, 3262879919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262879920, 3262882559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262882560, 3262883071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262883072, 3262883191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262883192, 3262883199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262883200, 3262886255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262886256, 3262886263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262886264, 3262886799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262886800, 3262886847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262886848, 3262886855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262886856, 3262886919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262886920, 3262887903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262887904, 3262887911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262887912, 3262888183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262888184, 3262888191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262888192, 3262888399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262888400, 3262888407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262888408, 3262888639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262888640, 3262888647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262888648, 3262888999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262889000, 3262889007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262889008, 3262889287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262889288, 3262889303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262889304, 3262889719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262889720, 3262889727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262889728, 3262891207, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262891208, 3262891215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262891216, 3262892167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892168, 3262892175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892176, 3262892263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892264, 3262892271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892272, 3262892399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892400, 3262892407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892408, 3262892615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892616, 3262892623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892624, 3262892639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892640, 3262892647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892648, 3262892839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892840, 3262892855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262892856, 3262893175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893176, 3262893183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893184, 3262893191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893192, 3262893199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893200, 3262893511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893512, 3262893519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893520, 3262893823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893824, 3262893831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893832, 3262893879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893880, 3262893887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893888, 3262893927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893928, 3262893935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893936, 3262893959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893960, 3262893967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262893968, 3262894143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894144, 3262894151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894152, 3262894167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894168, 3262894175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894176, 3262894375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894376, 3262894383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894384, 3262894399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894400, 3262894407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894408, 3262894423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894424, 3262894431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894432, 3262894751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894752, 3262894759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894760, 3262894767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894768, 3262894775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262894776, 3262895687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895688, 3262895703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895704, 3262895727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895728, 3262895735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895736, 3262895887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895888, 3262895895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895896, 3262895935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895936, 3262895943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262895944, 3262896207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262896208, 3262896215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262896216, 3262896975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262896976, 3262896991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262896992, 3262897287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262897288, 3262897295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262897296, 3262897591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262897592, 3262897599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262897600, 3262898071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262898072, 3262898079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262898080, 3262900223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900224, 3262900479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900480, 3262900487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900488, 3262900495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900496, 3262900551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900552, 3262900559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900560, 3262900575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900576, 3262900583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262900584, 3262900999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901000, 3262901007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901008, 3262901167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901168, 3262901175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901176, 3262901183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901184, 3262901191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901192, 3262901207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901208, 3262901215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901216, 3262901223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901224, 3262901231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901232, 3262901247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901248, 3262901263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901264, 3262901279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901280, 3262901287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901288, 3262901327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901328, 3262901351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901352, 3262901431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901432, 3262901439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901440, 3262901455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901456, 3262901463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901464, 3262901471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901472, 3262901479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901480, 3262901511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901512, 3262901519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901520, 3262901607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901608, 3262901615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901616, 3262901639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901640, 3262901647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262901648, 3262902031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902032, 3262902047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902048, 3262902079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902080, 3262902087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902088, 3262902095, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902096, 3262902103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902104, 3262902159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902160, 3262902167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902168, 3262902191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902192, 3262902199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902200, 3262902343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902344, 3262902351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902352, 3262902391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902392, 3262902399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902400, 3262902487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902488, 3262902495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902496, 3262902575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902576, 3262902583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902584, 3262902615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902616, 3262902623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902624, 3262902647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902648, 3262902655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902656, 3262902679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902680, 3262902687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902688, 3262902775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902776, 3262902783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902784, 3262902847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902848, 3262902855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262902856, 3262903063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903064, 3262903071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903072, 3262903191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903192, 3262903199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903200, 3262903239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903240, 3262903247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903248, 3262903519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903520, 3262903527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903528, 3262903583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903584, 3262903591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262903592, 3262904023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904024, 3262904031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904032, 3262904055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904056, 3262904063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904064, 3262904151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904152, 3262904159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904160, 3262904231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904232, 3262904239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904240, 3262904343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904344, 3262904351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904352, 3262904423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904424, 3262904431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904432, 3262904479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904480, 3262904487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262904488, 3262905143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905144, 3262905151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905152, 3262905159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905160, 3262905167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905168, 3262905431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905432, 3262905439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905440, 3262905751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905752, 3262905759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262905760, 3262906367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262906368, 3262964991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262964992, 3262965247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262965248, 3262971903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3262971904, 3263029247, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263029248, 3263030271, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263030272, 3263031295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263031296, 3263032319, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263032320, 3263033343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263033344, 3263033855, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263033856, 3263034367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263034368, 3263034879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263034880, 3263035391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263035392, 3263035903, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263035904, 3263036415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263036416, 3263036927, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263037440, 3263045631, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263045632, 3263047935, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263047936, 3263048191, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263048192, 3263048447, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263048448, 3263053823, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263053824, 3263062015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263062016, 3263070207, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263070208, 3263070463, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263070464, 3263070719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263070720, 3263070975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263070976, 3263071487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263071488, 3263072255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263072256, 3263074303, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263074304, 3263074815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263074816, 3263075327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263075328, 3263075839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263075840, 3263076351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263076352, 3263076863, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263076864, 3263077375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263077376, 3263077887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263077888, 3263078399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263078400, 3263079423, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263079424, 3263080447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263080448, 3263081471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263081472, 3263082495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263082496, 3263083519, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263083520, 3263084543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263084544, 3263085567, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263086592, 3263086847, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263086848, 3263087103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263087104, 3263087871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263087872, 3263088127, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263088128, 3263088639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263088640, 3263089151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263089152, 3263089407, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263089408, 3263089663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263089664, 3263089919, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263089920, 3263090175, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263090176, 3263090431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263090432, 3263090687, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263090688, 3263090943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263090944, 3263091199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263091200, 3263091455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263091456, 3263091711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263091712, 3263091967, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263091968, 3263092479, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263092480, 3263092735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263092736, 3263092991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263092992, 3263093247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263093248, 3263093503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263093504, 3263093759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263093760, 3263094015, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263094016, 3263094527, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263094528, 3263094783, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263094784, 3263095039, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263095040, 3263095295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263095296, 3263095551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263095552, 3263095807, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263095808, 3263096063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263096064, 3263096319, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263096320, 3263096575, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263096576, 3263096831, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263096832, 3263097087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263097088, 3263097343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263097344, 3263097599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263097600, 3263097855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263097856, 3263098111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263098112, 3263098367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263098368, 3263098623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263098624, 3263098879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263098880, 3263099135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263099136, 3263099391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263099392, 3263099903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263099904, 3263100159, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263100160, 3263100415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263100416, 3263100671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263100672, 3263100927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263100928, 3263101183, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263101184, 3263101439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263101440, 3263101695, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263101696, 3263101951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263101952, 3263102207, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263102208, 3263102463, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263102464, 3263102719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263102720, 3263102975, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263102976, 3263168511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263168512, 3263430655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263430656, 3263496191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263496192, 3263497215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263497216, 3263497983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263497984, 3263498239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263498240, 3263498495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263498496, 3263498751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263498752, 3263498879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263498880, 3263498943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263498944, 3263498959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263498960, 3263499007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263499008, 3263499519, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263499520, 3263499775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263499776, 3263500031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263500032, 3263501341, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501342, 3263501343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501344, 3263501439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501440, 3263501503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501504, 3263501519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501520, 3263501527, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501528, 3263501535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501536, 3263501551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501552, 3263501823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263501824, 3263502079, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263502080, 3263502335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263502336, 3263502847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263502848, 3263503103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503104, 3263503167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503168, 3263503199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503200, 3263503267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503268, 3263503271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503272, 3263503279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503280, 3263503295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503296, 3263503359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503360, 3263503871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263503872, 3263504127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263504128, 3263504255, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263504256, 3263504383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263504384, 3263506431, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263506432, 3263506687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263506688, 3263506815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263506816, 3263506943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263506944, 3263507199, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263507200, 3263507455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263507456, 3263507967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263507968, 3263508223, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263508224, 3263508735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263508736, 3263508991, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263508992, 3263509503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509504, 3263509759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509760, 3263509791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509792, 3263509807, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509808, 3263509831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509832, 3263509839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509840, 3263509847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509848, 3263509887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263509888, 3263510023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263510024, 3263510031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263510032, 3263510063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263510064, 3263510079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263510080, 3263510271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263510272, 3263510527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263510528, 3263510783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263510784, 3263511039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263511040, 3263511295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263511296, 3263511551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263511552, 3263512063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263512064, 3263512311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263512312, 3263512319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263512320, 3263512831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263512832, 3263513087, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263513088, 3263513343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263513344, 3263513599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263513600, 3263513855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263513856, 3263514111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263514112, 3263514367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263514368, 3263515391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263515392, 3263515903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263515904, 3263516159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263516160, 3263516415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263516416, 3263516671, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263516672, 3263516927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263516928, 3263517695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263517696, 3263517951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263517952, 3263518463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263518464, 3263518719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263518720, 3263518751, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263518752, 3263518975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263518976, 3263519231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263519232, 3263519743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263519744, 3263519759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263519760, 3263519999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263520000, 3263520255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263520256, 3263520511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263520512, 3263521279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263521280, 3263521535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263521536, 3263521791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263521792, 3263522047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263522048, 3263522303, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263522304, 3263522559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263522560, 3263522815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263522816, 3263523071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263523072, 3263523839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263523840, 3263524095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263524096, 3263524351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263524352, 3263524607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263524608, 3263524863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263524864, 3263525119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263525120, 3263525375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263525376, 3263525631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263525632, 3263525759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263525760, 3263525887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263525888, 3263526399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263526400, 3263526655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263526656, 3263526911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263526912, 3263527167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263527168, 3263527423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263527424, 3263527679, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263527680, 3263527935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263527936, 3263528191, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263528192, 3263528447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263528448, 3263528959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263528960, 3263529983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263529984, 3263530239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263530240, 3263530495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263530496, 3263530751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263530752, 3263531007, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263531008, 3263531519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263531520, 3263531535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263531536, 3263531551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263531552, 3263531775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263531776, 3263532031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263532032, 3263532799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263532800, 3263536895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263536896, 3263537151, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263537152, 3263540479, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263540480, 3263540735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263540736, 3263541247, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263541248, 3263541535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263541536, 3263543295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263543296, 3263545343, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263545344, 3263557631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263557632, 3263558911, N'TR', N'Turkey') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263558912, 3263559679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263559680, 3263561727, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263561728, 3263606671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263606672, 3263606687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263606688, 3263627263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263627264, 3263657471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263657472, 3263657727, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263657728, 3263684351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263684352, 3263684607, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263684608, 3263688959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263688960, 3263689215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263689216, 3263689471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263689472, 3263689727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263689728, 3263689983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263689984, 3263690239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263690240, 3263691007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263691008, 3263691263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263691264, 3263691775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263691776, 3263692031, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263692032, 3263692287, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263692288, 3263692799, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263692800, 3263758335, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263758336, 3263758591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263758592, 3263760127, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263760128, 3263760383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263760384, 3263764991, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263764992, 3263765503, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263765504, 3263766975, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263766976, 3263767039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263767040, 3263773951, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263773952, 3263774207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263774208, 3263774463, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263774464, 3263774719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263774720, 3263792351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263792352, 3263792367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263792368, 3263793151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263793152, 3263793407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263793408, 3263816703, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263816704, 3263816959, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263816960, 3263817215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263817216, 3263823871, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263823872, 3263954943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263954944, 3263979519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263979520, 3263987711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3263987712, 3264004095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264004096, 3264012287, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264012288, 3264012543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264012544, 3264012799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264012800, 3264013055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264013056, 3264013311, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264013312, 3264013567, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264013568, 3264013823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264013824, 3264014079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264014080, 3264014335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264014336, 3264014591, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264014592, 3264014847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264014848, 3264015103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264015104, 3264015359, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264015360, 3264015615, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264015616, 3264015871, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264015872, 3264016127, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264016128, 3264016383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264016384, 3264016639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264016640, 3264016895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264016896, 3264017151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264017152, 3264017663, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264017664, 3264017919, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264017920, 3264018175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264018176, 3264018431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264018432, 3264018687, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264018688, 3264018943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264018944, 3264019199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264019200, 3264019967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264019968, 3264020223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264020224, 3264020479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264020480, 3264086015, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264086016, 3264099839, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264099840, 3264100095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264100096, 3264124927, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264124928, 3264125183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264125184, 3264125439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264125440, 3264125695, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264125696, 3264125951, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264125952, 3264133119, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264133120, 3264133631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264133632, 3264151551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264151552, 3264184319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264184320, 3264184831, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264184832, 3264185343, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264185344, 3264185855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264185856, 3264186367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264186368, 3264186879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264186880, 3264187391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264187392, 3264187903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264187904, 3264188415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264188416, 3264189951, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264189952, 3264190463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264190464, 3264190975, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264190976, 3264191487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264191488, 3264191999, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264192000, 3264200703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264200704, 3264208895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264208896, 3264217087, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264217088, 3264282623, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264282624, 3264290815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264290816, 3264296191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264296192, 3264297727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264297728, 3264298751, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264298752, 3264299007, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264299008, 3264307199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264307200, 3264311295, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264311296, 3264311551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264311552, 3264311807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264311808, 3264312063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264312064, 3264312319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264312320, 3264312575, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264312576, 3264312831, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264312832, 3264313343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264313344, 3264313599, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264313600, 3264313855, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264313856, 3264314623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264314624, 3264314879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264314880, 3264315135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264315136, 3264315391, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264315392, 3264317439, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264317440, 3264318463, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264318464, 3264318975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264318976, 3264319487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264319488, 3264319743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264319744, 3264319999, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264320000, 3264320255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264320256, 3264321023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264321024, 3264321535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264321536, 3264321791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264321792, 3264322047, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264322048, 3264322303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264322304, 3264322559, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264322816, 3264323071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264323072, 3264323327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264323328, 3264323583, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264323584, 3264324607, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264324608, 3264325631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264325632, 3264326655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264326656, 3264327679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264327680, 3264328703, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264328704, 3264329727, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264329728, 3264330751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264330752, 3264331775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264331776, 3264332287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264332288, 3264332799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264332800, 3264333311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264333312, 3264333823, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264333824, 3264334335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264334336, 3264334847, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264334848, 3264335359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264335360, 3264335871, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264335872, 3264336383, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264336384, 3264336895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264336896, 3264337407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264337408, 3264338431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264338432, 3264338943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264338944, 3264339455, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264339456, 3264339967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264339968, 3264340223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264340224, 3264340479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264340480, 3264340735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264340736, 3264340991, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264340992, 3264341503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264341504, 3264341759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264341760, 3264342015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264342016, 3264342783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264342784, 3264343039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264343040, 3264343295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264343296, 3264343551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264343552, 3264343807, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264343808, 3264344063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264344064, 3264345087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264345088, 3264346111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264346112, 3264347135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264347136, 3264348159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264348160, 3264375039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264375040, 3264376063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264376064, 3264376319, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264376320, 3264376575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264376576, 3264376831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264376832, 3264377087, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264377088, 3264377343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264377344, 3264377599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264377600, 3264378111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264378112, 3264378367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264378368, 3264378623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264378624, 3264378879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264378880, 3264379135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264379136, 3264379391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264379392, 3264379647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264379648, 3264380159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264380160, 3264380415, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264380416, 3264380671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264380672, 3264380927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264380928, 3264381951, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264381952, 3264385023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264385024, 3264386047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264386048, 3264387071, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264387072, 3264388095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264388096, 3264389119, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264389120, 3264390143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264390144, 3264391167, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264391168, 3264392191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264392192, 3264393215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264393216, 3264394239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264394240, 3264395263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264395264, 3264396287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264396288, 3264397311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264397312, 3264398335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264398336, 3264399359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264399360, 3264400383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264400384, 3264401407, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264401408, 3264402431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264402432, 3264403455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264403456, 3264404479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264404480, 3264405503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264405504, 3264406527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264406528, 3264407551, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264407552, 3264408575, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264408576, 3264409599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264409600, 3264410623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264410624, 3264411647, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264411648, 3264413695, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264413696, 3264431103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264431104, 3264431615, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264431616, 3264446207, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264446208, 3264446463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264446464, 3264483071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264483072, 3264483327, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264483328, 3264486527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264486528, 3264486559, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264486560, 3264494079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264494080, 3264494335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264494336, 3264544767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264544768, 3264561151, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264561152, 3264563199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264563200, 3264564223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264564224, 3264565247, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264565248, 3264567295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264567296, 3264567551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264567552, 3264567807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264567808, 3264568319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264568320, 3264568575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264568576, 3264568831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264568832, 3264569087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264569088, 3264569343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264569344, 3264576039, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264576040, 3264576047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264576048, 3264577535, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264577536, 3264585727, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264585728, 3264593919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264593920, 3264602111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264602112, 3264603135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264603136, 3264604159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264604160, 3264604671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264604672, 3264605183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264605184, 3264605695, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264605696, 3264606207, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264606208, 3264606463, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264606464, 3264606719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264606720, 3264606975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264606976, 3264607231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264607232, 3264607487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264607488, 3264610303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264610304, 3264626687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264626688, 3264627711, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264627712, 3264628735, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264628736, 3264630783, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264630784, 3264631807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264632832, 3264633855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264633856, 3264634879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264634880, 3264636927, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264636928, 3264637951, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264637952, 3264639999, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264640000, 3264641023, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264641024, 3264642047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264642048, 3264651263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264651264, 3264651775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264651776, 3264652287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264652288, 3264652799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264652800, 3264653311, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264653312, 3264653823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264653824, 3264654335, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264654336, 3264654847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264654848, 3264655359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264655360, 3264655871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264655872, 3264656383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264656384, 3264656895, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264656896, 3264657407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264657408, 3264657919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264657920, 3264658431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264658432, 3264659455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264659456, 3264659967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264659968, 3264660479, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264660480, 3264660991, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264660992, 3264661503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264661504, 3264662015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264662016, 3264662527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264662528, 3264663039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264663040, 3264663551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264663552, 3264664063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264664064, 3264664575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264664576, 3264665087, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264665088, 3264665599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264665600, 3264666111, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264666112, 3264666623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264666624, 3264667135, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264667136, 3264667647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264667648, 3264668159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264668160, 3264669183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264669184, 3264669695, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264669696, 3264670207, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264670208, 3264670719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264670720, 3264671231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264671232, 3264671743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264671744, 3264672255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264672256, 3264672767, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264672768, 3264673279, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264673280, 3264673791, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264673792, 3264674303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264674304, 3264674815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264674816, 3264675327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264675328, 3264675839, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264675840, 3264687247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264687248, 3264687263, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264687264, 3264741375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264741376, 3264749567, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264749568, 3264757759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264757760, 3264765951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264765952, 3264774143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264774144, 3264774911, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264774912, 3264775167, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264775168, 3264782335, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264782336, 3264790527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264790528, 3264806911, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264806912, 3264815103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264815104, 3264825343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264825344, 3264825599, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264825600, 3264825855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264825856, 3264826111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264826112, 3264826879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264826880, 3264827135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264827136, 3264827391, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264827392, 3264827647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264827648, 3264828159, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264828160, 3264828415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264828416, 3264828671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264828672, 3264828927, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264828928, 3264829439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264829440, 3264830207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264830208, 3264830463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264830464, 3264830719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264830720, 3264830975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264830976, 3264831231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264831232, 3264831487, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264831488, 3264831743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264831744, 3264831999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264832000, 3264832255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264832256, 3264832511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264832512, 3264832767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264832768, 3264833023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264833024, 3264833535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264833536, 3264834047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264834048, 3264834559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264834560, 3264835327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264835328, 3264835583, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264837632, 3264839679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264839680, 3264840191, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264840192, 3264840447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264840448, 3264840703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264840704, 3264840959, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264840960, 3264841471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264841472, 3264841727, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264841728, 3264844031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264844032, 3264844287, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264844288, 3264844799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264844800, 3264845311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264845312, 3264845951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264845952, 3264846079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846080, 3264846207, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846208, 3264846335, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846336, 3264846463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846464, 3264846591, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846592, 3264846719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846720, 3264846847, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846848, 3264846911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846912, 3264846975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264846976, 3264847039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847040, 3264847103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847104, 3264847135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847136, 3264847167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847168, 3264847199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847200, 3264847231, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847232, 3264847263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847264, 3264847295, N'LI', N'Liechtenstein') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847296, 3264847327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847328, 3264847331, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847332, 3264847339, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847360, 3264847487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847488, 3264847615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847616, 3264847679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847680, 3264847743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847744, 3264847807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847808, 3264847871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264847872, 3264849919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264849920, 3264850431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264850432, 3264850687, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264850688, 3264850943, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264850944, 3264851967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264851968, 3264854015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264854016, 3264854527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264854528, 3264854783, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264854784, 3264855039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264855040, 3264855551, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264855552, 3264856063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264856064, 3264861695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264861696, 3264862079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264862080, 3264862207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264862208, 3264862463, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264862464, 3264862719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264862720, 3264862975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264862976, 3264863231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264863232, 3264864255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264864256, 3264872447, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264872448, 3264888831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264888832, 3264896255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264896256, 3264896511, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264896512, 3264897023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264897024, 3264905215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264905216, 3264908159, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264908160, 3264908167, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264908168, 3264909567, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264909568, 3264909631, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264909632, 3264909639, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264909640, 3264909647, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264909648, 3264910367, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264910368, 3264910399, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264910400, 3264910431, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264910432, 3264910463, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264910464, 3264911679, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264911680, 3264911711, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264911712, 3264912191, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264912192, 3264912319, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264912320, 3264912815, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264912816, 3264912831, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264912832, 3264913151, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264913152, 3264913407, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264913408, 3264917247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264917248, 3264917375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264917376, 3264921599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264921600, 3264922303, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264922304, 3264922319, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264922320, 3264929791, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264929792, 3264937983, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3264937984, 3265003519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265003520, 3265069055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265069056, 3265134591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265134592, 3265142783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265142784, 3265148671, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265148672, 3265148927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265148928, 3265150975, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265150976, 3265159167, N'AD', N'Andorra') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265159168, 3265167359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265167360, 3265175551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265175552, 3265183743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265183744, 3265191935, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265191936, 3265200127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265200128, 3265216511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265216512, 3265216767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265216768, 3265217023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265217024, 3265218559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265218560, 3265219071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265219072, 3265244415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265244416, 3265244671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265244672, 3265257471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265257472, 3265259519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265259520, 3265265663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265265664, 3265331199, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265331200, 3265340415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265340416, 3265340671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265340672, 3265340927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265340928, 3265341183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265341184, 3265341279, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265341280, 3265341311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265341312, 3265341439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265341440, 3265341695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265341696, 3265341951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265341952, 3265343487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265343488, 3265347583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265347584, 3265352703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265352704, 3265352959, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265352960, 3265353215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265353216, 3265355263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265355264, 3265355775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265355776, 3265357055, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265357056, 3265357311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265357312, 3265357567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265357568, 3265357823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265357824, 3265358847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265358848, 3265359103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265359104, 3265359871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265359872, 3265360127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265360128, 3265360383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265360384, 3265360895, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265360896, 3265361919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265361920, 3265363967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265363968, 3265366015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265366016, 3265366079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265366080, 3265366271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265366272, 3265366527, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265366528, 3265367039, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265367040, 3265367295, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265367296, 3265367551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265367552, 3265367807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265367808, 3265369343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265369344, 3265369599, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265369600, 3265369855, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265369856, 3265370111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265370112, 3265370623, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265370624, 3265370879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265370880, 3265376255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265376256, 3265376511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265376512, 3265378303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265378304, 3265380095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265380096, 3265382399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265382400, 3265382911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265382912, 3265384447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265384448, 3265386495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265386496, 3265388543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265388544, 3265396735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265396736, 3265407183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265407184, 3265407187, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265407188, 3265407199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265407200, 3265407207, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265407208, 3265417919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265417920, 3265417927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265417928, 3265418499, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265418500, 3265418511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265418512, 3265464831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265464832, 3265465087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265465088, 3265465343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265465344, 3265465599, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265465600, 3265465855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265465856, 3265465983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265465984, 3265527807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265527808, 3265569279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265569280, 3265569791, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265569792, 3265593343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265593344, 3265601535, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265601536, 3265601791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265601792, 3265602047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265602048, 3265602559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265602560, 3265602815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265602816, 3265603071, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265603072, 3265603327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265603328, 3265603583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265603584, 3265603839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265603840, 3265604095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265604096, 3265604351, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265604352, 3265604607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265604608, 3265604863, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265604864, 3265605119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265605120, 3265605375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265605376, 3265605631, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265605632, 3265605887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265605888, 3265606143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265606144, 3265606399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265606400, 3265606655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265606656, 3265606911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265606912, 3265607167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265607168, 3265607423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265607424, 3265607679, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265607680, 3265607935, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265607936, 3265608191, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265608192, 3265608447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265608448, 3265608703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265608704, 3265608959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265608960, 3265609215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265609216, 3265609727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265609728, 3265617919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265617920, 3265626111, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265626112, 3265634303, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265634304, 3265642495, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265642496, 3265650687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265650688, 3265658879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265658880, 3265724415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265724416, 3265789951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265789952, 3265824767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265824768, 3265825023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265825024, 3265921023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265921024, 3265986559, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3265986560, 3266052095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266052096, 3266073823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266073824, 3266073839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266073840, 3266322431, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266322432, 3266330623, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266330624, 3266338815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266347008, 3266347263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266347264, 3266351359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266351360, 3266352623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266352624, 3266352895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266352896, 3266353567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353568, 3266353583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353584, 3266353591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353592, 3266353663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353664, 3266353671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353672, 3266353679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353680, 3266353687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353688, 3266353775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353776, 3266353783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353784, 3266353855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353856, 3266353863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353864, 3266353879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353880, 3266353887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353888, 3266353895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353896, 3266353903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353904, 3266353919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266353920, 3266355199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266355200, 3266363391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266363392, 3266371583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266371584, 3266379775, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266379776, 3266387967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266387968, 3266396159, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266396160, 3266412543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266412544, 3266420735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266420736, 3266420799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266420800, 3266420831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266420832, 3266420847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266420848, 3266420991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266420992, 3266421247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266421248, 3266421503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266421504, 3266421759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266421760, 3266422015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266422016, 3266422527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266422528, 3266422783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266422784, 3266425343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266425344, 3266425535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266425536, 3266425727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266425728, 3266426111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266426112, 3266426367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266426368, 3266428927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266428928, 3266437119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266437120, 3266444911, N'GL', N'Greenland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266444912, 3266444915, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266444916, 3266445311, N'GL', N'Greenland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266445312, 3266510847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266510848, 3266543615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266543616, 3266576383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266576384, 3266641919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266641920, 3266707455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266707456, 3266767615, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266767616, 3266767871, N'FO', N'Faroe Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266767872, 3266772991, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266772992, 3266781183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266781184, 3266789375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266789376, 3266797567, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266797568, 3266805759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266805760, 3266809343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266809344, 3266809599, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266809600, 3266813951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266813952, 3266822143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266822144, 3266830335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266830336, 3266836479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266836480, 3266837023, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266837024, 3266838527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266838528, 3266969599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266969600, 3266971391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266971392, 3266971647, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266971648, 3266972159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266972160, 3266972415, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266972416, 3266973439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266973440, 3266973695, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266973696, 3266987519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266987520, 3266987775, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266987776, 3266994687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266994688, 3266995199, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266995200, 3266995455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266995456, 3266995711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3266995712, 3267008255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267008256, 3267008511, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267008512, 3267008767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267008768, 3267009023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267009024, 3267009279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267009280, 3267009535, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267009536, 3267018815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267018816, 3267018823, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267018824, 3267023103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267023104, 3267023359, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267023360, 3267029247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267029248, 3267030015, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267030016, 3267030047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267030048, 3267030063, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267030064, 3267030095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267030096, 3267030103, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267030104, 3267032575, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267032576, 3267032831, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267032832, 3267033855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267033856, 3267033919, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267033920, 3267035135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267035136, 3267039231, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267039232, 3267040255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267040256, 3267041279, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267041280, 3267043327, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267043328, 3267044351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267044352, 3267045375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267045376, 3267046399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267046400, 3267047423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267047424, 3267048447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267048448, 3267049471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267049472, 3267050495, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267050496, 3267051519, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267051520, 3267052543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267052544, 3267053567, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267053568, 3267054591, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267054592, 3267055615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267055616, 3267056639, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267056640, 3267057663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267057664, 3267058687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267058688, 3267059711, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267059712, 3267060735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267060736, 3267061759, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267061760, 3267063807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267063808, 3267064831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267064832, 3267065855, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267065856, 3267066879, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267066880, 3267067903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267067904, 3267068927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267068928, 3267069951, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267069952, 3267070975, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267070976, 3267071999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267072000, 3267073023, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267073024, 3267075071, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267075072, 3267076095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267076096, 3267078143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267078144, 3267079167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267079168, 3267080191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267080192, 3267081215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267081216, 3267082239, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267082240, 3267083263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267083264, 3267084287, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267084288, 3267085311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267085312, 3267086335, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267086336, 3267087359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267087360, 3267088383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267088384, 3267089407, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267089408, 3267090431, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267090432, 3267091455, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267091456, 3267092479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267092480, 3267093503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267093504, 3267094527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267094528, 3267095551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267095552, 3267096575, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267096576, 3267097599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267097600, 3267098623, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267098624, 3267099647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267099648, 3267100671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267100672, 3267166207, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267166208, 3267231743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267231744, 3267235327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267235328, 3267235583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267235584, 3267240959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267240960, 3267241215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267241216, 3267297279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267297280, 3267362815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267362816, 3267426879, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267426880, 3267426943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267426944, 3267428351, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267428352, 3267493887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267493888, 3267494143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267494144, 3267498239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267498240, 3267498495, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267498496, 3267498751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267498752, 3267504383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267504384, 3267504639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267504640, 3267505151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267505152, 3267507711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267507712, 3267507743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267507744, 3267507775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267507776, 3267507807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267507808, 3267507839, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267507840, 3267508223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267508224, 3267508735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267508736, 3267508991, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267508992, 3267509247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267509248, 3267509503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267509504, 3267509695, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267509696, 3267509727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267509728, 3267509759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267509760, 3267510271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267510272, 3267512831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267512832, 3267513343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267513344, 3267514367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267514368, 3267517951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267517952, 3267518463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267518464, 3267520255, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267520256, 3267520511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267520512, 3267524607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267524608, 3267526655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267526656, 3267527679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267527680, 3267529215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267529216, 3267529471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267529472, 3267529727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267529728, 3267530751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267530752, 3267534335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267534336, 3267534527, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267534528, 3267534559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267534560, 3267534575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267534576, 3267534591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267534592, 3267538943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267538944, 3267540223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267540224, 3267540479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267540480, 3267541759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267541760, 3267542527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267542528, 3267542783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267542784, 3267543039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267543040, 3267543295, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267543296, 3267543551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267543552, 3267544319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267544320, 3267544575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267544576, 3267544703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267544704, 3267544831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267544832, 3267545087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267545088, 3267545855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267545856, 3267546111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267546112, 3267546623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267546624, 3267547135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267547136, 3267547391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267547392, 3267547647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267547648, 3267549183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267549184, 3267550463, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267550464, 3267550719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267550720, 3267551231, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267551232, 3267551743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267551744, 3267551999, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267552000, 3267552255, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267552256, 3267553023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267553024, 3267553279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267553280, 3267554303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267554304, 3267554815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267554816, 3267555071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267555072, 3267555199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267555200, 3267555327, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267555328, 3267555583, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267555584, 3267556095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267556096, 3267556351, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267556352, 3267556607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267556608, 3267556863, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267556864, 3267557375, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267557376, 3267557631, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267557632, 3267557887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267557888, 3267558399, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267558400, 3267558911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267558912, 3267559423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267559424, 3267622527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267622528, 3267622559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267622560, 3267624959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267624960, 3267625471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267625472, 3267625727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267625728, 3267625983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267625984, 3267626239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267626240, 3267626495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267626496, 3267626751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267626752, 3267627007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267627008, 3267627343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267627344, 3267627359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267627360, 3267627519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267627520, 3267627775, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267627776, 3267628031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267628032, 3267628287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267628288, 3267628543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267628544, 3267628799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267628800, 3267629055, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267629056, 3267629311, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267629312, 3267629567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267629568, 3267629823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267629824, 3267630079, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267630080, 3267630591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267630592, 3267630847, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267630848, 3267630863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267630864, 3267630943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267630944, 3267631055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267631056, 3267631071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267631072, 3267631087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267631088, 3267631103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267631104, 3267631615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267631616, 3267631935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267631936, 3267631999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267632000, 3267632127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267632128, 3267632383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267632384, 3267632447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267632448, 3267632639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267632640, 3267632895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267632896, 3267633151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267633152, 3267633687, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267633688, 3267633695, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267633696, 3267633855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267633856, 3267633919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267633920, 3267634175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267634176, 3267634431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267634432, 3267634559, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267634560, 3267634687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267634688, 3267634943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267634944, 3267635711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267635712, 3267635967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267635968, 3267636223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267636224, 3267636735, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267636736, 3267636991, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267636992, 3267637247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267637248, 3267637503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267637504, 3267637695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267637696, 3267637759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267637760, 3267637887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267637888, 3267638015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267638016, 3267638271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267638272, 3267638527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267638528, 3267638783, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267638784, 3267639295, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267639296, 3267639551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267639552, 3267639807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267639808, 3267640063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267640064, 3267640319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267640320, 3267640575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267640576, 3267640831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267640832, 3267641087, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267641088, 3267641343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267641344, 3267641471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267641472, 3267641855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267641856, 3267642111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267642112, 3267642367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267642368, 3267642623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267642624, 3267642879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267642880, 3267643135, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643136, 3267643391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643392, 3267643407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643408, 3267643423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643424, 3267643487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643488, 3267643519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643520, 3267643647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643648, 3267643903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267643904, 3267644159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267644160, 3267644415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267644416, 3267644671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267644672, 3267644927, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267644928, 3267644959, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267644960, 3267644975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267644976, 3267644991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267644992, 3267645055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267645056, 3267645183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267645184, 3267645439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267645440, 3267645695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267645696, 3267645951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267645952, 3267646975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267646976, 3267647487, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267647488, 3267647743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267647744, 3267647999, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267648000, 3267648255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267648256, 3267648415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267648416, 3267648447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267648448, 3267648479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267648480, 3267648511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267648512, 3267648767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267648768, 3267649023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267649024, 3267649279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267649280, 3267649535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267649536, 3267649791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267649792, 3267650303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267650304, 3267650367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267650368, 3267650431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267650432, 3267650559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267650560, 3267651071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267651072, 3267651327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267651328, 3267651583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267651584, 3267651839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267651840, 3267652095, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267652096, 3267652351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267652352, 3267652607, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267652608, 3267652863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267652864, 3267653119, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267653120, 3267653375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267653376, 3267653887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267653888, 3267654143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267654144, 3267654911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267654912, 3267655167, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267655168, 3267655679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267655680, 3267656191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267656192, 3267656447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267656448, 3267657215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267657216, 3267657471, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267657472, 3267657567, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267657568, 3267657663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267657664, 3267657679, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267657680, 3267657983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267657984, 3267658239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267658240, 3267658495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267658496, 3267658751, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267658752, 3267659263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267659264, 3267659519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267659520, 3267659775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267659776, 3267660287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267660288, 3267660543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267660544, 3267660591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267660592, 3267660599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267660600, 3267660799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267660800, 3267661567, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267661568, 3267661679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267661680, 3267661695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267661696, 3267661823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267661824, 3267662047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267662048, 3267662847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267662848, 3267662887, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267662888, 3267662895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267662896, 3267662951, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267662952, 3267662959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267662960, 3267663071, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267663072, 3267663087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267663088, 3267663103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267663104, 3267663359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267663360, 3267663871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267663872, 3267664127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664128, 3267664383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664384, 3267664639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664640, 3267664671, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664672, 3267664767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664768, 3267664815, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664816, 3267664831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664832, 3267664895, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267664896, 3267665919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267665920, 3267666175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666176, 3267666207, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666208, 3267666239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666240, 3267666431, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666432, 3267666447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666448, 3267666463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666464, 3267666543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666544, 3267666559, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666560, 3267666575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666576, 3267666687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666688, 3267666719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267666720, 3267667199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267667200, 3267667455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267667456, 3267667967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267667968, 3267670015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267670016, 3267671551, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267671552, 3267671807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267671808, 3267672063, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267672064, 3267672319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267672320, 3267672575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267672576, 3267672831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267672832, 3267672839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267672840, 3267672847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267672848, 3267673015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673016, 3267673023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673024, 3267673087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673088, 3267673439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673440, 3267673471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673472, 3267673503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673504, 3267673535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673536, 3267673791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673792, 3267673823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673824, 3267673855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267673856, 3267674111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267674112, 3267674127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267674128, 3267674159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267674160, 3267674303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267674304, 3267674367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267674368, 3267674623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267674624, 3267675135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267675136, 3267675391, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267675392, 3267675647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267675648, 3267675775, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267675776, 3267675903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267675904, 3267676159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676160, 3267676415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676416, 3267676671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676672, 3267676719, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676720, 3267676727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676728, 3267676767, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676768, 3267676863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676864, 3267676879, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676880, 3267676895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676896, 3267676911, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676912, 3267676919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676920, 3267676927, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267676928, 3267677367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267677368, 3267677375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267677376, 3267677695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267677696, 3267678207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267678208, 3267678719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267678720, 3267678975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267678976, 3267679231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267679232, 3267679487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267679488, 3267679743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267679744, 3267679999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267680000, 3267680255, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267680256, 3267680767, N'SK', N'Slovakia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267680768, 3267681279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681280, 3267681511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681512, 3267681519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681520, 3267681535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681536, 3267681791, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681792, 3267681839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681840, 3267681847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681848, 3267681975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681976, 3267681983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267681984, 3267682047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267682048, 3267682303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267682304, 3267682559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267682560, 3267682815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267682816, 3267683071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267683072, 3267683327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267683328, 3267683575, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267683576, 3267683711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267683712, 3267683727, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267683728, 3267684383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267684384, 3267684767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267684768, 3267684799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267684800, 3267685119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267685120, 3267685375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267685376, 3267685887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267685888, 3267686399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267686400, 3267687935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267687936, 3267688191, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267688192, 3267688703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267688704, 3267688959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267688960, 3267689215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267689216, 3267689247, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267689248, 3267689327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267689328, 3267689471, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267689472, 3267689727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267689728, 3267689983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267689984, 3267690495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267690496, 3267691519, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267691520, 3267692543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267692544, 3267711999, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267712000, 3267712255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267712256, 3267741439, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267741440, 3267741695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267741696, 3267741759, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267741760, 3267741791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267741792, 3267741855, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267741856, 3267741919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267741920, 3267743999, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267744000, 3267744255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267744256, 3267744511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267744512, 3267744799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267744800, 3267744831, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267744832, 3267744863, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267744864, 3267744895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267744896, 3267746303, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267746304, 3267746559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267746560, 3267756031, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267756032, 3267760639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267760640, 3267761151, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267761152, 3267761919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267761920, 3267762175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267762176, 3267763711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267763712, 3267763967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267763968, 3267764223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267764224, 3267764479, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267764480, 3267765775, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267765776, 3267765791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267765792, 3267765823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267765824, 3267765855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267765856, 3267766031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766032, 3267766047, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766048, 3267766303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766304, 3267766319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766320, 3267766351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766352, 3267766367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766368, 3267766383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766384, 3267766415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267766416, 3267785727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267785728, 3267785983, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267785984, 3267787007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267787008, 3267787263, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267787264, 3267787519, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267787520, 3267787775, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267787776, 3267788031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267788032, 3267788287, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267788288, 3267793919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267793920, 3267794175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267794176, 3267821567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267821568, 3267887103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3267887104, 3268017407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268017408, 3268017663, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268017664, 3268149247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268149248, 3268165631, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268165632, 3268173823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268173824, 3268182015, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268182016, 3268198399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268198400, 3268214783, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268214784, 3268215583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268215584, 3268215615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268215616, 3268215647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268215648, 3268215679, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268215680, 3268215711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268215712, 3268215743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268215744, 3268215775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268215776, 3268216319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268216320, 3268218111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268218112, 3268218367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268218368, 3268219807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268219808, 3268219823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268219824, 3268219855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268219856, 3268219871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268219872, 3268221439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268221440, 3268221951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268221952, 3268222975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268222976, 3268223231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268223232, 3268224767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268224768, 3268225023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268225024, 3268226303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268226304, 3268226559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268226560, 3268227327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268227328, 3268227391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268227392, 3268227519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268227520, 3268227615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268227616, 3268229631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268229632, 3268229887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268229888, 3268230655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268230656, 3268230911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268230912, 3268231167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231168, 3268231199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231200, 3268231311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231312, 3268231359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231360, 3268231391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231392, 3268231423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231424, 3268231647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231648, 3268231679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231680, 3268231743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231744, 3268231807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268231808, 3268232223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232224, 3268232243, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232244, 3268232255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232256, 3268232319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232320, 3268232351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232352, 3268232367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232368, 3268232383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232384, 3268232415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232416, 3268232479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232480, 3268232575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232576, 3268232959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268232960, 3268233087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268233088, 3268233471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268233472, 3268233599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268233600, 3268233727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268233728, 3268233791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268233792, 3268233919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268233920, 3268234047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268234048, 3268234111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268234112, 3268234239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268234240, 3268234559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268234560, 3268234687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268234688, 3268235007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268235008, 3268235263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268235264, 3268235519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268235520, 3268235775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268235776, 3268235935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268235936, 3268236031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236032, 3268236191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236192, 3268236207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236208, 3268236271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236272, 3268236287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236288, 3268236543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236544, 3268236607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236608, 3268236671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236672, 3268236799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268236800, 3268237311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268237312, 3268237567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268237568, 3268239103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268239104, 3268239359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268239360, 3268239551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268239552, 3268240127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240128, 3268240159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240160, 3268240191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240192, 3268240255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240256, 3268240399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240400, 3268240415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240416, 3268240431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240432, 3268240687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240688, 3268240695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240696, 3268240711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240712, 3268240735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240736, 3268240743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240744, 3268240751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240752, 3268240775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240776, 3268240783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240784, 3268240975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240976, 3268240991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268240992, 3268241007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241008, 3268241023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241024, 3268241543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241544, 3268241551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241552, 3268241591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241592, 3268241599, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241600, 3268241615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241616, 3268241623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241624, 3268241639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241640, 3268241727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268241728, 3268242495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268242496, 3268242523, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268242524, 3268242879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268242880, 3268243103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268243104, 3268243327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268243328, 3268243407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268243408, 3268243743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268243744, 3268243775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268243776, 3268243967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268243968, 3268244031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244032, 3268244047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244048, 3268244063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244064, 3268244735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244736, 3268244743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244744, 3268244775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244776, 3268244783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244784, 3268244791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244792, 3268244799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268244800, 3268245111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268245112, 3268245115, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268245116, 3268245247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268245248, 3268245375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268245376, 3268245503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268245504, 3268245759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268245760, 3268246271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268246272, 3268246783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268246784, 3268246791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268246792, 3268246807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268246808, 3268246911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268246912, 3268246927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268246928, 3268246959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268246960, 3268247007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268247008, 3268247111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268247112, 3268247135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268247136, 3268248319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268248320, 3268248511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268248512, 3268248831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268248832, 3268248959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268248960, 3268250111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250112, 3268250407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250408, 3268250415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250416, 3268250423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250424, 3268250559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250560, 3268250575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250576, 3268250591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250592, 3268250607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250608, 3268250623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268250624, 3268251647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268251648, 3268253951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268253952, 3268254015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254016, 3268254463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254464, 3268254543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254544, 3268254591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254592, 3268254607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254608, 3268254615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254616, 3268254639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254640, 3268254879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254880, 3268254911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268254912, 3268255807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255808, 3268255863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255864, 3268255871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255872, 3268255887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255888, 3268255895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255896, 3268255919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255920, 3268255951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255952, 3268255983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268255984, 3268256895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268256896, 3268256959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268256960, 3268257023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257024, 3268257055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257056, 3268257087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257088, 3268257119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257120, 3268257263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257264, 3268257271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257272, 3268257415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257416, 3268257419, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257420, 3268257423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257424, 3268257431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257432, 3268257439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257440, 3268257455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257456, 3268257471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257472, 3268257487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257488, 3268257527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268257528, 3268258559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268258560, 3268258623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268258624, 3268258687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268258688, 3268258751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268258752, 3268259263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259264, 3268259327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259328, 3268259519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259520, 3268259527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259528, 3268259543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259544, 3268259551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259552, 3268259559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259560, 3268259575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259576, 3268259807, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259808, 3268259823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259824, 3268259831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268259832, 3268260095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268260096, 3268260351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268260352, 3268260607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268260608, 3268260639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268260640, 3268260671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268260672, 3268261935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268261936, 3268261951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268261952, 3268262015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268262016, 3268262079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268262080, 3268262767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268262768, 3268262783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268262784, 3268262879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268262880, 3268262887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268262888, 3268263231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268263232, 3268263263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268263264, 3268263391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268263392, 3268263423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268263424, 3268263775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268263776, 3268263783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268263784, 3268264735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268264736, 3268264767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268264768, 3268265407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268265408, 3268265455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268265456, 3268265463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268265464, 3268265471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268265472, 3268265983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268265984, 3268266495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268266496, 3268266983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268266984, 3268266991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268266992, 3268267535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267536, 3268267551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267552, 3268267583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267584, 3268267599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267600, 3268267743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267744, 3268267775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267776, 3268267935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267936, 3268267959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268267960, 3268268543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268268544, 3268268799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268268800, 3268270351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268270352, 3268270367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268270368, 3268270847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268270848, 3268271359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268271360, 3268271911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268271912, 3268271919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268271920, 3268271927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268271928, 3268271935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268271936, 3268272703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268272704, 3268272719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268272720, 3268272727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268272728, 3268272743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268272744, 3268272751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268272752, 3268272767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268272768, 3268273023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268273024, 3268273151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268273152, 3268273919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268273920, 3268273983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268273984, 3268274111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274112, 3268274175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274176, 3268274455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274456, 3268274459, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274460, 3268274527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274528, 3268274543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274544, 3268274559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274560, 3268274591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274592, 3268274687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274688, 3268274815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268274816, 3268275775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268275776, 3268275839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268275840, 3268275983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268275984, 3268275999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276000, 3268276031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276032, 3268276095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276096, 3268276639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276640, 3268276655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276656, 3268276671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276672, 3268276687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276688, 3268276767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276768, 3268276799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276800, 3268276863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276864, 3268276895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268276896, 3268277055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268277056, 3268277119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268277120, 3268277759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268277760, 3268278015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268278016, 3268278351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268278352, 3268278367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268278368, 3268278463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268278464, 3268278495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268278496, 3268280063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268280064, 3268280319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268280320, 3268299007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268299008, 3268299263, N'CF', N'Central African Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268299264, 3268335615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268335616, 3268335871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268335872, 3268345855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268345856, 3268411391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268411392, 3268424959, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268424960, 3268425727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268425728, 3268425983, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268425984, 3268426495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268426496, 3268428031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268428032, 3268428287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268428288, 3268428543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268428544, 3268429055, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268429056, 3268429311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268429312, 3268429567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268429568, 3268430079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268430080, 3268430847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268430848, 3268431103, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268431104, 3268476927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268476928, 3268542463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268542464, 3268607999, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268608000, 3268673535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268673536, 3268703799, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268703800, 3268703807, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268703808, 3268728287, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268728288, 3268728299, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268728300, 3268739071, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268739072, 3268739327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268739328, 3268739583, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268739584, 3268739839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268739840, 3268740095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268740096, 3268740351, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268740352, 3268740607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268740608, 3268740863, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268740864, 3268741119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268741120, 3268741375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268741376, 3268741887, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268741888, 3268742143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268742144, 3268742399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268742400, 3268742655, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268742656, 3268742911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268742912, 3268743167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268743168, 3268743423, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268743424, 3268743679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268743680, 3268743935, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268743936, 3268744191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268744192, 3268744447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268744448, 3268744703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268744704, 3268744959, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268744960, 3268745215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268745216, 3268745471, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268745472, 3268745727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268745728, 3268745983, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268745984, 3268746239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268746240, 3268746495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268746496, 3268746751, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268746752, 3268747007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268747008, 3268747263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268747264, 3268755455, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268755456, 3268763647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268763648, 3268771839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268771840, 3268772735, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268772736, 3268772751, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268772752, 3268788223, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268788224, 3268804607, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268804608, 3268869375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268869376, 3268870143, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268870144, 3268876063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268876064, 3268876127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268876128, 3268876191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268876192, 3268876223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268876224, 3268881151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268881152, 3268881407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268881408, 3268881919, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268881920, 3268882175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268882176, 3268916223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268916224, 3268916479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268916480, 3268920575, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268920576, 3268920831, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268920832, 3268932351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268932352, 3268932607, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268932608, 3268935679, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3268935680, 3269057535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269057536, 3269058047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269058048, 3269066751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269066752, 3269069323, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269069324, 3269069327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269069328, 3269132287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269132288, 3269197823, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269197824, 3269200639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269200640, 3269200895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269200896, 3269202175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269202176, 3269202431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269202432, 3269212671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269212672, 3269213183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269213184, 3269231871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269231872, 3269232127, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269232128, 3269233407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269233408, 3269233663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269233664, 3269239039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269239040, 3269239295, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269239296, 3269263359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269263360, 3269263871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269263872, 3269264127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269264128, 3269264639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269264640, 3269264895, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269264896, 3269265855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269265856, 3269265919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269265920, 3269266175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269266176, 3269266431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269266432, 3269266687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269266688, 3269266943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269266944, 3269267455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269267456, 3269271551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269271552, 3269272703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269272704, 3269272831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269272832, 3269272847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269272848, 3269272863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269272864, 3269272895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269272896, 3269272959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269272960, 3269273087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269273088, 3269273343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269273344, 3269273439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269273440, 3269273455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269273456, 3269273599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269273600, 3269273855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269273856, 3269276159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269276160, 3269276415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269276416, 3269277183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269277184, 3269277695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269277696, 3269278719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269278720, 3269279231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269279232, 3269279487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269279488, 3269279663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269279664, 3269279671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269279672, 3269279679, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269279680, 3269281535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269281536, 3269281663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269281664, 3269281759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269281760, 3269281791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269281792, 3269282303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269282304, 3269282559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269282560, 3269282815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269282816, 3269283327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269283328, 3269283583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269283584, 3269283871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269283872, 3269283903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269283904, 3269283919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269283920, 3269283927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269283928, 3269284991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269284992, 3269285055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285056, 3269285087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285088, 3269285135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285136, 3269285151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285152, 3269285231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285232, 3269285239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285240, 3269285247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285248, 3269285311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285312, 3269285327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285328, 3269285375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285376, 3269285887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269285888, 3269286399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269286400, 3269286463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269286464, 3269288687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269288688, 3269288959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269288960, 3269289471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269289472, 3269289727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269289728, 3269290567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269290568, 3269290575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269290576, 3269290591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269290592, 3269290687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269290688, 3269290735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269290736, 3269290743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269290744, 3269291263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269291264, 3269291519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269291520, 3269291535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269291536, 3269291583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269291584, 3269291647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269291648, 3269291775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269291776, 3269292287, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269292288, 3269293087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293088, 3269293151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293152, 3269293207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293208, 3269293215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293216, 3269293247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293248, 3269293279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293280, 3269293375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293376, 3269293383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293384, 3269293855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293856, 3269293887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293888, 3269293919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293920, 3269293951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269293952, 3269294591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269294592, 3269294719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269294720, 3269296031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296032, 3269296047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296048, 3269296063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296064, 3269296095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296096, 3269296231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296232, 3269296235, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296236, 3269296367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296368, 3269296383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296384, 3269296639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269296640, 3269297151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269297152, 3269297663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269297664, 3269298559, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269298560, 3269298623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269298624, 3269298663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269298664, 3269298671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269298672, 3269302527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269302528, 3269303039, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269303040, 3269303295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269303296, 3269303423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269303424, 3269303551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269303552, 3269303679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269303680, 3269305343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269305344, 3269305351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269305352, 3269305855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269305856, 3269307391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269307392, 3269307647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269307648, 3269307903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269307904, 3269310655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269310656, 3269310671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269310672, 3269310975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269310976, 3269311231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269311232, 3269311743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269311744, 3269311999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269312000, 3269313791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269313792, 3269314175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269314176, 3269314191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269314192, 3269314199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269314200, 3269314815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269314816, 3269315071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269315072, 3269315583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269315584, 3269315591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269315592, 3269317375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269317376, 3269317631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269317632, 3269317663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269317664, 3269317671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269317672, 3269317887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269317888, 3269318399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269318400, 3269318431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269318432, 3269318463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269318464, 3269318655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269318656, 3269318983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269318984, 3269319007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269319008, 3269319047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269319048, 3269319055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269319056, 3269319071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269319072, 3269319135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269319136, 3269320447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269320448, 3269320703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269320704, 3269321727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269321728, 3269321983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269321984, 3269322239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269322240, 3269322495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269322496, 3269322679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269322680, 3269322683, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269322684, 3269322751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269322752, 3269323263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269323264, 3269326847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269326848, 3269326855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269326856, 3269326959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269326960, 3269326971, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269326972, 3269326983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269326984, 3269326999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327000, 3269327023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327024, 3269327039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327040, 3269327055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327056, 3269327103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327104, 3269327759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327760, 3269327767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327768, 3269327863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269327864, 3269328383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269328384, 3269328895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269328896, 3269459967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269459968, 3269525503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269525504, 3269591039, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269591040, 3269621759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269621760, 3269623551, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269623552, 3269623807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269623808, 3269625855, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269625856, 3269626367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269626368, 3269627903, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269627904, 3269656575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269656576, 3269722111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269722112, 3269731839, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269731840, 3269732095, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269732096, 3269750799, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269750800, 3269750815, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269750816, 3269787647, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269787648, 3269853183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269853184, 3269918719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269918720, 3269936063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269936064, 3269936079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269936080, 3269984255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3269984256, 3270049791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270049792, 3270115327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270115328, 3270117503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270117504, 3270117631, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270117632, 3270118399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270118400, 3270120703, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270120704, 3270122239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270122240, 3270122495, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270122496, 3270123715, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270123716, 3270123719, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270123720, 3270123775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270123776, 3270124031, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270124032, 3270124543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270124544, 3270124799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270124800, 3270125055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270125056, 3270125567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270125568, 3270126079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270126080, 3270126335, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270126336, 3270126623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270126624, 3270126655, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270126656, 3270131967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270131968, 3270132223, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270132224, 3270132991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270132992, 3270133023, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270133024, 3270136927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270136928, 3270136959, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270136960, 3270136991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270136992, 3270137055, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270137056, 3270137343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270137344, 3270138111, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270138112, 3270140927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270140928, 3270141439, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270141440, 3270142207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270142208, 3270142463, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270142464, 3270143999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270144000, 3270144767, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270144768, 3270146815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270146816, 3270147327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270147328, 3270147583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270147584, 3270148095, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270148096, 3270151423, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270151424, 3270151935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270151936, 3270154527, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270154528, 3270155007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270155008, 3270155775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270155776, 3270156287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270156288, 3270156799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270156800, 3270159615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270159616, 3270159871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270159872, 3270164991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270164992, 3270165247, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270165248, 3270166527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270166528, 3270167807, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270167808, 3270169087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270169088, 3270169343, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270169344, 3270170111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270170112, 3270170623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270170624, 3270173183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270173184, 3270173951, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270173952, 3270174719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270174720, 3270174975, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270174976, 3270175743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270175744, 3270175999, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270176000, 3270176767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270176768, 3270177023, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270177024, 3270180863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270180864, 3270181119, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270181120, 3270181887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270181888, 3270182143, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270182144, 3270183679, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270183680, 3270188287, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270188288, 3270188799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270188800, 3270189055, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270189056, 3270190079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270190080, 3270190591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270190592, 3270191359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270191360, 3270191615, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270191616, 3270192047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270192048, 3270193151, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270193152, 3270193919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270193920, 3270194175, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270194176, 3270194431, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270194432, 3270194687, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270194688, 3270194943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270194944, 3270195455, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270195456, 3270195967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270195968, 3270196479, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270196480, 3270197247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270197248, 3270205695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270205696, 3270205951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270205952, 3270205983, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270205984, 3270205999, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270206000, 3270206063, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270206064, 3270206079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270206080, 3270206463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270206464, 3270206975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270206976, 3270207231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270207232, 3270207487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270207488, 3270207743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270207744, 3270207903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270207904, 3270207999, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270208000, 3270208255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270208256, 3270208511, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270208512, 3270208767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270208768, 3270209023, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270209024, 3270213631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270213632, 3270214279, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270214280, 3270214287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270214288, 3270216735, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270216736, 3270216751, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270216752, 3270216799, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270216800, 3270216815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270216816, 3270216831, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270216832, 3270216879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270216880, 3270216959, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270216960, 3270217471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270217472, 3270219775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270219776, 3270221823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270221824, 3270222335, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270222336, 3270223871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270223872, 3270224639, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270224640, 3270224895, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270224896, 3270225407, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270225408, 3270225663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270225664, 3270230015, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270230016, 3270230783, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270230784, 3270231295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270231296, 3270231647, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270231648, 3270231807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270231808, 3270232831, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270232832, 3270234111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270234112, 3270234367, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270234368, 3270238975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270238976, 3270239999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270240000, 3270241535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270241536, 3270242559, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270242560, 3270242815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270242816, 3270243071, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270243072, 3270243327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270243328, 3270243839, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270243840, 3270244351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270244352, 3270245887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270245888, 3270246143, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270246144, 3270246399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270246400, 3270247951, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270247952, 3270247955, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270247956, 3270365951, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270365952, 3270366207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270366208, 3270369919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270369920, 3270369927, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270369928, 3270377471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270377472, 3270443007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270443008, 3270508543, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270508544, 3270639615, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270639616, 3270647807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270647808, 3270648063, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270648064, 3270648319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270648320, 3270648575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270648576, 3270648831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270648832, 3270649087, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270649088, 3270649343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270649344, 3270649599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270649600, 3270649855, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270649856, 3270650111, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270650112, 3270650367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270650368, 3270650623, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270650624, 3270651391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270651392, 3270651647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270651648, 3270651903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270651904, 3270652415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270652416, 3270652671, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270652672, 3270652927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270652928, 3270653183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270653184, 3270653439, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270653440, 3270653695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270653696, 3270653951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270653952, 3270654207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270654464, 3270654719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270654720, 3270655231, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270655232, 3270655487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270655488, 3270655743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270655744, 3270655999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270656000, 3270664191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270664192, 3270666239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270666240, 3270667263, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270667264, 3270668287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270668288, 3270669311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270669312, 3270670335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270670336, 3270672383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270672384, 3270680575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270680576, 3270688767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270688768, 3270772079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270772080, 3270772087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270772088, 3270782207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270782208, 3270782223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270782224, 3270836223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270836224, 3270911935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270911936, 3270911967, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270911968, 3270911999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270912000, 3270926335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270926336, 3270926591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270926592, 3270926847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270926848, 3270927103, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270927104, 3270927359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270927360, 3270927615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270927616, 3270927871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270927872, 3270928127, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270928128, 3270928383, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270928384, 3270928895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270928896, 3270929919, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270929920, 3270930431, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270930432, 3270930943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270930944, 3270931455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270931456, 3270931967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270931968, 3270932479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270932480, 3270932991, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270932992, 3270933503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270933504, 3270934015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270934016, 3270934527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270934528, 3270967295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270967296, 3270975487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270975488, 3270991871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3270991872, 3271000063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271000064, 3271008255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271008256, 3271016447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271016448, 3271022159, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271022160, 3271022175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271022176, 3271022335, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271022336, 3271022463, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271022464, 3271024447, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271024448, 3271024451, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271024452, 3271024639, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271024640, 3271032831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271032832, 3271098367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271098368, 3271163903, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271163904, 3271229439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271229440, 3271249919, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271249920, 3271250175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271250176, 3271280351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271280352, 3271280383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271280384, 3271280687, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271280688, 3271280703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271280704, 3271280719, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271280720, 3271280735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271280736, 3271290623, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271290624, 3271290879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271290880, 3271310079, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271310080, 3271310335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271310336, 3271341247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271341248, 3271341311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271341312, 3271360511, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271360512, 3271363407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363408, 3271363415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363416, 3271363423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363424, 3271363455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363456, 3271363471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363472, 3271363487, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363488, 3271363519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363520, 3271363551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363552, 3271363583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271363584, 3271365887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271365888, 3271366143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271366144, 3271366399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271366400, 3271366655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271366656, 3271371263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271371264, 3271371519, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271371520, 3271371679, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271371680, 3271371711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271371712, 3271371775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271371776, 3271372031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271372032, 3271372287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271372288, 3271372799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271372800, 3271373055, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271373056, 3271373311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271373312, 3271373567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271373568, 3271373823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271373824, 3271374079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271374080, 3271374335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271374336, 3271374847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271374848, 3271375359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271375360, 3271375871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271375872, 3271376383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271376384, 3271376447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271376448, 3271376463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271376464, 3271376479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271376480, 3271376511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271376512, 3271376639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271376640, 3271376895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271376896, 3271377407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271377408, 3271377919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271377920, 3271378687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271378688, 3271378943, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271378944, 3271380991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271380992, 3271381247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271381248, 3271381503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271381504, 3271381759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271381760, 3271382527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271382528, 3271383039, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271383040, 3271383295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271383296, 3271383551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271383552, 3271384063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271384064, 3271384319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271384320, 3271384575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271384576, 3271384831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271384832, 3271385087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271385088, 3271385159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271385160, 3271385183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271385184, 3271385215, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271385216, 3271385343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271385344, 3271387903, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271387904, 3271388159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271388160, 3271391231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271391232, 3271391743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271391744, 3271391999, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271392000, 3271392255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271392256, 3271392511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271392512, 3271392767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271392768, 3271393279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271393280, 3271393791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271393792, 3271394047, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271394048, 3271394303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271394304, 3271394559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271394560, 3271394815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271394816, 3271395071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271395072, 3271395327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271395328, 3271396863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271396864, 3271397119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271397120, 3271397375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271397376, 3271397887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271397888, 3271397951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271397952, 3271397983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271397984, 3271397999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398000, 3271398015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398016, 3271398047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398048, 3271398079, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398080, 3271398143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398144, 3271398303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398304, 3271398335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398336, 3271398399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398400, 3271398911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271398912, 3271399167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271399168, 3271400959, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271400960, 3271401215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271401216, 3271401471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271401472, 3271403263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403264, 3271403519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403520, 3271403775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403776, 3271403903, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403904, 3271403919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403920, 3271403935, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403936, 3271403967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403968, 3271403983, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403984, 3271403991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271403992, 3271403999, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271404000, 3271404031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271404032, 3271405311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271405312, 3271405567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271405568, 3271405823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271405824, 3271406079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271406080, 3271406335, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271406336, 3271406591, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271406592, 3271406847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271406848, 3271407615, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271407616, 3271407871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271407872, 3271408127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271408128, 3271408383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271408384, 3271408639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271408640, 3271408895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271408896, 3271409151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271409152, 3271409407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271409408, 3271409663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271409664, 3271417855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271417856, 3271424071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271424072, 3271424079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271424080, 3271424095, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271424096, 3271424111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271424112, 3271424127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271424128, 3271424191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271424192, 3271424511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271424512, 3271425023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271425024, 3271425279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271425280, 3271425535, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271425536, 3271426047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271426048, 3271426303, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271426304, 3271491583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271491584, 3271492031, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271492032, 3271492063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271492064, 3271497727, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271497728, 3271497791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271497792, 3271497951, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271497952, 3271497983, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271497984, 3271501567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271501568, 3271501575, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271501576, 3271523431, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271523432, 3271523439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271523440, 3271524095, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271524096, 3271524223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271524224, 3271557119, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271557120, 3271589887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271589888, 3271688191, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271688192, 3271696383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271696384, 3271698431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271698432, 3271704575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271704576, 3271712767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271712768, 3271720959, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271720960, 3271729151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271729152, 3271737343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271737344, 3271745535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271753728, 3271770111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271770112, 3271786495, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271819264, 3271821246, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271821247, 3271821247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271821248, 3271884799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271884800, 3271901183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271901184, 3271909375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271909376, 3271909887, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271909888, 3271910399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271910400, 3271910911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271910912, 3271911423, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271911424, 3271911935, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271911936, 3271912959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271912960, 3271913471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271913472, 3271913983, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271913984, 3271914495, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271914496, 3271915007, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271915008, 3271915519, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271915520, 3271916031, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271916032, 3271916543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271916544, 3271917055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271917056, 3271917567, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271917568, 3271925759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271925760, 3271990079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271990080, 3271990080, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3271990081, 3272015871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272015872, 3272019967, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272019968, 3272020991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272020992, 3272024063, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272024064, 3272032255, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272032256, 3272040447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272040448, 3272048639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272048640, 3272056831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272056832, 3272065023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272065024, 3272069343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272069344, 3272069375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272069376, 3272073215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272073216, 3272081407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272081408, 3272081919, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272081920, 3272083455, N'CV', N'Cape Verde') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272083456, 3272083711, N'ST', N'Sao Tome and Principe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272083712, 3272084223, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272084224, 3272084479, N'CV', N'Cape Verde') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272084480, 3272084735, N'ST', N'Sao Tome and Principe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272084736, 3272084991, N'CV', N'Cape Verde') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272084992, 3272085503, N'GW', N'Guinea-Bissau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272085504, 3272086015, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086016, 3272086527, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086528, 3272086655, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086656, 3272086783, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086784, 3272086807, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086808, 3272086815, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086816, 3272086831, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086832, 3272086879, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272086880, 3272087039, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272087040, 3272087295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272087296, 3272087551, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272087552, 3272087807, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272087808, 3272088063, N'CV', N'Cape Verde') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272088064, 3272088319, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272088320, 3272088575, N'CV', N'Cape Verde') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272088576, 3272088831, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272088832, 3272089087, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272089088, 3272089343, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272089344, 3272089479, N'ST', N'Sao Tome and Principe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272089480, 3272089535, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272089536, 3272089551, N'ST', N'Sao Tome and Principe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272089552, 3272089599, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272089600, 3272097791, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272097792, 3272106239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272106240, 3272106495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272106496, 3272106751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272106752, 3272107007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272107008, 3272107263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272107264, 3272107519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272107520, 3272107775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272107776, 3272108031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272108032, 3272108287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272108288, 3272108543, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272108544, 3272109055, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272109056, 3272109311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272109312, 3272109567, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272109568, 3272109823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272109824, 3272110079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272110080, 3272110335, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272110336, 3272110591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272110592, 3272110847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272110848, 3272111103, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272111104, 3272111871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272111872, 3272112383, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272112384, 3272113151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272113152, 3272113407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272113408, 3272113663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272113664, 3272113919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272113920, 3272114175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272114176, 3272122367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272122368, 3272130559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272138752, 3272146943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272146944, 3272161023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272161024, 3272161279, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272161280, 3272169215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272169216, 3272169471, N'UA', N'Ukraine') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272169472, 3272178559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272178560, 3272178623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272178624, 3272210175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272210176, 3272210431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272210432, 3272212479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272212480, 3272212991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272212992, 3272213375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213376, 3272213391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213392, 3272213407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213408, 3272213415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213416, 3272213423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213424, 3272213431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213432, 3272213455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213456, 3272213471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213472, 3272213487, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213488, 3272213503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213504, 3272213567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213568, 3272213575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213576, 3272213583, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213584, 3272213599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213600, 3272213615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213616, 3272213631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213632, 3272213639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213640, 3272213655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213656, 3272213663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213664, 3272213671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213672, 3272213679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213680, 3272213695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213696, 3272213735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213736, 3272213751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213752, 3272213759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213760, 3272213823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213824, 3272213831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213832, 3272213839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213840, 3272213855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213856, 3272213887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272213888, 3272214015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214016, 3272214271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214272, 3272214351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214352, 3272214367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214368, 3272214399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214400, 3272214655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214656, 3272214671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214672, 3272214679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214680, 3272214687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214688, 3272214815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214816, 3272214823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214824, 3272214831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214832, 3272214847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214848, 3272214879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214880, 3272214883, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214884, 3272214887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214888, 3272214895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214896, 3272214903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214904, 3272214911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214912, 3272214943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214944, 3272214951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214952, 3272214959, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272214960, 3272215007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215008, 3272215015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215016, 3272215023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215024, 3272215039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215040, 3272215295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215296, 3272215551, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215552, 3272215807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215808, 3272215823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215824, 3272215871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215872, 3272215879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215880, 3272215883, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215884, 3272215919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215920, 3272215935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272215936, 3272215999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216000, 3272216015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216016, 3272216031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216032, 3272216039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216040, 3272216047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216048, 3272216191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216192, 3272216207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216208, 3272216215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216216, 3272216223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216224, 3272216231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216232, 3272216239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216240, 3272216255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216256, 3272216287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216288, 3272216303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216304, 3272216311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216312, 3272216319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216320, 3272216351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216352, 3272216383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216384, 3272216447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216448, 3272216451, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216452, 3272216455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216456, 3272216463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216464, 3272216479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216480, 3272216495, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216496, 3272216511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216512, 3272216543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216544, 3272216575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216576, 3272216895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216896, 3272216911, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216912, 3272216927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216928, 3272216959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272216960, 3272217007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217008, 3272217215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217216, 3272217279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217280, 3272217303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217304, 3272217311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217312, 3272217599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217600, 3272217631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217632, 3272217639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217640, 3272217855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217856, 3272217875, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217876, 3272217879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217880, 3272217887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217888, 3272217919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217920, 3272217983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272217984, 3272218111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272218112, 3272218623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272218624, 3272218639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272218640, 3272218671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272218672, 3272218687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272218688, 3272218719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272218720, 3272218879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272218880, 3272219135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272219136, 3272219391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272219392, 3272219647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272219648, 3272219903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272219904, 3272220159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272220160, 3272220415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272220416, 3272221183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272221184, 3272221311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272221312, 3272221439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272221440, 3272221447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272221448, 3272222719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272222720, 3272222975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272222976, 3272223015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223016, 3272223231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223232, 3272223487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223488, 3272223743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223744, 3272223775, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223776, 3272223807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223808, 3272223815, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223816, 3272223823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223824, 3272223839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272223840, 3272223999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272224000, 3272224255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272224256, 3272224383, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272224384, 3272224511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272224512, 3272224767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272224768, 3272226047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272226048, 3272226815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272226816, 3272227071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272227072, 3272227327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272227328, 3272227583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272227584, 3272227839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272227840, 3272228095, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228096, 3272228383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228384, 3272228399, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228400, 3272228415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228416, 3272228479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228480, 3272228607, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228608, 3272228623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228624, 3272228631, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228632, 3272228639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228640, 3272228671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228672, 3272228703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228704, 3272228735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228736, 3272228799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228800, 3272228863, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272228864, 3272237055, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272237056, 3272240575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272240576, 3272240639, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272240640, 3272245247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272245248, 3272261631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272261632, 3272261887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272261888, 3272262143, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272262144, 3272262399, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272262400, 3272262655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272262656, 3272262911, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272262912, 3272263167, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272263168, 3272263423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272263424, 3272263935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272263936, 3272264191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272264192, 3272264447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272264448, 3272264703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272264704, 3272264959, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272264960, 3272265215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272265216, 3272265471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272265472, 3272265727, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272265728, 3272265983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272265984, 3272266239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272266240, 3272266495, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272266496, 3272266751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272266752, 3272267007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272267008, 3272267263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272267520, 3272267775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272267776, 3272268031, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272268032, 3272268287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272268288, 3272268543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272268544, 3272268799, N'RO', N'Romania') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272268800, 3272269055, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272269056, 3272269311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272269312, 3272269567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272269568, 3272335359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272335360, 3272343551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272343552, 3272351743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272351744, 3272352767, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272352768, 3272353791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272353792, 3272355839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272355840, 3272356863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272356864, 3272357887, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272357888, 3272358911, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272358912, 3272359935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272359936, 3272368127, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272368128, 3272376319, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272376320, 3272384511, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272384512, 3272392703, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272392704, 3272400895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272400896, 3272400903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272400904, 3272400911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272400912, 3272401007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272401008, 3272401023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272401024, 3272401183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272401184, 3272401199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272401200, 3272401919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272401920, 3272401967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272401968, 3272402175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272402176, 3272402191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272402192, 3272402207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272402208, 3272402303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272402304, 3272402559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272402560, 3272403007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272403008, 3272403071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272403072, 3272403199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272403200, 3272403455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272403456, 3272409087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272409088, 3272417279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272417280, 3272418687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272418688, 3272419327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272419328, 3272420863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272420864, 3272420991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272420992, 3272421119, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272421120, 3272421375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272421376, 3272421887, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272421888, 3272422399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272422400, 3272422911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272422912, 3272423423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272423424, 3272423935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272423936, 3272424447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272424448, 3272425471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272425472, 3272426655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272426656, 3272426671, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272426672, 3272441855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272441856, 3272474623, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272474624, 3272474879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272474880, 3272475135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272475136, 3272475391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272475392, 3272475903, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272475904, 3272476159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272476160, 3272476671, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272476672, 3272476927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272476928, 3272477183, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272477184, 3272477439, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272477440, 3272477695, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272477696, 3272477951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272477952, 3272478207, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272478208, 3272478463, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272478464, 3272478719, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272478720, 3272478975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272479232, 3272479487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272479488, 3272479743, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272479744, 3272480255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272480256, 3272480511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272480512, 3272480767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272480768, 3272481023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272481024, 3272481279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272481280, 3272481535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272481536, 3272481791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272481792, 3272482047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272482048, 3272482303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272482304, 3272482559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272482560, 3272482815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272482816, 3272491007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272491008, 3272498815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272498816, 3272498943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272498944, 3272499199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272499200, 3272507391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272507392, 3272515583, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272515584, 3272523775, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272523776, 3272540159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272540160, 3272546559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272546560, 3272546815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272546816, 3272547387, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272547388, 3272547391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272547392, 3272552735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272552736, 3272552743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272552744, 3272552879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272552880, 3272552887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272552888, 3272553471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272553472, 3272553487, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272553488, 3272554779, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272554780, 3272554783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272554784, 3272555247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272555248, 3272555255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272555256, 3272555407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272555408, 3272555423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272555424, 3272556599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272556600, 3272556607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272556608, 3272568079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272568080, 3272568095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272568096, 3272572879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272572880, 3272572895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272572896, 3272605695, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272605696, 3272613887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272613888, 3272622079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272622080, 3272623103, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272623104, 3272624127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272624128, 3272625151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272625152, 3272626175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272626176, 3272627199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272627200, 3272628223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272628224, 3272629247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272629248, 3272630271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272630272, 3272638463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272638464, 3272646655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272646656, 3272650623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272650624, 3272650639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272650640, 3272650655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272650656, 3272650751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272650752, 3272651135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272651136, 3272651151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272651152, 3272651183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272651184, 3272651191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272651192, 3272651231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272651232, 3272651239, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272651240, 3272652287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272652288, 3272652799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272652800, 3272653055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653056, 3272653087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653088, 3272653247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653248, 3272653279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653280, 3272653311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653312, 3272653439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653440, 3272653447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653448, 3272653455, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653456, 3272653463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653464, 3272653543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653544, 3272653551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653552, 3272653567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653568, 3272653631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653632, 3272653663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653664, 3272653695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653696, 3272653727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653728, 3272653759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653760, 3272653791, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653792, 3272653823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653824, 3272653951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272653952, 3272654207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272654208, 3272654335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272654336, 3272654463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272654464, 3272654591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272654592, 3272654719, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272654720, 3272654783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272654784, 3272654847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272654848, 3272663039, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272663040, 3272671231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272671232, 3272704255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272704256, 3272705279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272705280, 3272705535, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272705536, 3272707071, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272707072, 3272707327, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272707328, 3272707583, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272707584, 3272712191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272712192, 3272712447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272712448, 3272712703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272712704, 3272712959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272712960, 3272713215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272713216, 3272713983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272713984, 3272714495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272714496, 3272714751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272714752, 3272715015, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272715016, 3272715023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272715024, 3272715135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272715136, 3272715263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272715264, 3272733119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272733120, 3272733135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272733136, 3272733983, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272733984, 3272733991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272733992, 3272736767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272736768, 3272744959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272744960, 3272753151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272753152, 3272769535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272769536, 3272802303, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272802304, 3272867839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272876032, 3272884223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272884224, 3272892415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272892416, 3272892927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272892928, 3272893439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272893440, 3272894463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272894464, 3272894975, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272894976, 3272895487, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272895488, 3272895999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272896000, 3272896511, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272896512, 3272897535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272897536, 3272898047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272898048, 3272898559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272898560, 3272899071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272899072, 3272899583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272899584, 3272900095, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272900096, 3272900607, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272900608, 3272908799, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272908800, 3272910847, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272910848, 3272911359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272911360, 3272911871, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272911872, 3272912383, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272912384, 3272916991, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272925184, 3272933759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272933760, 3272933775, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272933776, 3272998911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3272998912, 3273007103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273007104, 3273015295, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273015296, 3273023487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273031680, 3273032191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273032192, 3273033215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273033216, 3273033727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273033728, 3273034239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273034240, 3273034751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273034752, 3273035263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273035264, 3273035775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273035776, 3273036287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273036288, 3273036799, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273036800, 3273037311, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273037312, 3273037823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273037824, 3273038335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273038336, 3273038847, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273038848, 3273039871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273039872, 3273048063, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273048064, 3273052079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273052080, 3273052087, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273052088, 3273052095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273052096, 3273052111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273052112, 3273052127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273052128, 3273056255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273056256, 3273064447, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273064448, 3273129983, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273129984, 3273138175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273138176, 3273146367, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273146368, 3273148415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273148416, 3273150463, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273150464, 3273152511, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273152512, 3273154559, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273154560, 3273162751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273162752, 3273170943, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273170944, 3273179135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273179136, 3273187327, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273187328, 3273195519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273195520, 3273240119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273240120, 3273240127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273240128, 3273240223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273240224, 3273240231, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273240232, 3273246466, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273246467, 3273246467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273246468, 3273261055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273261056, 3273261567, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273261568, 3273262079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273262080, 3273262591, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273262592, 3273263103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273263616, 3273264127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273264128, 3273264639, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273264640, 3273265151, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273265152, 3273266175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273266176, 3273266687, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273266688, 3273267711, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273267712, 3273268223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273268224, 3273268735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273268736, 3273269247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273269248, 3273276119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273276120, 3273276127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273276128, 3273277439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273285632, 3273293823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273293824, 3273302015, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273302016, 3273310207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273310208, 3273318399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273318400, 3273326591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273326592, 3273326879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273326880, 3273326927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273326928, 3273326983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273326984, 3273326987, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273326988, 3273326991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273326992, 3273327047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273327048, 3273328511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273328512, 3273328639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273328640, 3273328767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273328768, 3273328895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273328896, 3273329151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329152, 3273329199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329200, 3273329215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329216, 3273329311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329312, 3273329407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329408, 3273329415, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329416, 3273329423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329424, 3273329439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273329440, 3273330175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330176, 3273330183, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330184, 3273330191, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330192, 3273330199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330200, 3273330223, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330224, 3273330271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330272, 3273330287, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330288, 3273330303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330304, 3273330431, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330432, 3273330535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330536, 3273330559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330560, 3273330943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330944, 3273330951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273330952, 3273331199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273331200, 3273331967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273331968, 3273332031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273332032, 3273332095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273332096, 3273332223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273332224, 3273332543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273332544, 3273332575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273332576, 3273332607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273332608, 3273332671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273332672, 3273333055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273333056, 3273333119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273333120, 3273335039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273335040, 3273335295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273335296, 3273335807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273335808, 3273335935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273335936, 3273335999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273336000, 3273336847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273336848, 3273336879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273336880, 3273336959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273336960, 3273337087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273337088, 3273337855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273337856, 3273338111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273338112, 3273338623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273338624, 3273339903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273339904, 3273339919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273339920, 3273339943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273339944, 3273339951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273339952, 3273339967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273339968, 3273340095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273340096, 3273340111, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273340112, 3273340119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273340120, 3273340159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273340160, 3273340415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273340416, 3273340671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273340672, 3273340927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273340928, 3273341439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273341440, 3273341695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273341696, 3273341951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273341952, 3273342143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273342144, 3273342175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273342176, 3273342463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273342464, 3273342975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273342976, 3273343999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273344000, 3273344511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273344512, 3273344767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273344768, 3273345023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273345024, 3273345279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273345280, 3273346815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273346816, 3273347071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273347072, 3273347839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273347840, 3273348351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273348352, 3273349119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273349120, 3273349631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273349632, 3273350271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273350272, 3273350287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273350288, 3273350335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273350336, 3273350351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273350352, 3273351423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273351424, 3273351455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273351456, 3273351503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273351504, 3273351519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273351520, 3273351871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273351872, 3273351903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273351904, 3273351935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273351936, 3273352191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273352192, 3273352927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273352928, 3273352959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273352960, 3273352991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273352992, 3273353023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273353024, 3273355519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273355520, 3273356287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273356288, 3273358111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273358112, 3273358143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273358144, 3273358975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273358976, 3273359039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273359040, 3273359807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273359808, 3273359903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273359904, 3273359951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273359952, 3273359967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273359968, 3273359983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273359984, 3273359999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273360000, 3273360007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273360008, 3273360079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273360080, 3273360103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273360104, 3273360111, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273360112, 3273361471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361472, 3273361535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361536, 3273361631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361632, 3273361663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361664, 3273361791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361792, 3273361823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361824, 3273361855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361856, 3273361919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273361920, 3273362047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273362048, 3273362175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273362176, 3273362239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273362240, 3273362255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273362256, 3273363207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273363208, 3273363211, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273363212, 3273363327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273363328, 3273363391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273363392, 3273364607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273364608, 3273364735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273364736, 3273364991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273364992, 3273365247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273365248, 3273367295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273367296, 3273367423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273367424, 3273367551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273367552, 3273367567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273367568, 3273368063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273368064, 3273368575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273368576, 3273369343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273369344, 3273369855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273369856, 3273370623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273370624, 3273371135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371136, 3273371519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371520, 3273371583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371584, 3273371711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371712, 3273371791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371792, 3273371807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371808, 3273371823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371824, 3273371847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371848, 3273371855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371856, 3273371871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371872, 3273371875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273371876, 3273371999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273372000, 3273372063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273372064, 3273372143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273372144, 3273372151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273372152, 3273372671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273372672, 3273373695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273373696, 3273375231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273375232, 3273375551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273375552, 3273375743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273375744, 3273375871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273375872, 3273375999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273376000, 3273376255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273376256, 3273376535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273376536, 3273376543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273376544, 3273377791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273377792, 3273378095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273378096, 3273378559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273378560, 3273378815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273378816, 3273379263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273379264, 3273379295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273379296, 3273381695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273381696, 3273381727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273381728, 3273381887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273381888, 3273382143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273382144, 3273382399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273382400, 3273382463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273382464, 3273382479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273382480, 3273382623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273382624, 3273382639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273382640, 3273382687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273382688, 3273383423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273383424, 3273384703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273384704, 3273384959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273384960, 3273385215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273385216, 3273385279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273385280, 3273385727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273385728, 3273385759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273385760, 3273385791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273385792, 3273385855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273385856, 3273385919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273385920, 3273387007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387008, 3273387071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387072, 3273387215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387216, 3273387223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387224, 3273387263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387264, 3273387519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387520, 3273387551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387552, 3273387583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273387584, 3273388159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388160, 3273388223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388224, 3273388287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388288, 3273388351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388352, 3273388543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388544, 3273388807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388808, 3273388811, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388812, 3273388863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388864, 3273388871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388872, 3273388895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388896, 3273388903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388904, 3273388911, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388912, 3273388923, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388924, 3273388927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273388928, 3273389567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273389568, 3273390111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273390112, 3273390143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273390144, 3273390207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273390208, 3273390335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273390336, 3273390399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273390400, 3273390463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273390464, 3273390591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273390592, 3273391295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273391296, 3273391359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273391360, 3273392127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273392128, 3273400319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273400320, 3273408511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273408512, 3273433087, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273433088, 3273433599, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273433600, 3273434111, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273434112, 3273434623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273434624, 3273435135, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273435136, 3273435647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273435648, 3273436159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273436160, 3273436671, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273436672, 3273437183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273437184, 3273437695, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273437696, 3273438207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273438208, 3273438719, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273438720, 3273439231, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273439232, 3273439743, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273439744, 3273440255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273440256, 3273440767, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273440768, 3273441279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273441280, 3273449471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273449472, 3273457663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273457664, 3273523199, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273523200, 3273588735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273588736, 3273687039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273687040, 3273719807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273719808, 3273727999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273728000, 3273728255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273728256, 3273728511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273728512, 3273733375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273733376, 3273733887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273733888, 3273736191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273736192, 3273743359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273743360, 3273743615, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273743616, 3273744383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273744384, 3273752575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273752576, 3273760767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273760768, 3273768959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273768960, 3273785343, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273785344, 3273801727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273809920, 3273818111, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273818112, 3273826303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273826304, 3273834495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273834496, 3273835519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273835520, 3273838591, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273838592, 3273839615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273839616, 3273840639, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273840640, 3273841663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273841664, 3273842687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273842688, 3273850879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273850880, 3273867263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273867264, 3273867519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273867520, 3273867775, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273867776, 3273868031, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273868032, 3273868287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273868288, 3273869311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273869312, 3273871359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273871360, 3273871615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273871616, 3273871871, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273871872, 3273872383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273872384, 3273872895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273872896, 3273873151, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273873152, 3273873919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273873920, 3273874431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273874432, 3273875455, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273875456, 3273875711, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273875712, 3273875967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273875968, 3273876223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273876224, 3273876479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273876480, 3273876991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273876992, 3273877247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273877248, 3273877503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273877504, 3273877535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273877536, 3273877567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273877568, 3273877759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273877760, 3273878015, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273878016, 3273878271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273878272, 3273878527, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273878528, 3273879039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273879040, 3273879551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273879552, 3273880063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273880064, 3273880575, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273880576, 3273881087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273881088, 3273881343, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273881344, 3273881599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273881600, 3273881855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273881856, 3273882111, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273882112, 3273882367, N'SI', N'Slovenia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273882368, 3273883135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273883136, 3273883391, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273883392, 3273883647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273883648, 3273916415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273916416, 3273932799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273932800, 3273949183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273949184, 3273981951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3273981952, 3274047487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274047488, 3274049535, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274049536, 3274050559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274050560, 3274051583, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274051584, 3274052351, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274052352, 3274052607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274052608, 3274052863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274052864, 3274053119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274053120, 3274053375, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274053376, 3274053631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274053632, 3274054655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274054656, 3274055167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274055168, 3274055423, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274055424, 3274055679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274055680, 3274063871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274063872, 3274072063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274072064, 3274080255, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274080256, 3274088447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274088448, 3274096639, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274096640, 3274113023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274113024, 3274145791, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274145792, 3274162175, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274162176, 3274162687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274162688, 3274163199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274163200, 3274163711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274163712, 3274164223, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274164224, 3274164735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274164736, 3274165759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274165760, 3274166271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274166272, 3274166783, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274166784, 3274167295, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274167296, 3274167807, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274167808, 3274168319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274168320, 3274168831, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274168832, 3274169343, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274169344, 3274170367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274170368, 3274170879, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274170880, 3274171391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274171392, 3274171903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274171904, 3274172415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274172416, 3274172927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274172928, 3274173439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274173440, 3274173951, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274173952, 3274174463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274174464, 3274175487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274175488, 3274175999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274176000, 3274176511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274176512, 3274177023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274177024, 3274177535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274177536, 3274178047, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274178048, 3274178559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274178560, 3274204063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274204064, 3274204095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274204096, 3274227199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274227200, 3274227455, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274227456, 3274244095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274244096, 3274309631, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274309632, 3274318031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274318032, 3274318047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274318048, 3274326015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274326016, 3274358783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274358784, 3274366975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274366976, 3274368511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274368512, 3274368767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274368768, 3274369023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274369024, 3274370047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274370048, 3274371071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274371072, 3274373375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274373376, 3274373631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274373632, 3274374143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274374144, 3274375167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274375168, 3274383359, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274383360, 3274384383, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274384384, 3274385407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274385408, 3274386431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274386432, 3274388479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274388480, 3274389503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274389504, 3274390527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274390528, 3274391551, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274391552, 3274399743, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274399744, 3274407935, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274407936, 3274416127, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274416128, 3274424319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274424320, 3274435711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274435712, 3274435839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274435840, 3274440703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274440704, 3274442751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274442752, 3274443263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274443264, 3274443519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274443520, 3274443647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274443648, 3274443711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274443712, 3274443775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274443776, 3274443807, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274443808, 3274444031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274444032, 3274446335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274446336, 3274447871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274447872, 3274448383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274448384, 3274448639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274448640, 3274448895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274448896, 3274449663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274449664, 3274449919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274449920, 3274450231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450232, 3274450247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450248, 3274450391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450392, 3274450407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450408, 3274450415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450416, 3274450431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450432, 3274450591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450592, 3274450655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450656, 3274450687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274450688, 3274451199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274451200, 3274452311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452312, 3274452319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452320, 3274452359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452360, 3274452367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452368, 3274452375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452376, 3274452383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452384, 3274452391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452392, 3274452399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452400, 3274452423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452424, 3274452431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452432, 3274452439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452440, 3274452447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452448, 3274452455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452456, 3274452463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452464, 3274452471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452472, 3274452495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452496, 3274452543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452544, 3274452559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452560, 3274452575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452576, 3274452655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452656, 3274452703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452704, 3274452735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274452736, 3274453767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453768, 3274453783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453784, 3274453791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453792, 3274453799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453800, 3274453847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453848, 3274453863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453864, 3274453871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453872, 3274453887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453888, 3274453903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453904, 3274453911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453912, 3274453935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453936, 3274453943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453944, 3274453951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453952, 3274453959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453960, 3274453975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453976, 3274453983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274453984, 3274454271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274454272, 3274454655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274454656, 3274455311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455312, 3274455327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455328, 3274455335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455336, 3274455343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455344, 3274455351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455352, 3274455359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455360, 3274455375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455376, 3274455383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455384, 3274455391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455392, 3274455399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455400, 3274455423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455424, 3274455431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455432, 3274455439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455440, 3274455447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455448, 3274455503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455504, 3274455519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455520, 3274455551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455552, 3274455743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455744, 3274455807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455808, 3274455871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455872, 3274455935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455936, 3274455967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274455968, 3274456359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456360, 3274456367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456368, 3274456375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456376, 3274456383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456384, 3274456391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456392, 3274456399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456400, 3274456447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456448, 3274456455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456456, 3274456511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456512, 3274456527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456528, 3274456535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456536, 3274456543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456544, 3274456559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456560, 3274456567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274456568, 3274460223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274460224, 3274460415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274460416, 3274462207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274462208, 3274462463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274462464, 3274465023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274465024, 3274465151, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274465152, 3274466351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466352, 3274466367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466368, 3274466399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466400, 3274466415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466416, 3274466463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466464, 3274466559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466560, 3274466735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466736, 3274466743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466744, 3274466763, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466764, 3274466767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466768, 3274466783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466784, 3274466815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274466816, 3274467099, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274467100, 3274467103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274467104, 3274467307, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274467308, 3274467327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274467328, 3274470383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274470384, 3274470399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274470400, 3274470535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274470536, 3274470655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274470656, 3274471423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274471424, 3274471535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274471536, 3274471663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274471664, 3274471679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274471680, 3274471935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274471936, 3274472959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274472960, 3274483711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274483712, 3274487807, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274487808, 3274489599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274489600, 3274489855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274489856, 3274490175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274490176, 3274490895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274490896, 3274490911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274490912, 3274491207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491208, 3274491215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491216, 3274491247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491248, 3274491255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491256, 3274491295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491296, 3274491303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491304, 3274491319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491320, 3274491327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491328, 3274491383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491384, 3274491391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274491392, 3274504447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274504448, 3274505727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274505728, 3274505791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274505792, 3274505792, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274505793, 3274505855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274505856, 3274506239, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274506240, 3274571775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274571776, 3274579967, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274579968, 3274580991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274580992, 3274582015, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274582016, 3274583039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274583040, 3274584063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274584064, 3274585087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274585088, 3274586111, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274586112, 3274587135, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274587136, 3274588159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274588160, 3274596351, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274596352, 3274604543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274604544, 3274612735, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274612736, 3274620927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274620928, 3274629119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274629120, 3274629375, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274629376, 3274629631, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274629632, 3274637311, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274637312, 3274670079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274670080, 3274686463, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274686464, 3274686719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274686720, 3274686975, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274686976, 3274687231, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274687232, 3274687487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274687488, 3274687743, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274687744, 3274687999, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274688000, 3274688255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274688256, 3274688511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274688512, 3274688767, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274688768, 3274689023, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274689024, 3274689279, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274689280, 3274689535, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274689536, 3274689791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274689792, 3274690047, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274690048, 3274690303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274690304, 3274690559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274690560, 3274690815, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274690816, 3274691071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274691072, 3274691327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274691328, 3274691583, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274691584, 3274691839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274691840, 3274692095, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274692096, 3274692351, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274692352, 3274692607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274692608, 3274692863, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274692864, 3274693119, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274693120, 3274693375, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274693376, 3274693631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274693632, 3274693887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274693888, 3274694143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274694144, 3274694399, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274694400, 3274694655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274694656, 3274694911, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274694912, 3274695167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274695168, 3274695423, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274695424, 3274695679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274695680, 3274695935, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274695936, 3274696191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274696192, 3274696447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274696448, 3274696703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274696704, 3274696959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274696960, 3274697215, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274697216, 3274697471, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274697472, 3274697727, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274697728, 3274697983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274697984, 3274698239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274698240, 3274698495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274698496, 3274698751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274698752, 3274699007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274699008, 3274699263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274699264, 3274699519, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274699520, 3274700031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274700032, 3274700287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274700288, 3274700543, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274700544, 3274700799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274700800, 3274701055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274701056, 3274701311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274701312, 3274701567, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274701568, 3274702079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274702080, 3274702335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274702336, 3274702591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274702592, 3274702847, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274702848, 3274784279, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274784280, 3274784287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274784288, 3274801151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274801152, 3274802175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274802176, 3274803199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274803200, 3274804223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274804224, 3274805247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274805248, 3274806271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274806272, 3274807295, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274807296, 3274809343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274809344, 3274810367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274810368, 3274811391, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274811392, 3274812415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274812416, 3274813439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274813440, 3274814463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274814464, 3274815487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274815488, 3274816511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274816512, 3274817535, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274817536, 3274819583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274819584, 3274821631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274821632, 3274823679, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274823680, 3274825727, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274825728, 3274827775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274827776, 3274829823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274829824, 3274831871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274831872, 3274833919, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274833920, 3274842111, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274842112, 3274850303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274850304, 3274866687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274866688, 3274883071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274883072, 3274891263, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274891264, 3274899455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274899456, 3274902399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274902400, 3274902423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274902424, 3274902527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274902528, 3274911743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274911744, 3274911999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912000, 3274912031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912032, 3274912063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912064, 3274912191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912192, 3274912287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912288, 3274912295, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912296, 3274912303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912304, 3274912447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912448, 3274912511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912512, 3274912767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912768, 3274912799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912800, 3274912831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912832, 3274912895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274912896, 3274913023, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274913024, 3274913279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274913280, 3274915839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274915840, 3274916735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274916736, 3274916863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274916864, 3274917215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274917216, 3274917311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274917312, 3274917327, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274917328, 3274917335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274917336, 3274917343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274917344, 3274917375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274917376, 3274917887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274917888, 3274918911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274918912, 3274919359, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274919360, 3274919391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274919392, 3274919423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274919424, 3274919935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274919936, 3274921983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274921984, 3274922847, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274922848, 3274922863, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274922864, 3274922871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274922872, 3274922879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274922880, 3274922943, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274922944, 3274923007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274923008, 3274923263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274923264, 3274924031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274924032, 3274928127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274928128, 3274928511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274928512, 3274928575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274928576, 3274928639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274928640, 3274929151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274929152, 3274929407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274929408, 3274929663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274929664, 3274930175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274930176, 3274932223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274932224, 3274932991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274932992, 3274933151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274933152, 3274933183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274933184, 3274933215, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274933216, 3274933247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274933248, 3274936063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936064, 3274936159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936160, 3274936175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936176, 3274936191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936192, 3274936863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936864, 3274936871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936872, 3274936879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936880, 3274936895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274936896, 3274938367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274938368, 3274938495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274938496, 3274938535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274938536, 3274938543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274938544, 3274938559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274938560, 3274938623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274938624, 3274938879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274938880, 3274939135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274939136, 3274939391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274939392, 3274940415, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274940416, 3274941055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274941056, 3274941087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274941088, 3274941095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274941096, 3274941103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274941104, 3274942463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274942464, 3274944511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274944512, 3274948607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274948608, 3274952447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274952448, 3274952479, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274952480, 3274952511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274952512, 3274952527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274952528, 3274952543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274952544, 3274952575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274952576, 3274952703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274952704, 3274954239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274954240, 3274954399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274954400, 3274954415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274954416, 3274954431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274954432, 3274954495, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274954496, 3274954623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274954624, 3274954751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274954752, 3274955007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274955008, 3274955263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274955264, 3274956287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956288, 3274956543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956544, 3274956615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956616, 3274956623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956624, 3274956639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956640, 3274956655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956656, 3274956671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956672, 3274956735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956736, 3274956767, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956768, 3274956799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274956800, 3274957055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274957056, 3274957567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274957568, 3274957823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274957824, 3274957831, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274957832, 3274957951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274957952, 3274957967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274957968, 3274957983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274957984, 3274957999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274958000, 3274958007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274958008, 3274958015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274958016, 3274958079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274958080, 3274958279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274958280, 3274958287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274958288, 3274958335, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274958336, 3274959231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959232, 3274959247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959248, 3274959255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959256, 3274959263, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959264, 3274959271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959272, 3274959279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959280, 3274959287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959288, 3274959295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959296, 3274959327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959328, 3274959615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959616, 3274959871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274959872, 3274960383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274960384, 3274960447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274960448, 3274960511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274960512, 3274960575, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274960576, 3274960639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274960640, 3274961407, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961408, 3274961503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961504, 3274961535, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961536, 3274961559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961560, 3274961567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961568, 3274961663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961664, 3274961727, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961728, 3274961919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274961920, 3274962111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274962112, 3274962175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274962176, 3274962431, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274962432, 3274962687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274962688, 3274962879, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274962880, 3274963167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963168, 3274963183, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963184, 3274963191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963192, 3274963199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963200, 3274963455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963456, 3274963711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963712, 3274963743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963744, 3274963775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963776, 3274963783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963784, 3274963791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963792, 3274963807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963808, 3274963839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963840, 3274963967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274963968, 3274964223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274964224, 3274964735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274964736, 3274964863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274964864, 3274964879, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274964880, 3274964895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274964896, 3274964927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274964928, 3274964991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3274964992, 3275030527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275030528, 3275096063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275096064, 3275104255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275104256, 3275112447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275112448, 3275120639, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275120640, 3275136639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275136640, 3275136767, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275136768, 3275137023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275137024, 3275145215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275145216, 3275153407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275153408, 3275161599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275161600, 3275227135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275227136, 3275292671, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275292672, 3275358207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275358208, 3275371775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275371776, 3275372031, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275372032, 3275374591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275374592, 3275382783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275382784, 3275390975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275390976, 3275399167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275399168, 3275407359, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275407360, 3275415551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275415552, 3275423743, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275423744, 3275430271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275430272, 3275430399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275430400, 3275430591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275430592, 3275430623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275430624, 3275451231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275451232, 3275451263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275451264, 3275467007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275467008, 3275467135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275467136, 3275469951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275469952, 3275469983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275469984, 3275489279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275489280, 3275497471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275497472, 3275505663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275505664, 3275506175, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275506176, 3275506687, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275506688, 3275507199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275507200, 3275507711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275507712, 3275509759, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275509760, 3275509855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275509856, 3275509887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275511808, 3275511935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275511936, 3275512063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275512064, 3275512191, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275512192, 3275512319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275512320, 3275512447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275512448, 3275512575, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275513344, 3275513855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275513856, 3275514615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275514616, 3275514623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275514624, 3275522047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275522048, 3275530239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275530240, 3275530751, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275530752, 3275531263, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275531264, 3275531775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275531776, 3275532287, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275532288, 3275532799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275532800, 3275533823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275533824, 3275534335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275534336, 3275534847, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275534848, 3275535871, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275535872, 3275536383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275536384, 3275536895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275536896, 3275537407, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275537408, 3275537919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275537920, 3275538431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275538432, 3275539455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275539456, 3275540479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275540480, 3275542527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275542528, 3275543551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275543552, 3275544575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275544576, 3275545599, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275545600, 3275546623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275546624, 3275547647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275547648, 3275548671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275548672, 3275549695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275549696, 3275550719, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275550720, 3275551743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275551744, 3275552767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275552768, 3275553791, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275553792, 3275554815, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275554816, 3275555071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555072, 3275555391, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555392, 3275555455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555456, 3275555591, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555592, 3275555647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555648, 3275555743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555744, 3275555759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555760, 3275555767, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555768, 3275555776, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275555777, 3275556607, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275556608, 3275556863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275556864, 3275560959, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275560960, 3275561215, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275561216, 3275561471, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275561472, 3275561727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275561728, 3275562495, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275562496, 3275562751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275562752, 3275563007, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275563008, 3275563519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275563520, 3275563583, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275563584, 3275563647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275563648, 3275563775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275563776, 3275564287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275564288, 3275564415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275564416, 3275564495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275564496, 3275564799, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275564800, 3275565055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275565056, 3275565311, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275565312, 3275565567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275565568, 3275565823, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275565824, 3275567487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275567488, 3275567615, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275567616, 3275568127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275568128, 3275568383, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275568384, 3275569407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275569408, 3275569919, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275569920, 3275570687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275570688, 3275579391, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275579392, 3275579519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275579520, 3275587583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275587584, 3275587855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275587856, 3275588095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588096, 3275588287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588288, 3275588351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588352, 3275588711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588712, 3275588719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588720, 3275588799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588800, 3275588847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588848, 3275588855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588856, 3275588863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275588864, 3275589119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275589120, 3275589271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275589272, 3275589279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275589280, 3275589375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275589376, 3275589471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275589472, 3275589887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275589888, 3275591167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275591168, 3275591423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275591424, 3275591679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275591680, 3275592959, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275592960, 3275593215, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275593216, 3275593855, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275593856, 3275593983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275593984, 3275595007, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275595008, 3275595039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275595040, 3275595263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275595264, 3275595519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275595520, 3275595775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275595776, 3275603967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275603968, 3275604735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275604736, 3275604767, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275604768, 3275604991, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275604992, 3275606271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275606272, 3275606527, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275606528, 3275606783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275606784, 3275607295, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275607296, 3275608319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275608320, 3275608831, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275608832, 3275610063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275610064, 3275610111, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275610112, 3275610623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275610624, 3275612159, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275612160, 3275612287, N'LU', N'Luxembourg') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275612288, 3275612415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275612416, 3275612671, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275612672, 3275612927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275612928, 3275613951, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275613952, 3275620351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275620352, 3275622399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275622400, 3275623423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275623424, 3275623935, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275623936, 3275624447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275624448, 3275624959, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275624960, 3275625471, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275625472, 3275625983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275625984, 3275626495, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275626496, 3275627007, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275627008, 3275627519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275627520, 3275628031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275628032, 3275628543, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275628544, 3275636735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275636736, 3275637759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275637760, 3275644927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275644928, 3275645947, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275645948, 3275645951, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275645952, 3275650591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275650592, 3275650655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275650656, 3275650687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275650688, 3275650751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275650752, 3275653119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275653120, 3275661311, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275661312, 3275669503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275669504, 3275677695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275677696, 3275685887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275685888, 3275751423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275751424, 3275759615, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275759616, 3275775999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275776000, 3275784191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275792384, 3275792895, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275792896, 3275793407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275793408, 3275793919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275793920, 3275794431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275794432, 3275794943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275794944, 3275795455, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275795456, 3275795967, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275795968, 3275796479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275796480, 3275796991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275796992, 3275797503, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275797504, 3275798015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275798016, 3275799039, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275799040, 3275799551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275799552, 3275800063, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275800064, 3275800575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275800576, 3275808767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275808768, 3275816959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275816960, 3275844863, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275844864, 3275845119, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275845120, 3275881335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275881336, 3275881343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275881344, 3275882495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275882496, 3275884543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275884544, 3275886591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275886592, 3275888639, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275888640, 3275898879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275898880, 3275899135, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275899136, 3275899647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275899648, 3275900159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275900160, 3275900415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275900416, 3275900671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275900672, 3275901183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275901184, 3275901439, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275901440, 3275901695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275901696, 3275901951, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275901952, 3275902207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275902208, 3275902719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275902720, 3275902975, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275902976, 3275903231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275903232, 3275903487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275903488, 3275903999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275904000, 3275904255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275904256, 3275904511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275904512, 3275904767, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275904768, 3275905023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275905024, 3275905279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275905280, 3275905535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275905536, 3275905791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275905792, 3275906303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275906304, 3275906559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275906560, 3275907071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275907072, 3275915263, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275915264, 3275915775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275915776, 3275916287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275916288, 3275917311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275917312, 3275918847, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275918848, 3275919359, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275919872, 3275920383, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275920384, 3275920895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275920896, 3275921407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275921408, 3275921919, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275921920, 3275922431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275922432, 3275922943, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275922944, 3275923455, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275923456, 3275931647, N'CS', N'Serbia and Montenegro') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275931648, 3275939839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275939840, 3275948031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275948032, 3275965267, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275965268, 3275965271, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3275965272, 3276013567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276013568, 3276014191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014192, 3276014207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014208, 3276014343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014344, 3276014351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014352, 3276014391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014392, 3276014399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014400, 3276014415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014416, 3276014439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014440, 3276014471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014472, 3276014495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014496, 3276014503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014504, 3276014511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014512, 3276014607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014608, 3276014623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014624, 3276014647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014648, 3276014655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014656, 3276014671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014672, 3276014679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014680, 3276014695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014696, 3276014719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014720, 3276014751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014752, 3276014799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014800, 3276014815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014816, 3276014847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014848, 3276014911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014912, 3276014935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276014936, 3276015007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015008, 3276015055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015056, 3276015199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015200, 3276015231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015232, 3276015247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015248, 3276015263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015264, 3276015295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015296, 3276015311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015312, 3276015407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015408, 3276015423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015424, 3276015567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015568, 3276015583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015584, 3276015615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015616, 3276015655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015656, 3276015815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015816, 3276015839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015840, 3276015863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015864, 3276015871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015872, 3276015929, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015930, 3276015935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276015936, 3276016095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016096, 3276016103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016104, 3276016119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016120, 3276016127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016128, 3276016391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016392, 3276016399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016400, 3276016447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016448, 3276016463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016464, 3276016495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016496, 3276016511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016512, 3276016527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016528, 3276016591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016592, 3276016703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016704, 3276016735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016736, 3276016767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016768, 3276016783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016784, 3276016815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016816, 3276016847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016848, 3276016863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016864, 3276016879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016880, 3276016943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016944, 3276016959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016960, 3276016975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016976, 3276016991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276016992, 3276017055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017056, 3276017071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017072, 3276017119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017120, 3276017151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017152, 3276017551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017552, 3276017567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017568, 3276017607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017608, 3276017631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276017632, 3276018047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018048, 3276018063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018064, 3276018095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018096, 3276018127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018128, 3276018143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018144, 3276018159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018160, 3276018495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018496, 3276018527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018528, 3276018543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018544, 3276018591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018592, 3276018943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018944, 3276018975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018976, 3276018985, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276018986, 3276019007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019008, 3276019023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019024, 3276019135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019136, 3276019455, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019456, 3276019479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019480, 3276019487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019488, 3276019503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019504, 3276019535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019536, 3276019575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019576, 3276019663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019664, 3276019671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019672, 3276019679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019680, 3276019687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019688, 3276019695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019696, 3276019703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019704, 3276019839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019840, 3276019855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019856, 3276019863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019864, 3276019871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019872, 3276019895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019896, 3276019903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019904, 3276019911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019912, 3276019919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019920, 3276019967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019968, 3276019975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276019976, 3276020071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020072, 3276020079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020080, 3276020127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020128, 3276020143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020144, 3276020399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020400, 3276020431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020432, 3276020495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020496, 3276020503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020504, 3276020679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020680, 3276020687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020688, 3276020943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020944, 3276020991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276020992, 3276021151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021152, 3276021167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021168, 3276021215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021216, 3276021247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021248, 3276021535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021536, 3276021543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021544, 3276021575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021576, 3276021591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021592, 3276021599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021600, 3276021615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021616, 3276021655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021656, 3276021663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021664, 3276021791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021792, 3276021823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021824, 3276021855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021856, 3276021887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021888, 3276021983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276021984, 3276021999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022000, 3276022031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022032, 3276022047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022048, 3276022087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022088, 3276022095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022096, 3276022127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022128, 3276022143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022144, 3276022247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022248, 3276022255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022256, 3276022415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022416, 3276022431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022432, 3276022479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022480, 3276022495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022496, 3276022519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022520, 3276022527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022528, 3276022567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022568, 3276022575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022576, 3276022631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022632, 3276022639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276022640, 3276023103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023104, 3276023167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023168, 3276023199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023200, 3276023231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023232, 3276023247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023248, 3276023263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023264, 3276023295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023296, 3276023303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023304, 3276023311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023312, 3276023343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023344, 3276023375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023376, 3276023423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023424, 3276023455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023456, 3276023471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023472, 3276023503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023504, 3276023519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023520, 3276023855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023856, 3276023887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023888, 3276023895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023896, 3276023919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023920, 3276023959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276023960, 3276024063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276024064, 3276024239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276024240, 3276024271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276024272, 3276025103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025104, 3276025135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025136, 3276025151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025152, 3276025159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025160, 3276025167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025168, 3276025175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025176, 3276025183, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025184, 3276025191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025192, 3276025247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025248, 3276025279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025280, 3276025295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025296, 3276025327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276025328, 3276026111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026112, 3276026127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026128, 3276026167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026168, 3276026175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026176, 3276026399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026400, 3276026415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026416, 3276026439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026440, 3276026447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026448, 3276026735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026736, 3276026743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026744, 3276026815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026816, 3276026823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026824, 3276026879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026880, 3276026927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026928, 3276026959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026960, 3276026991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276026992, 3276027311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027312, 3276027327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027328, 3276027503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027504, 3276027519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027520, 3276027551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027552, 3276027583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027584, 3276027646, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027647, 3276027647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027648, 3276027695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027696, 3276027743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027744, 3276027791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027792, 3276027807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027808, 3276027855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027856, 3276027871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027872, 3276027951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027952, 3276027967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276027968, 3276028047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028048, 3276028063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028064, 3276028079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028080, 3276028111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028112, 3276028127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028128, 3276028143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028144, 3276028223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028224, 3276028231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028232, 3276028247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028248, 3276028255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028256, 3276028263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028264, 3276028287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028288, 3276028791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028792, 3276028799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276028800, 3276029183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029184, 3276029199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029200, 3276029247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029248, 3276029263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029264, 3276029343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029344, 3276029359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029360, 3276029375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029376, 3276029407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029408, 3276029423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029424, 3276029439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029440, 3276029567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029568, 3276029599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029600, 3276029759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029760, 3276029791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029792, 3276029871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029872, 3276029887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029888, 3276029935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029936, 3276029967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276029968, 3276030079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030080, 3276030095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030096, 3276030191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030192, 3276030207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030208, 3276030215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030216, 3276030223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030224, 3276030239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030240, 3276030247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030248, 3276030255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030256, 3276030263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030264, 3276030271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030272, 3276030295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030296, 3276030407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030408, 3276030415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030416, 3276030543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030544, 3276030559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030560, 3276030607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030608, 3276030623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276030624, 3276031103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031104, 3276031231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031232, 3276031375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031376, 3276031391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031392, 3276031519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031520, 3276031535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031536, 3276031559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031560, 3276031567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031568, 3276031575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031576, 3276031591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031592, 3276031615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031616, 3276031679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031680, 3276031719, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031720, 3276031743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276031744, 3276032015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032016, 3276032023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032024, 3276032055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032056, 3276032063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032064, 3276032287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032288, 3276032303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032304, 3276032335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032336, 3276032343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032344, 3276032543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032544, 3276032559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032560, 3276032591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032592, 3276032607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032608, 3276032719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032720, 3276032735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276032736, 3276033039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033040, 3276033119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033120, 3276033151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033152, 3276033167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033168, 3276033215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033216, 3276033231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033232, 3276033247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033248, 3276033279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033280, 3276033791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033792, 3276033895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033896, 3276033911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033912, 3276033919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033920, 3276033927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033928, 3276033951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033952, 3276033983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276033984, 3276034015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276034016, 3276036103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036104, 3276036111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036112, 3276036119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036120, 3276036151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036152, 3276036191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036192, 3276036199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036200, 3276036223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036224, 3276036255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036256, 3276036271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036272, 3276036287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036288, 3276036303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036304, 3276036335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276036336, 3276037135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037136, 3276037151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037152, 3276037199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037200, 3276037215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037216, 3276037327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037328, 3276037343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037344, 3276037359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037360, 3276037375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037376, 3276037695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037696, 3276037743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037744, 3276037783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037784, 3276037791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037792, 3276037887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037888, 3276037903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037904, 3276037967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037968, 3276037983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276037984, 3276038015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038016, 3276038031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038032, 3276038047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038048, 3276038095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038096, 3276038127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038128, 3276038143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038144, 3276038703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038704, 3276038719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038720, 3276038735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038736, 3276038751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038752, 3276038799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038800, 3276038815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038816, 3276038847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038848, 3276038911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276038912, 3276039199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039200, 3276039247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039248, 3276039279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039280, 3276039311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039312, 3276039327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039328, 3276039423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039424, 3276039551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039552, 3276039583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039584, 3276039647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039648, 3276039663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039664, 3276039935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039936, 3276039951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039952, 3276039967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276039968, 3276040031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040032, 3276040063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040064, 3276040111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040112, 3276040159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040160, 3276040175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040176, 3276040231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040232, 3276040319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040320, 3276040447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040448, 3276040463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040464, 3276040479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040480, 3276040495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040496, 3276040591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040592, 3276040607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040608, 3276040671, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040672, 3276040687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040688, 3276040703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040704, 3276040735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040736, 3276040927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040928, 3276040959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040960, 3276040991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276040992, 3276041007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041008, 3276041023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041024, 3276041055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041056, 3276041071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041072, 3276041087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041088, 3276041199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041200, 3276041215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041216, 3276041279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041280, 3276041295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041296, 3276041343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041344, 3276041375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041376, 3276041487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041488, 3276041519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041520, 3276041551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041552, 3276041663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041664, 3276041759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041760, 3276041775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041776, 3276041855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041856, 3276041887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041888, 3276041919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041920, 3276041951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276041952, 3276042111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042112, 3276042143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042144, 3276042175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042176, 3276042223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042224, 3276042767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042768, 3276042815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042816, 3276042831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042832, 3276042847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276042848, 3276044303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044304, 3276044311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044312, 3276044319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044320, 3276044359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044360, 3276044447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044448, 3276044463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044464, 3276044511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044512, 3276044543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044544, 3276044607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044608, 3276044639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044640, 3276044671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044672, 3276044735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044736, 3276044815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044816, 3276044831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044832, 3276044863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044864, 3276044879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044880, 3276044927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044928, 3276044943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044944, 3276044967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044968, 3276044975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044976, 3276044991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276044992, 3276044999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045000, 3276045055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045056, 3276045071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045072, 3276045079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045080, 3276045095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045096, 3276045111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045112, 3276045119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045120, 3276045143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045144, 3276045151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045152, 3276045183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045184, 3276045191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045192, 3276045239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045240, 3276045255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045256, 3276045295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045296, 3276045311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045312, 3276045655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045656, 3276045663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045664, 3276045775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045776, 3276045783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045784, 3276045791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045792, 3276045807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045808, 3276045815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045816, 3276045823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045824, 3276045983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045984, 3276045991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276045992, 3276046335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276046336, 3276062719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276062720, 3276063231, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276063232, 3276063743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276063744, 3276064255, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276064256, 3276064767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276064768, 3276065279, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276065280, 3276065791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276065792, 3276066303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276066304, 3276066815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276066816, 3276067327, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276067328, 3276067839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276067840, 3276068351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276068352, 3276068863, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276068864, 3276069887, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276069888, 3276070399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276070400, 3276070911, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276070912, 3276071423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276071424, 3276071935, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276071936, 3276072447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276072448, 3276072959, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276072960, 3276073471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276073472, 3276073983, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276073984, 3276074495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276074496, 3276075007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276075008, 3276075519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276075520, 3276076031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276076032, 3276076543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276076544, 3276077055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276077056, 3276077567, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276077568, 3276078079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276078080, 3276078591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276078592, 3276079103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276079104, 3276095487, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276095488, 3276096511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276096512, 3276097535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276097536, 3276098559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276098560, 3276099583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276099584, 3276100607, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276100608, 3276101631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276101632, 3276102655, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276102656, 3276103679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276103680, 3276104703, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276104704, 3276105727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276105728, 3276106751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276106752, 3276107775, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276107776, 3276108799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276108800, 3276109823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276109824, 3276110847, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276110848, 3276111871, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276111872, 3276112895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276112896, 3276114943, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276114944, 3276115967, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276115968, 3276116991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276116992, 3276118015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276118016, 3276119039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276119040, 3276120063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276120064, 3276121087, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276121088, 3276122111, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276122112, 3276123135, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276123136, 3276124159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276124160, 3276125183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276125184, 3276126207, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276126208, 3276127231, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276127232, 3276128255, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276128256, 3276129279, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276129280, 3276131327, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276131328, 3276132351, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276132352, 3276133375, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276133376, 3276134399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276134400, 3276135423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276135424, 3276136447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276136448, 3276138495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276138496, 3276139519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276139520, 3276140543, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276140544, 3276141567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276141568, 3276143615, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276143616, 3276144639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276144640, 3276152831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276152832, 3276161023, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276161024, 3276169215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276169216, 3276177407, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276177408, 3276185599, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276185600, 3276193791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276193792, 3276201983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276201984, 3276210175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276210176, 3276221463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276221464, 3276221503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276221504, 3276221535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276221536, 3276221567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276221568, 3276221631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276221632, 3276221695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276221696, 3276222255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276222256, 3276222263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276222264, 3276234303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276234304, 3276234367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276234368, 3276243175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276243176, 3276243179, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276243180, 3276244415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244416, 3276244431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244432, 3276244447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244448, 3276244515, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244516, 3276244519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244520, 3276244671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244672, 3276244715, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244716, 3276244719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244720, 3276244723, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244724, 3276244731, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244732, 3276244735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244736, 3276244831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244832, 3276244863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244864, 3276244899, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244900, 3276244903, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244904, 3276244935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244936, 3276244967, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244968, 3276244971, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244972, 3276244975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244976, 3276244979, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244980, 3276244983, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244984, 3276244987, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244988, 3276244991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276244992, 3276249279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276249280, 3276249287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276249288, 3276249855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276249856, 3276249983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276249984, 3276250079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276250080, 3276250095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276250096, 3276275711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276275712, 3276283903, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276283904, 3276292095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276292096, 3276292479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276292480, 3276292511, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276292512, 3276299295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276299296, 3276299327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276299328, 3276300287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276300288, 3276304383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276304384, 3276304639, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276304640, 3276305407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276305408, 3276308479, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276308480, 3276309503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276309504, 3276310527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276310528, 3276311551, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276311552, 3276312575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276312576, 3276313599, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276313600, 3276314623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276314624, 3276315647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276315648, 3276316671, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276316672, 3276324863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276324864, 3276333055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276333056, 3276341247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276341248, 3276342575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276342576, 3276342583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276342584, 3276343551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276343552, 3276343807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276343808, 3276344319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276344320, 3276344327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276344328, 3276344559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276344560, 3276344567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276344568, 3276344655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276344656, 3276344663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276344664, 3276344999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276345000, 3276345007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276345008, 3276345407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276345408, 3276345415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276345416, 3276345967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276345968, 3276345975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276345976, 3276346207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346208, 3276346215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346216, 3276346583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346584, 3276346591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346592, 3276346695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346696, 3276346703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346704, 3276346783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346784, 3276346791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276346792, 3276348607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276348608, 3276348615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276348616, 3276348687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276348688, 3276348695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276348696, 3276349711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276349712, 3276349719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276349720, 3276349823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276349824, 3276349831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276349832, 3276352127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276352128, 3276352143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276352144, 3276352295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276352296, 3276352303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276352304, 3276352895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276352896, 3276352903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276352904, 3276353343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276353344, 3276353351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276353352, 3276353527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276353528, 3276353535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276353536, 3276354383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276354384, 3276354391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276354392, 3276354743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276354744, 3276354751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276354752, 3276355279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355280, 3276355287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355288, 3276355319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355320, 3276355327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355328, 3276355431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355432, 3276355439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355440, 3276355495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355496, 3276355503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355504, 3276355599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355600, 3276355607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276355608, 3276356351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276356352, 3276356607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276356608, 3276357023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357024, 3276357031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357032, 3276357143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357144, 3276357151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357152, 3276357175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357176, 3276357183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357184, 3276357399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357400, 3276357407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357408, 3276357807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357808, 3276357815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276357816, 3276358367, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276358368, 3276358375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276358376, 3276358927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276358928, 3276358951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276358952, 3276359335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276359336, 3276359343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276359344, 3276359831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276359832, 3276359839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276359840, 3276360119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360120, 3276360127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360128, 3276360135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360136, 3276360143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360144, 3276360503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360504, 3276360519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360520, 3276360751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360752, 3276360759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276360760, 3276361791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276361792, 3276361799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276361800, 3276361935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276361936, 3276361943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276361944, 3276362439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276362440, 3276362447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276362448, 3276362943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276362944, 3276362959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276362960, 3276363087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363088, 3276363095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363096, 3276363295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363296, 3276363303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363304, 3276363463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363464, 3276363471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363472, 3276363479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363480, 3276363487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363488, 3276363647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363648, 3276363655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363656, 3276363671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363672, 3276363679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363680, 3276363935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363936, 3276363943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276363944, 3276363999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276364000, 3276364295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276364296, 3276364783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276364784, 3276364791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276364792, 3276364903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276364904, 3276364911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276364912, 3276365023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276365024, 3276365031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276365032, 3276365183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276365184, 3276365191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276365192, 3276365223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276365224, 3276365231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276365232, 3276365999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276366000, 3276366007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276366008, 3276366279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276366280, 3276366287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276366288, 3276367767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276367768, 3276367775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276367776, 3276368551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276368552, 3276368559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276368560, 3276368839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276368840, 3276368847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276368848, 3276372215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276372216, 3276372223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276372224, 3276377039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377040, 3276377047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377048, 3276377151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377152, 3276377159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377160, 3276377223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377224, 3276377231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377232, 3276377839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377840, 3276377847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276377848, 3276379567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276379568, 3276379575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276379576, 3276381303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276381304, 3276381311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276381312, 3276383503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276383504, 3276383511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276383512, 3276385463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276385464, 3276385471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276385472, 3276385671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276385672, 3276385679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276385680, 3276387071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276387072, 3276387079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276387080, 3276393247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276393248, 3276393255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276393256, 3276395631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276395632, 3276395639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276395640, 3276396895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276396896, 3276396903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276396904, 3276398607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276398608, 3276398615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276398616, 3276399015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276399016, 3276399023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276399024, 3276400087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276400088, 3276400095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276400096, 3276403679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276403680, 3276403687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276403688, 3276404423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276404424, 3276404431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276404432, 3276405191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276405192, 3276405199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276405200, 3276406215, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276406216, 3276406223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276406224, 3276406399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276406400, 3276406407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276406408, 3276406783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276406784, 3276414975, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276431360, 3276447743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276447744, 3276455935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276455936, 3276464127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276464128, 3276472319, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276472320, 3276472575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276472576, 3276472831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276472832, 3276472863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276472864, 3276472895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276472896, 3276473087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473088, 3276473111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473112, 3276473119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473120, 3276473135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473136, 3276473143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473144, 3276473199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473200, 3276473215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473216, 3276473311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473312, 3276473343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473344, 3276473855, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276473856, 3276474127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474128, 3276474143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474144, 3276474175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474176, 3276474207, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474208, 3276474223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474224, 3276474239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474240, 3276474271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474272, 3276474295, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474296, 3276474319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474320, 3276474367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474368, 3276474623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474624, 3276474879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276474880, 3276475007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276475008, 3276475135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276475136, 3276475903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276475904, 3276476111, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276476112, 3276476119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276476120, 3276476159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276476160, 3276476287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276476288, 3276476415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276476416, 3276476671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276476672, 3276477439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276477440, 3276477983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276477984, 3276478207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276478208, 3276478271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276478272, 3276478303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276478304, 3276478335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276478336, 3276478463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276478464, 3276479167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479168, 3276479199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479200, 3276479215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479216, 3276479223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479224, 3276479279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479280, 3276479295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479296, 3276479343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479344, 3276479351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479352, 3276479743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276479744, 3276480015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480016, 3276480031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480032, 3276480063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480064, 3276480287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480288, 3276480295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480296, 3276480319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480320, 3276480351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480352, 3276480511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480512, 3276480767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276480768, 3276481023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276481024, 3276481535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276481536, 3276482559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276482560, 3276482815, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276482816, 3276483071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276483072, 3276483359, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276483360, 3276483391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276483392, 3276483519, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276483520, 3276483583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276483584, 3276483711, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276483712, 3276483839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276483840, 3276484351, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276484352, 3276484383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276484384, 3276484479, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276484480, 3276484607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276484608, 3276484863, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276484864, 3276486911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276486912, 3276487167, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276487168, 3276488959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276488960, 3276489215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276489216, 3276491263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276491264, 3276491327, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276491328, 3276491391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276491392, 3276491775, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276491776, 3276493215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276493216, 3276493247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276493248, 3276493695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276493696, 3276493823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276493824, 3276494383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276494384, 3276494415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276494416, 3276494495, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276494496, 3276494559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276494560, 3276496639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276496640, 3276497295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276497296, 3276497303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276497304, 3276497599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276497600, 3276497607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276497608, 3276497919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276497920, 3276498431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276498432, 3276499199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276499200, 3276499455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276499456, 3276499759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276499760, 3276499775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276499776, 3276499839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276499840, 3276499871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276499872, 3276499999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276500000, 3276500031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276500032, 3276500159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276500160, 3276500223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276500224, 3276501023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276501024, 3276501055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276501056, 3276501087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276501088, 3276501119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276501120, 3276501167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276501168, 3276501175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276501176, 3276501503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276501504, 3276502271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276502272, 3276505087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276505088, 3276505919, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276505920, 3276505983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276505984, 3276506191, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276506192, 3276506207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276506208, 3276507135, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276507136, 3276507231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276507232, 3276507391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276507392, 3276507647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276507648, 3276508159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276508160, 3276508327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276508328, 3276508351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276508352, 3276508415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276508416, 3276508671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276508672, 3276508679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276508680, 3276509183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276509184, 3276510207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276510208, 3276510719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276510720, 3276510847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276510848, 3276510911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276510912, 3276510975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276510976, 3276511231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276511232, 3276511967, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276511968, 3276511999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276512000, 3276512223, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276512224, 3276512255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276512256, 3276513023, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276513024, 3276513535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276513536, 3276513599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276513600, 3276514335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276514336, 3276514367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276514368, 3276514559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276514560, 3276514815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276514816, 3276515327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276515328, 3276515583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276515584, 3276517375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517376, 3276517503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517504, 3276517631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517632, 3276517647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517648, 3276517655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517656, 3276517759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517760, 3276517791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517792, 3276517823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517824, 3276517831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517832, 3276517951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276517952, 3276518015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518016, 3276518023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518024, 3276518055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518056, 3276518063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518064, 3276518071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518072, 3276518335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518336, 3276518351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518352, 3276518399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518400, 3276518407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518408, 3276518415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518416, 3276518655, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518656, 3276518911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276518912, 3276519423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276519424, 3276520191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520192, 3276520223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520224, 3276520255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520256, 3276520415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520416, 3276520423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520424, 3276520447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520448, 3276520599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520600, 3276520607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520608, 3276520839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520840, 3276520847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520848, 3276520927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520928, 3276520935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276520936, 3276521215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276521216, 3276521983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276521984, 3276523519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276523520, 3276523775, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276523776, 3276523951, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276523952, 3276523967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276523968, 3276524031, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524032, 3276524047, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524048, 3276524063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524064, 3276524095, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524096, 3276524191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524192, 3276524279, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524280, 3276524543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524544, 3276524799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524800, 3276524823, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524824, 3276524831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524832, 3276524847, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276524848, 3276525023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525024, 3276525039, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525040, 3276525055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525056, 3276525311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525312, 3276525503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525504, 3276525527, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525528, 3276525535, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525536, 3276525567, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276525568, 3276526079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276526080, 3276526095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276526096, 3276526143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276526144, 3276526175, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276526176, 3276526335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276526336, 3276526591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276526592, 3276527103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527104, 3276527159, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527160, 3276527167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527168, 3276527199, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527200, 3276527215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527216, 3276527231, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527232, 3276527359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527360, 3276527615, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527616, 3276527743, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527744, 3276527871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276527872, 3276527999, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528000, 3276528127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528128, 3276528223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528224, 3276528239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528240, 3276528247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528248, 3276528255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528256, 3276528351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528352, 3276528359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528360, 3276528367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528368, 3276528415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528416, 3276528447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528448, 3276528463, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528464, 3276528471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528472, 3276528511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528512, 3276528519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528520, 3276528527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528528, 3276528543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528544, 3276528719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528720, 3276528727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528728, 3276528799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528800, 3276528815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528816, 3276528831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528832, 3276528895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528896, 3276528903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276528904, 3276529151, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276529152, 3276529167, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276529168, 3276529175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276529176, 3276529295, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276529296, 3276529311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276529312, 3276529407, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276529408, 3276529663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276529664, 3276532223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532224, 3276532735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532736, 3276532767, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532768, 3276532775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532776, 3276532815, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532816, 3276532831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532832, 3276532839, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532840, 3276532847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532848, 3276532991, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276532992, 3276533023, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533024, 3276533055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533056, 3276533087, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533088, 3276533103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533104, 3276533215, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533216, 3276533231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533232, 3276533239, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533240, 3276533247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533248, 3276533391, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533392, 3276533759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533760, 3276533775, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533776, 3276533791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533792, 3276533823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533824, 3276533887, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533888, 3276533919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533920, 3276533935, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533936, 3276533951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276533952, 3276534015, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534016, 3276534271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534272, 3276534399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534400, 3276534415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534416, 3276534431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534432, 3276534511, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534512, 3276534895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534896, 3276534911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276534912, 3276535007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535008, 3276535015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535016, 3276535039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535040, 3276535063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535064, 3276535071, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535072, 3276535103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535104, 3276535295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535296, 3276535423, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535424, 3276535551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535552, 3276535807, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276535808, 3276536063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536064, 3276536319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536320, 3276536415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536416, 3276536431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536432, 3276536575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536576, 3276536583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536584, 3276536591, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536592, 3276536687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536688, 3276536711, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536712, 3276536719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536720, 3276536743, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536744, 3276536863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276536864, 3276537023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276537024, 3276537151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276537152, 3276537599, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276537600, 3276537663, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276537664, 3276537855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276537856, 3276668927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276668928, 3276677119, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276677120, 3276677631, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276677632, 3276678143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276678144, 3276678655, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276678656, 3276679167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276679168, 3276679679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276679680, 3276680191, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276680192, 3276680703, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276680704, 3276681215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276681216, 3276681727, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276681728, 3276682239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276682240, 3276682751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276682752, 3276683263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276683264, 3276684799, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276684800, 3276685311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276693504, 3276701695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276701696, 3276709887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276709888, 3276718079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276718080, 3276726271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276726272, 3276727295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276727296, 3276728319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276728320, 3276729343, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276729344, 3276730367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276730368, 3276731391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276731392, 3276732415, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276732416, 3276733439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276733440, 3276734463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734464, 3276734735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734736, 3276734751, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734752, 3276734815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734816, 3276734847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734848, 3276734879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734880, 3276734895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734896, 3276734911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734912, 3276734943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276734944, 3276735455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276735456, 3276735487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276735488, 3276735935, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276735936, 3276735999, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736000, 3276736511, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736512, 3276736575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736576, 3276736735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736736, 3276736799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736800, 3276736815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736816, 3276736831, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736832, 3276736863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736864, 3276736871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736872, 3276736879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736880, 3276736959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736960, 3276736991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276736992, 3276737015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737016, 3276737023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737024, 3276737343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737344, 3276737407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737408, 3276737535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737536, 3276737615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737616, 3276737631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737632, 3276737791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737792, 3276737935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737936, 3276737943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737944, 3276737991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276737992, 3276737999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738000, 3276738015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738016, 3276738047, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738048, 3276738079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738080, 3276738111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738112, 3276738143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738144, 3276738175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738176, 3276738559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738560, 3276738847, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276738848, 3276739071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276739072, 3276739151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276739152, 3276739167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276739168, 3276740127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740128, 3276740167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740168, 3276740175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740176, 3276740191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740192, 3276740223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740224, 3276740351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740352, 3276740703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740704, 3276740719, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740720, 3276740735, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740736, 3276740799, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740800, 3276740815, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740816, 3276740831, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740832, 3276740863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276740864, 3276741119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276741120, 3276741631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276741632, 3276742655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276742656, 3276742735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276742736, 3276742751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276742752, 3276742783, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276742784, 3276742911, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276742912, 3276743071, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276743072, 3276743103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276743104, 3276743135, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276743136, 3276743167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276743168, 3276743423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276743424, 3276743903, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276743904, 3276743935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276743936, 3276744191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276744192, 3276744703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276744704, 3276744959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276744960, 3276745215, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276745216, 3276745295, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276745296, 3276745311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276745312, 3276745343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276745344, 3276745407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276745408, 3276745727, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276745728, 3276746047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276746048, 3276746111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276746112, 3276746239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276746240, 3276746335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276746336, 3276746351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276746352, 3276746367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276746368, 3276746751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276746752, 3276748287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276748288, 3276748799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276748800, 3276748951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276748952, 3276748959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276748960, 3276749023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749024, 3276749055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749056, 3276749087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749088, 3276749103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749104, 3276749183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749184, 3276749311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749312, 3276749343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749344, 3276749375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749376, 3276749823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276749824, 3276750151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276750152, 3276750159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276750160, 3276750175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276750176, 3276750207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276750208, 3276750335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276750336, 3276750431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276750432, 3276750463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276750464, 3276751039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751040, 3276751071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751072, 3276751087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751088, 3276751103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751104, 3276751175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751176, 3276751199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751200, 3276751231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751232, 3276751295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751296, 3276751359, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276751360, 3276753055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753056, 3276753071, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753072, 3276753119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753120, 3276753151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753152, 3276753375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753376, 3276753407, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753408, 3276753951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753952, 3276753983, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276753984, 3276754991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276754992, 3276755007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755008, 3276755071, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755072, 3276755199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755200, 3276755775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755776, 3276755791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755792, 3276755807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755808, 3276755839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755840, 3276755967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276755968, 3276756031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756032, 3276756063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756064, 3276756095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756096, 3276756287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756288, 3276756319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756320, 3276756351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756352, 3276756671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756672, 3276756735, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276756736, 3276757119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757120, 3276757135, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757136, 3276757151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757152, 3276757183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757184, 3276757247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757248, 3276757823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757824, 3276757839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757840, 3276757855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757856, 3276757887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276757888, 3276759039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276759040, 3276759695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276759696, 3276759711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276759712, 3276759743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276759744, 3276759775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276759776, 3276759807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276759808, 3276761215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276761216, 3276761279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276761280, 3276761919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276761920, 3276761983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276761984, 3276762015, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276762016, 3276762111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276762112, 3276762623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276762624, 3276762879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276762880, 3276762943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276762944, 3276762959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276762960, 3276762975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276762976, 3276763007, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763008, 3276763327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763328, 3276763391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763392, 3276763519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763520, 3276763551, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763552, 3276763567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763568, 3276763583, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763584, 3276763647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763648, 3276763967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763968, 3276763983, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763984, 3276763991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276763992, 3276763999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276764000, 3276764159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276764160, 3276765183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276765184, 3276766975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276766976, 3276766983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276766984, 3276766991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276766992, 3276767015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767016, 3276767023, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767024, 3276767039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767040, 3276767079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767080, 3276767087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767088, 3276767103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767104, 3276767231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767232, 3276767743, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767744, 3276767807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767808, 3276767871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767872, 3276767935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767936, 3276767967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276767968, 3276767999, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276768000, 3276768511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276768512, 3276768767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276768768, 3276768863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276768864, 3276768895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276768896, 3276769023, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769024, 3276769279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769280, 3276769295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769296, 3276769311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769312, 3276769343, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769344, 3276769407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769408, 3276769919, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769920, 3276769983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276769984, 3276770015, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276770016, 3276770031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276770032, 3276770047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276770048, 3276770143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276770144, 3276770175, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276770176, 3276770239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276770240, 3276770303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276770304, 3276771327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276771328, 3276771455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276771456, 3276771583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276771584, 3276772287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276772288, 3276772351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276772352, 3276772567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276772568, 3276772575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276772576, 3276773375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276773376, 3276774047, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774048, 3276774079, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774080, 3276774095, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774096, 3276774111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774112, 3276774143, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774144, 3276774271, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774272, 3276774303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774304, 3276774335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774336, 3276774399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774400, 3276774543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774544, 3276774559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774560, 3276774591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774592, 3276774655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276774656, 3276775103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276775104, 3276775167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276775168, 3276775295, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276775296, 3276775359, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276775360, 3276775391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276775392, 3276775423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276775424, 3276781151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276781152, 3276781247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276781248, 3276781311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276781312, 3276781503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276781504, 3276781567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276781568, 3276782719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276782720, 3276782783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276782784, 3276782799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276782800, 3276782815, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276782816, 3276782847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276782848, 3276782975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276782976, 3276783039, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276783040, 3276783055, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276783056, 3276783071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276783072, 3276783087, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276783088, 3276783103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276783104, 3276783615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276783616, 3276784383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276784384, 3276784639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276784640, 3276784895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276784896, 3276785151, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785152, 3276785407, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785408, 3276785439, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785440, 3276785455, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785456, 3276785463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785464, 3276785471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785472, 3276785535, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785536, 3276785567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785568, 3276785599, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785600, 3276785607, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785608, 3276785615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785616, 3276785631, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785632, 3276785663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785664, 3276785791, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785792, 3276785823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785824, 3276785855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785856, 3276785919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276785920, 3276786175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276786176, 3276786431, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276786432, 3276786687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276786688, 3276786815, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276786816, 3276786879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276786880, 3276786911, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276786912, 3276786943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276786944, 3276787359, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276787360, 3276787391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276787392, 3276787455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276787456, 3276787775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276787776, 3276787839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276787840, 3276788735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276788736, 3276788863, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276788864, 3276788895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276788896, 3276788927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276788928, 3276788991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276788992, 3276789247, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789248, 3276789439, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789440, 3276789503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789504, 3276789567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789568, 3276789583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789584, 3276789599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789600, 3276789615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789616, 3276789631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789632, 3276789759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276789760, 3276790015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790016, 3276790111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790112, 3276790127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790128, 3276790143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790144, 3276790175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790176, 3276790199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790200, 3276790207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790208, 3276790223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790224, 3276790271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790272, 3276790527, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790528, 3276790783, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790784, 3276790943, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276790944, 3276791007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276791008, 3276791039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276791040, 3276791295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276791296, 3276791327, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276791328, 3276791551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276791552, 3276792831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276792832, 3276793087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793088, 3276793279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793280, 3276793343, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793344, 3276793735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793736, 3276793743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793744, 3276793751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793752, 3276793759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793760, 3276793791, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793792, 3276793855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276793856, 3276794111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276794112, 3276794255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276794256, 3276794271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276794272, 3276794303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276794304, 3276794335, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276794336, 3276794367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276794368, 3276795903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276795904, 3276797951, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276797952, 3276799103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799104, 3276799231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799232, 3276799295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799296, 3276799359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799360, 3276799391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799392, 3276799455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799456, 3276799471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799472, 3276799487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799488, 3276799743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799744, 3276799775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799776, 3276799807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799808, 3276799839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799840, 3276799871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276799872, 3276799999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276800000, 3276824575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276824576, 3276832767, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276832768, 3276840959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276840960, 3276849151, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276849152, 3276857343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276857344, 3276857599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276857600, 3276857855, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276857856, 3276858111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276858112, 3276858367, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276858368, 3276858623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276858624, 3276858879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276858880, 3276859135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276859136, 3276859647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276859648, 3276859903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276859904, 3276860159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276860160, 3276860415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276860416, 3276860927, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276860928, 3276861183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276861184, 3276861439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276861440, 3276865535, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276865536, 3276931071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276931072, 3276939263, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276939264, 3276951535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276951536, 3276951543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276951544, 3276955647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276955648, 3276963839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276963840, 3276972031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276972032, 3276980223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276980224, 3276988415, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276988416, 3276996607, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3276996608, 3277062143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277062144, 3277127679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277127680, 3277160447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277160448, 3277176831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277176832, 3277177087, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277177088, 3277177343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277177344, 3277177599, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277177600, 3277178111, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277178112, 3277178623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277178624, 3277178879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277178880, 3277179135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277179136, 3277179391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277179392, 3277179647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277179648, 3277180159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277180160, 3277180415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277180416, 3277180671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277180672, 3277180927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277180928, 3277181183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277181184, 3277181439, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277181440, 3277181695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277181696, 3277181951, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277181952, 3277182207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277182208, 3277182463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277182464, 3277182719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277182720, 3277182975, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277182976, 3277183231, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277183232, 3277183487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277183488, 3277183743, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277183744, 3277183999, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277184000, 3277184255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277184256, 3277184511, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277184512, 3277184767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277184768, 3277185023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277185024, 3277185279, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277185280, 3277185535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277185536, 3277185791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277185792, 3277186047, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277186048, 3277186303, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277186304, 3277186815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277186816, 3277187071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277187072, 3277187327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277187328, 3277187583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277187584, 3277188351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277188352, 3277188607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277188608, 3277188863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277188864, 3277189119, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277189120, 3277189375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277189376, 3277189631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277189632, 3277189887, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277189888, 3277190143, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277190144, 3277190399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277190400, 3277190655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277190656, 3277190911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277190912, 3277191167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277191168, 3277191423, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277191424, 3277191679, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277191680, 3277191935, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277191936, 3277192191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277192192, 3277192447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277192448, 3277192703, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277192704, 3277192959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277192960, 3277193215, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277193216, 3277254727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277254728, 3277254735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277254736, 3277258751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277258752, 3277324287, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277324288, 3277389823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277389824, 3277390463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277390464, 3277395951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277395952, 3277395967, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277395968, 3277396735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277396736, 3277396863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277396864, 3277396927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277396928, 3277396991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277396992, 3277423615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277423616, 3277424127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277424128, 3277425151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277425152, 3277426599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277426600, 3277426607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277426608, 3277426623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277426624, 3277427455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277427456, 3277427711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277427712, 3277428095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277428096, 3277428159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277428160, 3277428639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277428640, 3277428655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277428656, 3277430527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277430528, 3277430783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277430784, 3277432831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277432832, 3277433599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277433600, 3277434127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277434128, 3277434175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277434176, 3277434207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277434208, 3277434303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277434304, 3277434879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277434880, 3277435391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435392, 3277435583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435584, 3277435615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435616, 3277435631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435632, 3277435639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435640, 3277435647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435648, 3277435711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435712, 3277435775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435776, 3277435903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277435904, 3277437439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277437440, 3277437695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277437696, 3277438207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277438208, 3277438463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277438464, 3277439295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277439296, 3277439327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277439328, 3277439359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277439360, 3277439391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277439392, 3277439743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277439744, 3277439999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277440000, 3277440767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277440768, 3277441023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277441024, 3277441135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277441136, 3277441143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277441144, 3277441255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277441256, 3277441263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277441264, 3277441279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277441280, 3277441535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277441536, 3277452647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277452648, 3277452655, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277452656, 3277454079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277454080, 3277455359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277455360, 3277463551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277463552, 3277463807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277463808, 3277464063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277464064, 3277464575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277464576, 3277464831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277464832, 3277465087, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277465088, 3277466367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277466368, 3277466495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277466496, 3277466623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277466624, 3277466879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277466880, 3277467471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277467472, 3277467551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277467552, 3277467647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277467648, 3277467663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277467664, 3277467903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277467904, 3277467919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277467920, 3277468095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277468096, 3277468607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277468608, 3277468671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277468672, 3277468735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277468736, 3277468927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277468928, 3277469056, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277469057, 3277469183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277469184, 3277469439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277469440, 3277471743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277471744, 3277472511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277472512, 3277472607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277472608, 3277472623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277472624, 3277474815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277474816, 3277475711, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277475712, 3277475839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277475840, 3277476095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277476096, 3277476607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277476608, 3277477631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277477632, 3277478143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277478144, 3277478399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277478400, 3277479935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277479936, 3277480959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277480960, 3277481471, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277481472, 3277481983, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277481984, 3277482495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277482496, 3277483007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277483008, 3277483519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277483520, 3277484031, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277484032, 3277484543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277484544, 3277485055, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277485056, 3277485567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277485568, 3277486591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277486592, 3277487103, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277487104, 3277487615, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277487616, 3277488127, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277488128, 3277504511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277504512, 3277520895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277520896, 3277553663, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277553664, 3277586431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277586432, 3277651967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277651968, 3277684735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277717504, 3277725695, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277725696, 3277728367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277728368, 3277728383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277728384, 3277733887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277733888, 3277736351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277736352, 3277736367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277736368, 3277742079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277742080, 3277750271, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277750272, 3277766655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277766656, 3277774847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277774848, 3277783039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277783040, 3277815807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277815808, 3277816063, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277816064, 3277816319, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277816320, 3277816575, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277816576, 3277816831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277816832, 3277817087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277817088, 3277817343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277817344, 3277817855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277817856, 3277818111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277818112, 3277818367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277818368, 3277818623, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277818624, 3277818879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277818880, 3277819135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277819136, 3277819391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277819392, 3277819647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277819648, 3277819903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277819904, 3277820159, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277820160, 3277820415, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277820416, 3277820671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277820672, 3277820927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277820928, 3277821183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277821184, 3277821439, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277821440, 3277821695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277821696, 3277821951, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277821952, 3277822207, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277822208, 3277822463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277822464, 3277822719, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277822720, 3277822975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277822976, 3277823231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277823232, 3277823487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277823488, 3277823743, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277823744, 3277823999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277824000, 3277824255, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277824256, 3277824511, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277824512, 3277824767, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277824768, 3277825023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277825024, 3277825279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277825280, 3277825535, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277825536, 3277826047, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277826048, 3277826303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277826304, 3277826815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277826816, 3277827071, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277827072, 3277827327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277827328, 3277827583, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277827584, 3277828095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277828096, 3277828351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277828352, 3277828607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277828608, 3277828863, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277828864, 3277829119, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277829120, 3277829375, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277829376, 3277829631, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277829632, 3277829887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277829888, 3277830143, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277830144, 3277830399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277830400, 3277830655, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277830656, 3277830911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277830912, 3277831167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277831168, 3277831423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277831424, 3277831679, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277831680, 3277832191, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277832192, 3277833215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277833216, 3277833727, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277833728, 3277834239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277834240, 3277834751, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277834752, 3277835263, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277835264, 3277835775, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277835776, 3277836287, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277836288, 3277836799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277836800, 3277837311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277837312, 3277838847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277838848, 3277839359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277839360, 3277839871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277839872, 3277840383, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277840384, 3277840895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277840896, 3277841407, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277841408, 3277841919, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277841920, 3277842431, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277842432, 3277842943, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277842944, 3277843455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277843456, 3277843967, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277843968, 3277845503, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277845504, 3277847039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277847040, 3277847551, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277847552, 3277848063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277848064, 3277848575, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277848576, 3277856767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277856768, 3277864959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277864960, 3277873151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277873152, 3277881343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277881344, 3277882111, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277882112, 3277882623, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277882624, 3277883903, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277883904, 3277884159, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277884160, 3277884167, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277884168, 3277884191, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277884192, 3277884415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277884416, 3277885567, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277885568, 3277885695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277885696, 3277887103, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277887104, 3277887231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277887232, 3277889535, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277889536, 3277897727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277897728, 3277905919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277905920, 3277914111, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277914112, 3277946879, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277946880, 3277963263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277963264, 3277979647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277979648, 3277987839, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3277987840, 3278004223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278004224, 3278012415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278012416, 3278020607, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278020608, 3278028799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278028800, 3278036991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278036992, 3278045183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278045184, 3278054399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278054400, 3278054655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278054656, 3278054911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278054912, 3278055423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278055424, 3278062079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278062080, 3278062335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278062336, 3278063103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278063104, 3278063359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278063360, 3278067967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278067968, 3278068223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278068224, 3278069327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278069328, 3278069343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278069344, 3278103039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278103040, 3278103295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278103296, 3278103807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278103808, 3278104063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278104064, 3278110719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278110720, 3278110751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278110752, 3278110767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278110768, 3278119935, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278119936, 3278119943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278119944, 3278119967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278119968, 3278119975, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278119976, 3278120151, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278120152, 3278120159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278120160, 3278160107, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278160108, 3278160111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278160112, 3278161631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278161632, 3278161647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278161648, 3278168063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278168064, 3278168071, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278168072, 3278168079, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278168080, 3278168127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278168128, 3278168159, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278168160, 3278176255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278176256, 3278232511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278232512, 3278232575, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278232576, 3278241791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278241792, 3278307327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278307328, 3278372863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278372864, 3278635007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278635008, 3278744791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278744792, 3278744799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278744800, 3278766079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278774272, 3278782463, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278782464, 3278782975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278782976, 3278783231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278783232, 3278790655, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278790656, 3278807039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278807040, 3278815231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278815232, 3278823423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278823424, 3278831615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278831616, 3278865663, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278865664, 3278865919, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278865920, 3278897151, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278897152, 3278913535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278913536, 3278921727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278921728, 3278929919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278929920, 3278938111, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938112, 3278938119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938120, 3278938123, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938124, 3278938127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938128, 3278938131, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938132, 3278938151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938152, 3278938155, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938156, 3278938159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938160, 3278938163, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938164, 3278938167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938168, 3278938171, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938172, 3278938175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938176, 3278938179, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938180, 3278938183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938184, 3278938187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938188, 3278938191, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938192, 3278938195, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938196, 3278938199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938200, 3278938203, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938204, 3278938207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938208, 3278938219, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938220, 3278938223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938224, 3278938227, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938228, 3278938231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938232, 3278938235, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938236, 3278938239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938240, 3278938243, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938244, 3278938247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938248, 3278938251, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938252, 3278938255, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938256, 3278938263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938264, 3278938267, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938268, 3278938275, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938276, 3278938279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938280, 3278938283, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938284, 3278938287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938288, 3278938291, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938292, 3278938299, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938300, 3278938303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938304, 3278938307, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938308, 3278938311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938312, 3278938315, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938316, 3278938323, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938324, 3278938335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938336, 3278938339, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938340, 3278938343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938344, 3278938347, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938348, 3278938351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938352, 3278938355, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938356, 3278938359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938360, 3278938363, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938364, 3278938367, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938368, 3278938375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938376, 3278938379, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938380, 3278938383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938384, 3278938387, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938388, 3278938399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938400, 3278938403, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938404, 3278938407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938408, 3278938411, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938412, 3278938415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938416, 3278938419, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938420, 3278938423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938424, 3278938427, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938428, 3278938431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938432, 3278938435, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938436, 3278938439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938440, 3278938443, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938444, 3278938447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938448, 3278938451, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938452, 3278938455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938456, 3278938459, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938460, 3278938463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938464, 3278938467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938468, 3278938471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938472, 3278938479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938480, 3278938483, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938484, 3278938487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938488, 3278938491, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938492, 3278938495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938496, 3278938499, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938500, 3278938503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938504, 3278938507, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938508, 3278938511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938512, 3278938515, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938516, 3278938523, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938524, 3278938527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938528, 3278938531, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938532, 3278938535, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938536, 3278938555, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938556, 3278938559, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938560, 3278938563, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938564, 3278938567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938568, 3278938575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938576, 3278938579, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938580, 3278938583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938584, 3278938587, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938588, 3278938591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938592, 3278938595, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938596, 3278938599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938600, 3278938603, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938604, 3278938607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938608, 3278938611, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938612, 3278938615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938616, 3278938619, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938620, 3278938627, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938628, 3278938631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938632, 3278938635, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938636, 3278938639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938640, 3278938643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938644, 3278938647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938648, 3278938659, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938660, 3278938663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938664, 3278938667, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938668, 3278938671, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938672, 3278938675, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938676, 3278938679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938680, 3278938683, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938684, 3278938687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938688, 3278938691, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938692, 3278938695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938696, 3278938699, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938700, 3278938703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938704, 3278938707, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938708, 3278938715, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938716, 3278938719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938720, 3278938723, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938724, 3278938727, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938728, 3278938731, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938732, 3278938735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938736, 3278938739, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938740, 3278938743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938744, 3278938751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938752, 3278938755, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938756, 3278938759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938760, 3278938763, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938764, 3278938767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938768, 3278938771, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938772, 3278938775, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938776, 3278938779, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938780, 3278938783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938784, 3278938787, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938788, 3278938791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938792, 3278938795, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938796, 3278938799, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938800, 3278938803, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938804, 3278938807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938808, 3278938815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938816, 3278938819, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938820, 3278938827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938828, 3278938831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938832, 3278938835, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938836, 3278938839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938840, 3278938843, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938844, 3278938847, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938848, 3278938851, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938852, 3278938855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938856, 3278938859, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938860, 3278938863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938864, 3278938871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938872, 3278938875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938876, 3278938879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938880, 3278938887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938888, 3278938891, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938892, 3278938895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938896, 3278938903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938904, 3278938911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938912, 3278938919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938920, 3278938923, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938924, 3278938927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938928, 3278938935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938936, 3278938939, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938940, 3278938943, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938944, 3278938947, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938948, 3278938951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938952, 3278938955, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938956, 3278938959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938960, 3278938967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938968, 3278938971, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938972, 3278938975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938976, 3278938979, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938980, 3278938987, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938988, 3278938991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938992, 3278938995, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278938996, 3278938999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939000, 3278939003, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939004, 3278939007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939008, 3278939011, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939012, 3278939015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939016, 3278939019, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939020, 3278939023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939024, 3278939027, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939028, 3278939031, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939032, 3278939035, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939036, 3278939039, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939040, 3278939047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939048, 3278939055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939056, 3278939063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939064, 3278939067, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939068, 3278939071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939072, 3278939075, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939076, 3278939079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939080, 3278939083, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939084, 3278939087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939088, 3278939091, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939092, 3278939095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939096, 3278939099, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939100, 3278939103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939104, 3278939107, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939108, 3278939111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939112, 3278939115, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939116, 3278939119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939120, 3278939131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939132, 3278939135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939136, 3278939147, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939148, 3278939151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939152, 3278939155, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939156, 3278939195, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939196, 3278939199, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939200, 3278939259, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939260, 3278939263, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939264, 3278939271, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939272, 3278939279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939280, 3278939283, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939284, 3278939291, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939292, 3278939295, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939296, 3278939307, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939308, 3278939311, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939312, 3278939315, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939316, 3278939319, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939320, 3278939323, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939324, 3278939327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939328, 3278939331, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939332, 3278939335, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939336, 3278939339, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939340, 3278939351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939352, 3278939355, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939356, 3278939379, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939380, 3278939383, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939384, 3278939391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939392, 3278939395, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939396, 3278939399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939400, 3278939403, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939404, 3278939407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939408, 3278939415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939416, 3278939419, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939420, 3278939423, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939424, 3278939427, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939428, 3278939435, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939436, 3278939439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939440, 3278939443, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939444, 3278939447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939448, 3278939451, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939452, 3278939459, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939460, 3278939463, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939464, 3278939467, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939468, 3278939471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939472, 3278939475, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939476, 3278939479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939480, 3278939483, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939484, 3278939491, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939492, 3278939495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939496, 3278939499, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939500, 3278939503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939504, 3278939511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939512, 3278939515, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939516, 3278939523, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939524, 3278939527, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939528, 3278939531, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939532, 3278939535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939536, 3278939539, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939540, 3278939555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939556, 3278939559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939560, 3278939563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939564, 3278939567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939568, 3278939571, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939572, 3278939575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939576, 3278939579, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939580, 3278939583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939584, 3278939587, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939588, 3278939591, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939592, 3278939595, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939596, 3278939599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939600, 3278939603, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939604, 3278939607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939608, 3278939611, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939612, 3278939615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939616, 3278939631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939632, 3278939635, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939636, 3278939639, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939640, 3278939643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939644, 3278939647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939648, 3278939651, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939652, 3278939655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939656, 3278939659, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939660, 3278939663, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939664, 3278939667, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939668, 3278939671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939672, 3278939679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939680, 3278939683, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939684, 3278939687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939688, 3278939691, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939692, 3278939695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939696, 3278939699, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939700, 3278939703, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939704, 3278939707, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939708, 3278939711, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939712, 3278939715, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939716, 3278939723, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939724, 3278939727, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939728, 3278939731, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939732, 3278939735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939736, 3278939739, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939740, 3278939743, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939744, 3278939747, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939748, 3278939751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939752, 3278939755, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939756, 3278939759, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939760, 3278939763, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939764, 3278939767, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939768, 3278939771, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939772, 3278939775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939776, 3278939779, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939780, 3278939783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939784, 3278939787, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939788, 3278939791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939792, 3278939803, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939804, 3278939807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939808, 3278939815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939816, 3278939819, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939820, 3278939823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939824, 3278939827, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939828, 3278939835, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939836, 3278939839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939840, 3278939843, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939844, 3278939847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939848, 3278939851, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939852, 3278939855, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939856, 3278939859, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939860, 3278939863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939864, 3278939867, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939868, 3278939871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939872, 3278939875, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939876, 3278939879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939880, 3278939883, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939884, 3278939887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939888, 3278939891, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939892, 3278939899, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939900, 3278939903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939904, 3278939907, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939908, 3278939911, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939912, 3278939915, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939916, 3278939923, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939924, 3278939927, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939928, 3278939931, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939932, 3278939935, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939936, 3278939939, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939940, 3278939943, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939944, 3278939947, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939948, 3278939951, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939952, 3278939955, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939956, 3278939959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939960, 3278939963, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939964, 3278939967, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939968, 3278939971, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939972, 3278939979, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939980, 3278939983, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939984, 3278939987, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939988, 3278939991, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939992, 3278939995, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278939996, 3278939999, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940000, 3278940011, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940012, 3278940015, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940016, 3278940059, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940060, 3278940067, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940068, 3278940071, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940072, 3278940083, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940084, 3278940091, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940092, 3278940095, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940096, 3278940099, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940100, 3278940103, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940104, 3278940107, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940108, 3278940127, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940128, 3278940131, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940132, 3278940135, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940136, 3278940139, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940140, 3278940143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940144, 3278940151, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940152, 3278940155, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940156, 3278940159, N'PH', N'Philippines') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940160, 3278940163, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940164, 3278940167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940168, 3278940171, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940172, 3278940175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940176, 3278940179, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940180, 3278940183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940184, 3278940187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940188, 3278940195, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940196, 3278940211, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940212, 3278940215, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940216, 3278940219, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940220, 3278940223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940224, 3278940227, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940228, 3278940231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940232, 3278940235, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940236, 3278940239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940240, 3278940243, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940244, 3278940247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940248, 3278940251, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940252, 3278940255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940256, 3278940259, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940260, 3278940263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940264, 3278940267, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940268, 3278940275, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940276, 3278940279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940280, 3278940283, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940284, 3278940291, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940292, 3278940295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940296, 3278940299, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940300, 3278940303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940304, 3278940307, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940308, 3278940311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940312, 3278940315, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940316, 3278940319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940320, 3278940323, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940324, 3278940327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940328, 3278940335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940336, 3278940339, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940340, 3278940347, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940348, 3278940355, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940356, 3278940359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940360, 3278940363, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940364, 3278940367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940368, 3278940371, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940372, 3278940375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940376, 3278940379, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940380, 3278940383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940384, 3278940387, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940388, 3278940391, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940392, 3278940395, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940396, 3278940399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940400, 3278940403, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940404, 3278940407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940408, 3278940411, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940412, 3278940412, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940413, 3278940415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940416, 3278940419, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940420, 3278940423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940424, 3278940427, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940428, 3278940431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940432, 3278940443, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940444, 3278940447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940448, 3278940451, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940452, 3278940455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940456, 3278940459, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940460, 3278940463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940464, 3278940467, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940468, 3278940471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940472, 3278940475, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940476, 3278940479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940480, 3278940483, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940484, 3278940487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940488, 3278940491, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940492, 3278940495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940496, 3278940499, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940500, 3278940503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940504, 3278940507, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940508, 3278940511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940512, 3278940515, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940516, 3278940523, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940524, 3278940531, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940532, 3278940535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940536, 3278940539, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940540, 3278940543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940544, 3278940551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940552, 3278940555, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940556, 3278940559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940560, 3278940563, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940564, 3278940571, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940572, 3278940579, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940580, 3278940587, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940588, 3278940591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940592, 3278940595, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940596, 3278940599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940600, 3278940603, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940604, 3278940607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940608, 3278940611, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940612, 3278940615, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940616, 3278940619, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940620, 3278940623, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940624, 3278940631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940632, 3278940635, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940636, 3278940639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940640, 3278940643, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940644, 3278940647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940648, 3278940651, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940652, 3278940655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940656, 3278940663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940664, 3278940671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940672, 3278940679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940680, 3278940683, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940684, 3278940691, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940692, 3278940695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940696, 3278940707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940708, 3278940711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940712, 3278940715, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940716, 3278940723, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940724, 3278940727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940728, 3278940731, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940732, 3278940739, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940740, 3278940743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940744, 3278940747, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940748, 3278940751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940752, 3278940759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940760, 3278940763, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940764, 3278940767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940768, 3278940771, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940772, 3278940783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940784, 3278940787, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940788, 3278940791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940792, 3278940795, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940796, 3278940803, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940804, 3278940807, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940808, 3278940815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940816, 3278940819, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940820, 3278940823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940824, 3278940827, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940828, 3278940831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940832, 3278940835, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940836, 3278940839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940840, 3278940847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940848, 3278940851, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940852, 3278940855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940856, 3278940859, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940860, 3278940863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940864, 3278940867, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940868, 3278940871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940872, 3278940875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940876, 3278940879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940880, 3278940883, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940884, 3278940887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940888, 3278940891, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940892, 3278940895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940896, 3278940899, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940900, 3278940903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940904, 3278940911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940912, 3278940915, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940916, 3278940919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940920, 3278940923, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940924, 3278940927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940928, 3278940931, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940932, 3278940935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940936, 3278940939, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940940, 3278940943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940944, 3278940947, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940948, 3278940951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940952, 3278940955, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940956, 3278940959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940960, 3278940963, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940964, 3278940967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940968, 3278940971, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940972, 3278940983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940984, 3278940987, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940988, 3278940991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940992, 3278940995, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278940996, 3278940999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941000, 3278941003, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941004, 3278941007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941008, 3278941011, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941012, 3278941015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941016, 3278941023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941024, 3278941027, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941028, 3278941031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941032, 3278941035, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941036, 3278941039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941040, 3278941043, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941044, 3278941047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941048, 3278941051, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941052, 3278941055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941056, 3278941059, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941060, 3278941063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941064, 3278941067, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941068, 3278941071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941072, 3278941075, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941076, 3278941083, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941084, 3278941087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941088, 3278941091, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941092, 3278941095, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941096, 3278941099, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941100, 3278941107, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941108, 3278941111, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941112, 3278941119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941120, 3278941127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941128, 3278941131, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941132, 3278941135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941136, 3278941139, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941140, 3278941143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941144, 3278941151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941152, 3278941155, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941156, 3278941159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941160, 3278941167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941168, 3278941171, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941172, 3278941175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941176, 3278941179, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941180, 3278941183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941184, 3278941191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941192, 3278941195, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941196, 3278941215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941216, 3278941219, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941220, 3278941243, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941244, 3278941247, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941248, 3278941255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941256, 3278941259, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941260, 3278941279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941280, 3278941283, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941284, 3278941287, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941288, 3278941303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941304, 3278941307, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941308, 3278941319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941320, 3278941323, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941324, 3278941331, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941332, 3278941335, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941336, 3278941343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941344, 3278941347, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941348, 3278941371, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941372, 3278941375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941376, 3278941399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941400, 3278941403, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941404, 3278941407, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941408, 3278941423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941424, 3278941427, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941428, 3278941431, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941432, 3278941439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941440, 3278941443, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941444, 3278941455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941456, 3278941459, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941460, 3278941475, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941476, 3278941479, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941480, 3278941491, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941492, 3278941495, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941496, 3278941499, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941500, 3278941503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941504, 3278941587, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941588, 3278941591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941592, 3278941595, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941596, 3278941599, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941600, 3278941615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941616, 3278941619, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941620, 3278941639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941640, 3278941643, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941644, 3278941651, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941652, 3278941655, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941656, 3278941659, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941660, 3278941663, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941664, 3278941667, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941668, 3278941671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941672, 3278941675, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941676, 3278941691, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941692, 3278941695, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941696, 3278941735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941736, 3278941739, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941740, 3278941743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941744, 3278941747, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941748, 3278941819, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941820, 3278941823, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941824, 3278941835, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941836, 3278941839, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941840, 3278941847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941848, 3278941855, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941856, 3278941891, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941892, 3278941895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941896, 3278941911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941912, 3278941915, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941916, 3278941943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941944, 3278941947, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941948, 3278941951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941952, 3278941955, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941956, 3278941959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941960, 3278941963, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941964, 3278941971, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941972, 3278941979, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941980, 3278941987, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941988, 3278941995, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278941996, 3278941999, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942000, 3278942003, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942004, 3278942011, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942012, 3278942015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942016, 3278942019, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942020, 3278942023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942024, 3278942027, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942028, 3278942031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942032, 3278942035, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942036, 3278942039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942040, 3278942043, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942044, 3278942047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942048, 3278942051, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942052, 3278942055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942056, 3278942059, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942060, 3278942063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942064, 3278942071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942072, 3278942075, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942076, 3278942079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942080, 3278942083, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942084, 3278942087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942088, 3278942091, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942092, 3278942095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942096, 3278942099, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942100, 3278942103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942104, 3278942107, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942108, 3278942111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942112, 3278942115, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942116, 3278942119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942120, 3278942123, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942124, 3278942127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942128, 3278942131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942132, 3278942135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942136, 3278942139, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942140, 3278942143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942144, 3278942147, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942148, 3278942155, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942156, 3278942159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942160, 3278942163, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942164, 3278942167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942168, 3278942171, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942172, 3278942175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942176, 3278942179, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942180, 3278942183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942184, 3278942187, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942188, 3278942191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942192, 3278942199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942200, 3278942203, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942204, 3278942207, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942208, 3278942211, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942212, 3278942227, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942228, 3278942231, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942232, 3278942243, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942244, 3278942247, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942248, 3278942255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942256, 3278942259, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942260, 3278942271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942272, 3278942275, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942276, 3278942291, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942292, 3278942295, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942296, 3278942299, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942300, 3278942355, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942356, 3278942359, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942360, 3278942383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942384, 3278942387, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942388, 3278942399, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942400, 3278942403, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942404, 3278942435, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942436, 3278942439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942440, 3278942443, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942444, 3278942447, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942448, 3278942455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942456, 3278942463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942464, 3278942467, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942468, 3278942471, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942472, 3278942475, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942476, 3278942483, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942484, 3278942487, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942488, 3278942491, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942492, 3278942495, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942496, 3278942499, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942500, 3278942507, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942508, 3278942511, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942512, 3278942515, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942516, 3278942519, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942520, 3278942539, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942540, 3278942543, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942544, 3278942547, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942548, 3278942551, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942552, 3278942555, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942556, 3278942559, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942560, 3278942571, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942572, 3278942575, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942576, 3278942579, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942580, 3278942583, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942584, 3278942587, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942588, 3278942591, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942592, 3278942595, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942596, 3278942599, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942600, 3278942603, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942604, 3278942607, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942608, 3278942611, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942612, 3278942615, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942616, 3278942627, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942628, 3278942635, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942636, 3278942643, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942644, 3278942647, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942648, 3278942651, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942652, 3278942655, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942656, 3278942667, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942668, 3278942671, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942672, 3278942675, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942676, 3278942679, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942680, 3278942683, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942684, 3278942687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942688, 3278942691, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942692, 3278942695, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942696, 3278942699, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942700, 3278942703, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942704, 3278942707, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942708, 3278942719, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942720, 3278942721, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942722, 3278942722, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942723, 3278942724, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942725, 3278942725, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942726, 3278942726, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942727, 3278942727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942728, 3278942728, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942729, 3278942730, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942731, 3278942731, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942732, 3278942732, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942733, 3278942733, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942734, 3278942734, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942735, 3278942735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942736, 3278942736, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942737, 3278942737, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942738, 3278942739, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942740, 3278942740, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942741, 3278942741, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942742, 3278942742, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942743, 3278942743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942744, 3278942748, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942749, 3278942749, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942750, 3278942750, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942751, 3278942751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942752, 3278942753, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942754, 3278942754, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942755, 3278942755, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942756, 3278942756, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942757, 3278942757, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942758, 3278942759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942760, 3278942760, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942761, 3278942761, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942762, 3278942762, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942763, 3278942763, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942764, 3278942764, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942765, 3278942765, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942766, 3278942766, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942767, 3278942767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942768, 3278942768, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942769, 3278942769, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942770, 3278942771, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942772, 3278942772, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942773, 3278942773, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942774, 3278942774, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942775, 3278942775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942776, 3278942776, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942777, 3278942778, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942779, 3278942779, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942780, 3278942781, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942782, 3278942782, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942783, 3278942784, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942785, 3278942785, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942786, 3278942786, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942787, 3278942787, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942788, 3278942789, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942790, 3278942790, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942791, 3278942791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942792, 3278942792, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942793, 3278942793, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942794, 3278942794, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942795, 3278942795, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942796, 3278942796, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942797, 3278942797, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942798, 3278942798, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942799, 3278942799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942800, 3278942800, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942801, 3278942801, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942802, 3278942803, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942804, 3278942804, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942805, 3278942805, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942806, 3278942806, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942807, 3278942807, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942808, 3278942809, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942810, 3278942810, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942811, 3278942811, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942812, 3278942813, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942814, 3278942814, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942815, 3278942815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942816, 3278942816, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942817, 3278942817, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942818, 3278942818, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942819, 3278942819, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942820, 3278942820, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942821, 3278942821, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942822, 3278942824, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942825, 3278942825, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942826, 3278942826, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942827, 3278942827, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942828, 3278942828, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942829, 3278942829, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942830, 3278942830, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942831, 3278942831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942832, 3278942832, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942833, 3278942833, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942834, 3278942834, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942835, 3278942835, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942836, 3278942836, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942837, 3278942837, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942838, 3278942838, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942839, 3278942839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942840, 3278942841, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942842, 3278942843, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942844, 3278942844, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942845, 3278942850, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942851, 3278942851, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942852, 3278942852, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942853, 3278942853, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942854, 3278942854, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942855, 3278942855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942856, 3278942856, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942857, 3278942857, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942858, 3278942858, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942859, 3278942859, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942860, 3278942860, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942861, 3278942861, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942862, 3278942863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942864, 3278942864, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942865, 3278942865, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942866, 3278942867, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942868, 3278942868, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942869, 3278942869, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942870, 3278942870, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942871, 3278942871, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942872, 3278942872, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942873, 3278942873, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942874, 3278942875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942876, 3278942876, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942877, 3278942877, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942878, 3278942878, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942879, 3278942879, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942880, 3278942881, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942882, 3278942882, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942883, 3278942883, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942884, 3278942884, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942885, 3278942885, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942886, 3278942886, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942887, 3278942887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942888, 3278942889, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942890, 3278942890, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942891, 3278942894, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942895, 3278942895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942896, 3278942896, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942897, 3278942897, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942898, 3278942899, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942900, 3278942903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942904, 3278942904, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942905, 3278942905, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942906, 3278942907, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942908, 3278942908, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942909, 3278942910, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942911, 3278942911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942912, 3278942913, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942914, 3278942914, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942915, 3278942915, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942916, 3278942916, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942917, 3278942922, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942923, 3278942923, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942924, 3278942924, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942925, 3278942925, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942926, 3278942930, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942931, 3278942931, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942932, 3278942932, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942933, 3278942933, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942934, 3278942934, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942935, 3278942936, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942937, 3278942937, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942938, 3278942938, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942939, 3278942939, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942940, 3278942940, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942941, 3278942941, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942942, 3278942942, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942943, 3278942944, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942945, 3278942946, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942947, 3278942947, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942948, 3278942948, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942949, 3278942949, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942950, 3278942950, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942951, 3278942951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942952, 3278942953, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942954, 3278942954, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942955, 3278942955, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942956, 3278942956, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942957, 3278942957, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942958, 3278942958, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942959, 3278942959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942960, 3278942960, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942961, 3278942961, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942962, 3278942963, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942964, 3278942966, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942967, 3278942967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942968, 3278942968, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942969, 3278942969, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942970, 3278942970, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942971, 3278942972, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942973, 3278942977, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942978, 3278942978, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942979, 3278942979, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942980, 3278942980, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942981, 3278942983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942984, 3278942984, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942985, 3278942985, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942986, 3278942986, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942987, 3278942987, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942988, 3278942990, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942991, 3278942991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942992, 3278942992, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942993, 3278942993, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942994, 3278942994, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942995, 3278942997, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942998, 3278942998, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278942999, 3278942999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943000, 3278943002, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943003, 3278943003, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943004, 3278943005, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943006, 3278943006, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943007, 3278943007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943008, 3278943008, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943009, 3278943009, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943010, 3278943010, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943011, 3278943011, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943012, 3278943012, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943013, 3278943013, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943014, 3278943014, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943015, 3278943016, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943017, 3278943017, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943018, 3278943018, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943019, 3278943019, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943020, 3278943020, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943021, 3278943021, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943022, 3278943022, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943023, 3278943023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943024, 3278943024, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943025, 3278943025, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943026, 3278943026, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943027, 3278943027, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943028, 3278943029, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943030, 3278943030, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943031, 3278943031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943032, 3278943032, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943033, 3278943033, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943034, 3278943034, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943035, 3278943035, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943036, 3278943036, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943037, 3278943037, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943038, 3278943038, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943039, 3278943039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943040, 3278943040, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943041, 3278943041, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943042, 3278943042, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943043, 3278943043, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943044, 3278943044, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943045, 3278943048, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943049, 3278943049, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943050, 3278943050, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943051, 3278943051, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943052, 3278943053, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943054, 3278943056, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943057, 3278943057, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943058, 3278943058, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943059, 3278943059, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943060, 3278943065, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943066, 3278943066, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943067, 3278943069, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943070, 3278943070, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943071, 3278943072, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943073, 3278943073, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943074, 3278943074, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943075, 3278943076, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943077, 3278943077, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943078, 3278943079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943080, 3278943080, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943081, 3278943081, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943082, 3278943082, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943083, 3278943084, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943085, 3278943085, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943086, 3278943087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943088, 3278943088, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943089, 3278943090, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943091, 3278943091, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943092, 3278943092, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943093, 3278943096, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943097, 3278943097, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943098, 3278943098, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943099, 3278943099, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943100, 3278943100, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943101, 3278943101, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943102, 3278943102, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943103, 3278943105, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943106, 3278943106, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943107, 3278943107, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943108, 3278943108, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943109, 3278943109, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943110, 3278943110, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943111, 3278943111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943112, 3278943112, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943113, 3278943113, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943114, 3278943114, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943115, 3278943115, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943116, 3278943116, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943117, 3278943117, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943118, 3278943119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943120, 3278943120, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943121, 3278943121, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943122, 3278943122, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943123, 3278943123, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943124, 3278943124, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943125, 3278943125, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943126, 3278943126, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943127, 3278943127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943128, 3278943128, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943129, 3278943130, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943131, 3278943131, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943132, 3278943132, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943133, 3278943133, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943134, 3278943135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943136, 3278943136, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943137, 3278943137, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943138, 3278943138, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943139, 3278943139, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943140, 3278943140, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943141, 3278943141, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943142, 3278943142, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943143, 3278943143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943144, 3278943145, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943146, 3278943146, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943147, 3278943147, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943148, 3278943148, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943149, 3278943149, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943150, 3278943150, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943151, 3278943151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943152, 3278943153, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943154, 3278943154, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943155, 3278943159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943160, 3278943160, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943161, 3278943161, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943162, 3278943162, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943163, 3278943163, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943164, 3278943164, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943165, 3278943165, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943166, 3278943168, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943169, 3278943169, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943170, 3278943172, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943173, 3278943173, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943174, 3278943174, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943175, 3278943177, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943178, 3278943178, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943179, 3278943179, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943180, 3278943181, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943182, 3278943182, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943183, 3278943183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943184, 3278943184, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943185, 3278943185, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943186, 3278943186, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943187, 3278943187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943188, 3278943188, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943189, 3278943191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943192, 3278943192, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943193, 3278943193, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943194, 3278943194, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943195, 3278943195, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943196, 3278943196, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943197, 3278943197, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943198, 3278943198, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943199, 3278943199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943200, 3278943200, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943201, 3278943202, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943203, 3278943203, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943204, 3278943206, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943207, 3278943207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943208, 3278943208, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943209, 3278943209, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943210, 3278943212, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943213, 3278943213, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943214, 3278943214, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943215, 3278943215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943216, 3278943216, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943217, 3278943217, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943218, 3278943218, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943219, 3278943220, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943221, 3278943221, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943222, 3278943222, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943223, 3278943223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943224, 3278943225, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943226, 3278943226, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943227, 3278943227, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943228, 3278943228, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943229, 3278943235, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943236, 3278943236, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943237, 3278943237, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943238, 3278943239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943240, 3278943240, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943241, 3278943241, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943242, 3278943242, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943243, 3278943243, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943244, 3278943244, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943245, 3278943245, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943246, 3278943246, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943247, 3278943247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943248, 3278943248, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943249, 3278943249, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943250, 3278943251, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943252, 3278943252, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943253, 3278943253, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943254, 3278943254, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943255, 3278943255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943256, 3278943256, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943257, 3278943257, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943258, 3278943260, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943261, 3278943261, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943262, 3278943262, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943263, 3278943263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943264, 3278943265, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943266, 3278943266, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943267, 3278943267, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943268, 3278943268, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943269, 3278943270, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943271, 3278943271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943272, 3278943274, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943275, 3278943275, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943276, 3278943277, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943278, 3278943278, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943279, 3278943279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943280, 3278943280, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943281, 3278943281, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943282, 3278943283, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943284, 3278943284, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943285, 3278943287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943288, 3278943288, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943289, 3278943289, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943290, 3278943290, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943291, 3278943292, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943293, 3278943293, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943294, 3278943294, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943295, 3278943296, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943297, 3278943297, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943298, 3278943298, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943299, 3278943299, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943300, 3278943300, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943301, 3278943301, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943302, 3278943302, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943303, 3278943303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943304, 3278943304, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943305, 3278943305, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943306, 3278943306, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943307, 3278943308, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943309, 3278943309, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943310, 3278943310, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943311, 3278943311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943312, 3278943314, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943315, 3278943316, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943317, 3278943318, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943319, 3278943319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943320, 3278943320, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943321, 3278943321, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943322, 3278943322, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943323, 3278943323, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943324, 3278943324, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943325, 3278943326, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943327, 3278943328, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943329, 3278943329, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943330, 3278943330, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943331, 3278943331, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943332, 3278943333, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943334, 3278943334, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943335, 3278943335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943336, 3278943337, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943338, 3278943338, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943339, 3278943339, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943340, 3278943340, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943341, 3278943341, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943342, 3278943343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943344, 3278943344, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943345, 3278943345, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943346, 3278943346, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943347, 3278943347, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943348, 3278943349, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943350, 3278943351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943352, 3278943352, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943353, 3278943353, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943354, 3278943355, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943356, 3278943356, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943357, 3278943357, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943358, 3278943358, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943359, 3278943359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943360, 3278943360, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943361, 3278943361, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943362, 3278943362, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943363, 3278943363, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943364, 3278943364, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943365, 3278943366, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943367, 3278943367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943368, 3278943369, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943370, 3278943370, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943371, 3278943371, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943372, 3278943372, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943373, 3278943374, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943375, 3278943375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943376, 3278943376, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943377, 3278943377, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943378, 3278943378, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943379, 3278943379, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943380, 3278943380, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943381, 3278943381, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943382, 3278943382, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943383, 3278943383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943384, 3278943384, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943385, 3278943385, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943386, 3278943387, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943388, 3278943388, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943389, 3278943389, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943390, 3278943390, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943391, 3278943391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943392, 3278943392, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943393, 3278943393, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943394, 3278943394, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943395, 3278943395, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943396, 3278943396, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943397, 3278943399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943400, 3278943400, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943401, 3278943401, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943402, 3278943402, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943403, 3278943403, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943404, 3278943404, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943405, 3278943405, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943406, 3278943406, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943407, 3278943407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943408, 3278943408, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943409, 3278943409, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943410, 3278943410, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943411, 3278943411, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943412, 3278943412, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943413, 3278943413, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943414, 3278943414, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943415, 3278943415, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943416, 3278943416, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943417, 3278943417, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943418, 3278943418, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943419, 3278943419, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943420, 3278943420, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943421, 3278943422, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943423, 3278943423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943424, 3278943424, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943425, 3278943425, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943426, 3278943426, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943427, 3278943427, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943428, 3278943428, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943429, 3278943430, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943431, 3278943431, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943432, 3278943432, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943433, 3278943433, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943434, 3278943435, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943436, 3278943436, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943437, 3278943437, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943438, 3278943438, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943439, 3278943439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943440, 3278943440, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943441, 3278943441, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943442, 3278943442, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943443, 3278943443, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943444, 3278943444, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943445, 3278943445, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943446, 3278943446, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943447, 3278943447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943448, 3278943448, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943449, 3278943449, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943450, 3278943450, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943451, 3278943451, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943452, 3278943452, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943453, 3278943453, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943454, 3278943455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943456, 3278943456, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943457, 3278943457, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943458, 3278943459, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943460, 3278943460, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943461, 3278943462, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943463, 3278943463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943464, 3278943464, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943465, 3278943465, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943466, 3278943466, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943467, 3278943467, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943468, 3278943468, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943469, 3278943469, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943470, 3278943471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943472, 3278943472, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943473, 3278943473, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943474, 3278943474, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943475, 3278943477, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943478, 3278943478, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943479, 3278943481, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943482, 3278943482, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943483, 3278943489, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943490, 3278943490, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943491, 3278943491, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943492, 3278943492, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943493, 3278943494, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943495, 3278943495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943496, 3278943496, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943497, 3278943497, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943498, 3278943499, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943500, 3278943500, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943501, 3278943501, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943502, 3278943504, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943505, 3278943505, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943506, 3278943506, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943507, 3278943507, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943508, 3278943509, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943510, 3278943510, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943511, 3278943512, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943513, 3278943513, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943514, 3278943514, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943515, 3278943515, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943516, 3278943517, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943518, 3278943518, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943519, 3278943519, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943520, 3278943520, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943521, 3278943521, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943522, 3278943523, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943524, 3278943524, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943525, 3278943525, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943526, 3278943526, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943527, 3278943527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943528, 3278943528, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943529, 3278943530, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943531, 3278943531, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943532, 3278943532, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943533, 3278943533, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943534, 3278943534, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943535, 3278943535, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943536, 3278943537, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943538, 3278943538, N'RE', N'Reunion') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943539, 3278943539, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943540, 3278943540, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943541, 3278943542, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943543, 3278943543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943544, 3278943545, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943546, 3278943546, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943547, 3278943547, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943548, 3278943548, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943549, 3278943549, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943550, 3278943550, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943551, 3278943551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943552, 3278943552, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943553, 3278943553, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943554, 3278943554, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943555, 3278943555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943556, 3278943556, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943557, 3278943557, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943558, 3278943558, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943559, 3278943559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943560, 3278943560, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943561, 3278943561, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943562, 3278943564, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943565, 3278943565, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943566, 3278943566, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943567, 3278943567, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943568, 3278943568, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943569, 3278943569, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943570, 3278943570, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943571, 3278943571, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943572, 3278943572, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943573, 3278943573, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943574, 3278943574, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943575, 3278943575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943576, 3278943576, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943577, 3278943577, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943578, 3278943578, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943579, 3278943579, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943580, 3278943580, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943581, 3278943581, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943582, 3278943582, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943583, 3278943583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943584, 3278943585, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943586, 3278943586, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943587, 3278943587, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943588, 3278943588, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943589, 3278943589, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943590, 3278943590, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943591, 3278943591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943592, 3278943592, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943593, 3278943593, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943594, 3278943594, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943595, 3278943595, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943596, 3278943596, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943597, 3278943598, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943599, 3278943599, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943600, 3278943601, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943602, 3278943602, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943603, 3278943603, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943604, 3278943604, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943605, 3278943605, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943606, 3278943606, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943607, 3278943607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943608, 3278943608, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943609, 3278943609, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943610, 3278943610, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943611, 3278943611, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943612, 3278943613, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943614, 3278943614, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943615, 3278943615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943616, 3278943616, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943617, 3278943617, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943618, 3278943619, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943620, 3278943620, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943621, 3278943621, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943622, 3278943622, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943623, 3278943623, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943624, 3278943624, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943625, 3278943625, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943626, 3278943628, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943629, 3278943630, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943631, 3278943631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943632, 3278943632, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943633, 3278943633, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943634, 3278943634, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943635, 3278943635, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943636, 3278943636, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943637, 3278943638, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943639, 3278943639, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943640, 3278943641, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943642, 3278943642, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943643, 3278943643, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943644, 3278943645, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943646, 3278943646, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943647, 3278943647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943648, 3278943648, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943649, 3278943649, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943650, 3278943650, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943651, 3278943651, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943652, 3278943653, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943654, 3278943654, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943655, 3278943655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943656, 3278943656, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943657, 3278943657, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943658, 3278943658, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943659, 3278943659, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943660, 3278943660, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943661, 3278943661, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943662, 3278943662, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943663, 3278943663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943664, 3278943666, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943667, 3278943667, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943668, 3278943669, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943670, 3278943670, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943671, 3278943672, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943673, 3278943673, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943674, 3278943675, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943676, 3278943676, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943677, 3278943677, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943678, 3278943678, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943679, 3278943679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943680, 3278943680, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943681, 3278943681, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943682, 3278943682, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943683, 3278943683, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943684, 3278943684, N'AD', N'Andorra') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943685, 3278943686, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943687, 3278943687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943688, 3278943689, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943690, 3278943690, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943691, 3278943692, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943693, 3278943693, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943694, 3278943694, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943695, 3278943695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943696, 3278943696, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943697, 3278943697, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943698, 3278943698, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943699, 3278943699, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943700, 3278943700, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943701, 3278943701, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943702, 3278943702, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943703, 3278943703, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943704, 3278943705, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943706, 3278943706, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943707, 3278943707, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943708, 3278943710, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943711, 3278943711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943712, 3278943713, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943714, 3278943714, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943715, 3278943715, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943716, 3278943716, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943717, 3278943719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943720, 3278943720, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943721, 3278943726, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943727, 3278943727, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943728, 3278943729, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943730, 3278943730, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943731, 3278943731, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943732, 3278943733, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943734, 3278943734, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943735, 3278943735, N'AD', N'Andorra') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943736, 3278943736, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943737, 3278943737, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943738, 3278943740, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943741, 3278943741, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943742, 3278943742, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943743, 3278943745, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943746, 3278943746, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943747, 3278943747, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943748, 3278943749, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943750, 3278943751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943752, 3278943752, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943753, 3278943753, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943754, 3278943754, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943755, 3278943755, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943756, 3278943756, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943757, 3278943757, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943758, 3278943758, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943759, 3278943759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943760, 3278943761, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943762, 3278943762, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943763, 3278943763, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943764, 3278943764, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943765, 3278943765, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943766, 3278943766, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943767, 3278943767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943768, 3278943768, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943769, 3278943769, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943770, 3278943770, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943771, 3278943771, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943772, 3278943772, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943773, 3278943773, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943774, 3278943774, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943775, 3278943776, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943777, 3278943777, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943778, 3278943778, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943779, 3278943780, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943781, 3278943781, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943782, 3278943782, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943783, 3278943786, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943787, 3278943787, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943788, 3278943788, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943789, 3278943789, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943790, 3278943790, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943791, 3278943791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943792, 3278943792, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943793, 3278943793, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943794, 3278943794, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943795, 3278943796, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943797, 3278943797, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943798, 3278943798, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943799, 3278943799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943800, 3278943800, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943801, 3278943801, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943802, 3278943802, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943803, 3278943803, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943804, 3278943804, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943805, 3278943805, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943806, 3278943806, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943807, 3278943807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943808, 3278943808, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943809, 3278943809, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943810, 3278943810, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943811, 3278943811, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943812, 3278943812, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943813, 3278943813, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943814, 3278943814, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943815, 3278943815, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943816, 3278943816, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943817, 3278943817, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943818, 3278943818, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943819, 3278943819, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943820, 3278943820, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943821, 3278943821, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943822, 3278943822, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943823, 3278943823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943824, 3278943824, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943825, 3278943826, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943827, 3278943827, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943828, 3278943828, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943829, 3278943829, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943830, 3278943830, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943831, 3278943831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943832, 3278943832, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943833, 3278943833, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943834, 3278943835, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943836, 3278943836, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943837, 3278943837, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943838, 3278943838, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943839, 3278943839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943840, 3278943845, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943846, 3278943846, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943847, 3278943847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943848, 3278943848, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943849, 3278943849, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943850, 3278943851, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943852, 3278943852, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943853, 3278943853, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943854, 3278943854, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943855, 3278943855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943856, 3278943856, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943857, 3278943857, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943858, 3278943858, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943859, 3278943859, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943860, 3278943860, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943861, 3278943862, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943863, 3278943863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943864, 3278943864, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943865, 3278943865, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943866, 3278943866, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943867, 3278943867, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943868, 3278943868, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943869, 3278943869, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943870, 3278943870, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943871, 3278943871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943872, 3278943872, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943873, 3278943873, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943874, 3278943874, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943875, 3278943875, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943876, 3278943881, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943882, 3278943882, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943883, 3278943883, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943884, 3278943884, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943885, 3278943885, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943886, 3278943888, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943889, 3278943889, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943890, 3278943890, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943891, 3278943891, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943892, 3278943892, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943893, 3278943893, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943894, 3278943894, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943895, 3278943895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943896, 3278943896, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943897, 3278943897, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943898, 3278943898, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943899, 3278943899, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943900, 3278943900, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943901, 3278943901, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943902, 3278943902, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943903, 3278943903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943904, 3278943904, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943905, 3278943905, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943906, 3278943907, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943908, 3278943908, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943909, 3278943909, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943910, 3278943910, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943911, 3278943911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943912, 3278943913, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943914, 3278943914, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943915, 3278943915, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943916, 3278943916, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943917, 3278943917, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943918, 3278943918, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943919, 3278943920, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943921, 3278943921, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943922, 3278943922, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943923, 3278943923, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943924, 3278943924, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943925, 3278943926, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943927, 3278943927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943928, 3278943928, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943929, 3278943929, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943930, 3278943930, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943931, 3278943932, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943933, 3278943933, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943934, 3278943934, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943935, 3278943935, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943936, 3278943939, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943940, 3278943940, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943941, 3278943941, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943942, 3278943942, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943943, 3278943943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943944, 3278943944, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943945, 3278943945, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943946, 3278943946, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943947, 3278943947, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943948, 3278943948, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943949, 3278943949, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943950, 3278943950, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943951, 3278943951, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943952, 3278943953, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943954, 3278943954, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943955, 3278943956, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943957, 3278943957, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943958, 3278943958, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943959, 3278943959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943960, 3278943960, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943961, 3278943964, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943965, 3278943965, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943966, 3278943967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943968, 3278943968, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943969, 3278943969, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943970, 3278943970, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943971, 3278943971, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943972, 3278943972, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943973, 3278943973, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943974, 3278943974, N'GR', N'Greece') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943975, 3278943976, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943977, 3278943977, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943978, 3278943978, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943979, 3278943979, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943980, 3278943980, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943981, 3278943981, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943982, 3278943982, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943983, 3278943983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943984, 3278943984, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943985, 3278943985, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943986, 3278943987, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943988, 3278943988, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943989, 3278943990, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943991, 3278943991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943992, 3278943992, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943993, 3278943994, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943995, 3278943995, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943996, 3278943997, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943998, 3278943998, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278943999, 3278944001, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944002, 3278944002, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944003, 3278944003, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944004, 3278944004, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944005, 3278944006, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944007, 3278944007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944008, 3278944008, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944009, 3278944009, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944010, 3278944010, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944011, 3278944012, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944013, 3278944013, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944014, 3278944014, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944015, 3278944015, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944016, 3278944016, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944017, 3278944017, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944018, 3278944018, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944019, 3278944019, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944020, 3278944020, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944021, 3278944021, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944022, 3278944022, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944023, 3278944023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944024, 3278944025, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944026, 3278944027, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944028, 3278944028, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944029, 3278944029, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944030, 3278944030, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944031, 3278944031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944032, 3278944033, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944034, 3278944034, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944035, 3278944035, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944036, 3278944036, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944037, 3278944037, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944038, 3278944038, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944039, 3278944039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944040, 3278944040, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944041, 3278944041, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944042, 3278944042, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944043, 3278944043, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944044, 3278944045, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944046, 3278944046, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944047, 3278944047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944048, 3278944048, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944049, 3278944049, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944050, 3278944050, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944051, 3278944051, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944052, 3278944052, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944053, 3278944053, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944054, 3278944054, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944055, 3278944055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944056, 3278944058, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944059, 3278944059, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944060, 3278944060, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944061, 3278944061, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944062, 3278944062, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944063, 3278944063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944064, 3278944064, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944065, 3278944065, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944066, 3278944066, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944067, 3278944067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944068, 3278944068, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944069, 3278944069, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944070, 3278944070, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944071, 3278944071, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944072, 3278944072, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944073, 3278944073, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944074, 3278944075, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944076, 3278944076, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944077, 3278944077, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944078, 3278944078, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944079, 3278944079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944080, 3278944080, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944081, 3278944081, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944082, 3278944082, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944083, 3278944084, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944085, 3278944085, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944086, 3278944086, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944087, 3278944087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944088, 3278944088, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944089, 3278944089, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944090, 3278944090, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944091, 3278944091, N'MA', N'Morocco') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944092, 3278944092, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944093, 3278944094, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944095, 3278944095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944096, 3278944096, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944097, 3278944097, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944098, 3278944098, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944099, 3278944099, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944100, 3278944102, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944103, 3278944104, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944105, 3278944105, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944106, 3278944106, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944107, 3278944108, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944109, 3278944109, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944110, 3278944111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944112, 3278944112, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944113, 3278944113, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944114, 3278944114, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944115, 3278944116, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944117, 3278944118, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944119, 3278944119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944120, 3278944121, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944122, 3278944122, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944123, 3278944123, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944124, 3278944124, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944125, 3278944125, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944126, 3278944126, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944127, 3278944127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944128, 3278944128, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944129, 3278944129, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944130, 3278944130, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944131, 3278944131, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944132, 3278944132, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944133, 3278944133, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944134, 3278944134, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944135, 3278944135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944136, 3278944137, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944138, 3278944138, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944139, 3278944139, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944140, 3278944140, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944141, 3278944141, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944142, 3278944142, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944143, 3278944143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944144, 3278944144, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944145, 3278944145, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944146, 3278944147, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944148, 3278944148, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944149, 3278944149, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944150, 3278944150, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944151, 3278944151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944152, 3278944152, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944153, 3278944156, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944157, 3278944157, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944158, 3278944158, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944159, 3278944159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944160, 3278944160, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944161, 3278944161, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944162, 3278944162, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944163, 3278944163, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944164, 3278944164, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944165, 3278944166, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944167, 3278944167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944168, 3278944168, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944169, 3278944169, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944170, 3278944171, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944172, 3278944172, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944173, 3278944173, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944174, 3278944174, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944175, 3278944175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944176, 3278944176, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944177, 3278944177, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944178, 3278944179, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944180, 3278944180, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944181, 3278944181, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944182, 3278944182, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944183, 3278944184, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944185, 3278944185, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944186, 3278944192, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944193, 3278944193, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944194, 3278944194, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944195, 3278944195, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944196, 3278944197, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944198, 3278944198, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944199, 3278944199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944200, 3278944200, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944201, 3278944201, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944202, 3278944202, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944203, 3278944203, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944204, 3278944207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944208, 3278944208, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944209, 3278944209, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944210, 3278944210, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944211, 3278944211, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944212, 3278944212, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944213, 3278944213, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944214, 3278944214, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944215, 3278944215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944216, 3278944216, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944217, 3278944217, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944218, 3278944218, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944219, 3278944219, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944220, 3278944220, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944221, 3278944221, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944222, 3278944222, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944223, 3278944224, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944225, 3278944225, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944226, 3278944226, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944227, 3278944227, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944228, 3278944230, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944231, 3278944231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944232, 3278944232, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944233, 3278944233, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944234, 3278944234, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944235, 3278944235, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944236, 3278944236, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944237, 3278944238, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944239, 3278944239, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944240, 3278944240, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944241, 3278944241, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944242, 3278944242, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944243, 3278944243, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944244, 3278944244, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944245, 3278944245, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944246, 3278944246, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944247, 3278944247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944248, 3278944248, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944249, 3278944249, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944250, 3278944250, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944251, 3278944251, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944252, 3278944252, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944253, 3278944254, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944255, 3278944256, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944257, 3278944272, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944273, 3278944273, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944274, 3278944274, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944275, 3278944275, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944276, 3278944277, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944278, 3278944278, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944279, 3278944279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944280, 3278944284, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944285, 3278944285, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944286, 3278944286, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944287, 3278944288, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944289, 3278944293, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944294, 3278944294, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944295, 3278944346, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944347, 3278944347, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944348, 3278944360, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944361, 3278944361, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944362, 3278944365, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944366, 3278944366, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944367, 3278944367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944368, 3278944368, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944369, 3278944373, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944374, 3278944374, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944375, 3278944379, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944380, 3278944380, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944381, 3278944385, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944386, 3278944386, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944387, 3278944388, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944389, 3278944389, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944390, 3278944390, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944391, 3278944391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944392, 3278944395, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944396, 3278944396, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944397, 3278944399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944400, 3278944400, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944401, 3278944401, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944402, 3278944402, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944403, 3278944412, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944413, 3278944413, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944414, 3278944418, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944419, 3278944419, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944420, 3278944420, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944421, 3278944421, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944422, 3278944432, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944433, 3278944433, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944434, 3278944444, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944445, 3278944449, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944450, 3278944451, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944452, 3278944460, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944461, 3278944461, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944462, 3278944470, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944471, 3278944471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944472, 3278944513, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944514, 3278944517, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944518, 3278944518, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944519, 3278944520, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944521, 3278944521, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944522, 3278944522, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944523, 3278944523, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944524, 3278944524, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944525, 3278944525, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944526, 3278944526, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944527, 3278944527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944528, 3278944528, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944529, 3278944529, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944530, 3278944537, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944538, 3278944538, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944539, 3278944544, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944545, 3278944545, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944546, 3278944555, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944556, 3278944556, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944557, 3278944559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944560, 3278944560, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944561, 3278944561, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944562, 3278944562, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944563, 3278944563, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944564, 3278944564, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944565, 3278944569, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944570, 3278944570, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944571, 3278944572, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944573, 3278944573, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944574, 3278944578, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944579, 3278944579, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944580, 3278944580, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944581, 3278944581, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944582, 3278944583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944584, 3278944588, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944589, 3278944589, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944590, 3278944599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944600, 3278944600, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944601, 3278944606, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944607, 3278944608, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944609, 3278944611, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944612, 3278944612, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944613, 3278944633, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944634, 3278944634, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944635, 3278944638, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944639, 3278944640, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944641, 3278944642, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944643, 3278944643, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944644, 3278944650, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944651, 3278944651, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944652, 3278944654, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944655, 3278944657, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944658, 3278944659, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944660, 3278944660, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944661, 3278944661, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944662, 3278944663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944664, 3278944665, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944666, 3278944667, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944668, 3278944668, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944669, 3278944670, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944671, 3278944671, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944672, 3278944672, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944673, 3278944673, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944674, 3278944674, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944675, 3278944677, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944678, 3278944678, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944679, 3278944679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944680, 3278944680, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944681, 3278944683, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944684, 3278944686, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944687, 3278944687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944688, 3278944688, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944689, 3278944693, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944694, 3278944695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944696, 3278944696, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944697, 3278944697, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944698, 3278944706, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944707, 3278944707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944708, 3278944708, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944709, 3278944709, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944710, 3278944710, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944711, 3278944712, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944713, 3278944713, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944714, 3278944714, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944715, 3278944715, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944716, 3278944716, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944717, 3278944718, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944719, 3278944719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944720, 3278944720, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944721, 3278944721, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944722, 3278944727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944728, 3278944728, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944729, 3278944730, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944731, 3278944731, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944732, 3278944734, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944735, 3278944735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944736, 3278944736, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944737, 3278944739, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944740, 3278944740, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944741, 3278944741, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944742, 3278944743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944744, 3278944745, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944746, 3278944749, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944750, 3278944750, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944751, 3278944751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944752, 3278944752, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944753, 3278944753, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944754, 3278944754, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944755, 3278944755, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944756, 3278944758, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944759, 3278944760, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944761, 3278944761, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944762, 3278944763, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944764, 3278944764, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944765, 3278944765, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944766, 3278944767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944768, 3278944771, N'DO', N'Dominican Republic') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944772, 3278944819, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944820, 3278944823, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944824, 3278944827, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944828, 3278944851, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944852, 3278944855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944856, 3278944863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944864, 3278944867, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944868, 3278944871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944872, 3278944875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944876, 3278944887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944888, 3278944891, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944892, 3278944903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944904, 3278944907, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944908, 3278944919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944920, 3278944923, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944924, 3278944935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944936, 3278944939, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944940, 3278944947, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944948, 3278944951, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944952, 3278944963, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944964, 3278944971, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944972, 3278944975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944976, 3278944995, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278944996, 3278944999, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945000, 3278945007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945008, 3278945011, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945012, 3278945015, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945016, 3278945023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945024, 3278945027, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945028, 3278945031, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945032, 3278945087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945088, 3278945091, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945092, 3278945099, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945100, 3278945107, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945108, 3278945111, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945112, 3278945127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945128, 3278945131, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945132, 3278945135, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945136, 3278945151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945152, 3278945155, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945156, 3278945159, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945160, 3278945171, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945172, 3278945175, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945176, 3278945191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945192, 3278945199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945200, 3278945203, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945204, 3278945207, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945208, 3278945227, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945228, 3278945235, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945236, 3278945247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945248, 3278945255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945256, 3278945267, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945268, 3278945271, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945272, 3278945275, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945276, 3278945279, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945280, 3278945283, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945284, 3278945299, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945300, 3278945303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945304, 3278945307, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945308, 3278945311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945312, 3278945319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945320, 3278945323, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945324, 3278945327, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945328, 3278945331, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945332, 3278945335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945336, 3278945339, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945340, 3278945343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945344, 3278945347, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945348, 3278945363, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945364, 3278945367, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945368, 3278945395, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945396, 3278945399, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945400, 3278945403, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945404, 3278945427, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945428, 3278945431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945432, 3278945435, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945436, 3278945439, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945440, 3278945451, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945452, 3278945455, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945456, 3278945459, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945460, 3278945463, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945464, 3278945479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945480, 3278945483, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945484, 3278945491, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945492, 3278945503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945504, 3278945507, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945508, 3278945515, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945516, 3278945519, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945520, 3278945523, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945524, 3278945527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945528, 3278945531, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945532, 3278945535, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945536, 3278945539, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945540, 3278945579, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945580, 3278945583, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945584, 3278945587, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945588, 3278945591, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945592, 3278945659, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945660, 3278945663, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945664, 3278945667, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945668, 3278945671, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945672, 3278945675, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945676, 3278945687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945688, 3278945691, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945692, 3278945699, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945700, 3278945703, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945704, 3278945715, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945716, 3278945719, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945720, 3278945723, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945724, 3278945727, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945728, 3278945743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945744, 3278945747, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945748, 3278945763, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945764, 3278945767, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945768, 3278945771, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945772, 3278945779, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945780, 3278945783, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945784, 3278945791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945792, 3278945794, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945795, 3278945795, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945796, 3278945796, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945797, 3278945797, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945798, 3278945798, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945799, 3278945799, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945800, 3278945800, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945801, 3278945801, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945802, 3278945802, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945803, 3278945803, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945804, 3278945804, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945805, 3278945805, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945806, 3278945806, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945807, 3278945807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945808, 3278945808, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945809, 3278945809, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945810, 3278945810, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945811, 3278945815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945816, 3278945816, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945817, 3278945821, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945822, 3278945822, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945823, 3278945823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945824, 3278945826, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945827, 3278945827, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945828, 3278945828, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945829, 3278945829, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945830, 3278945831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945832, 3278945832, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945833, 3278945833, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945834, 3278945834, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945835, 3278945835, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945836, 3278945838, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945839, 3278945839, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945840, 3278945840, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945841, 3278945841, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945842, 3278945844, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945845, 3278945845, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945846, 3278945846, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945847, 3278945847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945848, 3278945848, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945849, 3278945849, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945850, 3278945850, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945851, 3278945852, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945853, 3278945853, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945854, 3278945854, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945855, 3278945855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945856, 3278945856, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945857, 3278945858, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945859, 3278945859, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945860, 3278945860, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945861, 3278945861, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945862, 3278945862, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945863, 3278945863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945864, 3278945864, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945865, 3278945866, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945867, 3278945867, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945868, 3278945868, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945869, 3278945870, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945871, 3278945871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945872, 3278945872, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945873, 3278945873, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945874, 3278945874, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945875, 3278945875, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945876, 3278945876, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945877, 3278945877, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945878, 3278945879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945880, 3278945880, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945881, 3278945881, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945882, 3278945886, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945887, 3278945888, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945889, 3278945890, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945891, 3278945891, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945892, 3278945892, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945893, 3278945893, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945894, 3278945894, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945895, 3278945895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945896, 3278945896, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945897, 3278945897, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945898, 3278945898, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945899, 3278945899, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945900, 3278945900, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945901, 3278945904, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945905, 3278945905, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945906, 3278945906, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945907, 3278945907, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945908, 3278945908, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945909, 3278945909, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945910, 3278945910, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945911, 3278945911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945912, 3278945917, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945918, 3278945918, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278945919, 3278946049, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946050, 3278946059, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946060, 3278946060, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946061, 3278946061, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946062, 3278946062, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946063, 3278946067, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946068, 3278946068, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946069, 3278946084, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946085, 3278946085, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946086, 3278946091, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946092, 3278946092, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946093, 3278946108, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946109, 3278946109, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946110, 3278946166, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946167, 3278946167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946168, 3278946190, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946191, 3278946191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946192, 3278946208, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946209, 3278946213, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946214, 3278946214, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946215, 3278946221, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946222, 3278946222, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946223, 3278946224, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946225, 3278946225, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946226, 3278946229, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946230, 3278946230, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946231, 3278946239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946240, 3278946263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946264, 3278946267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946268, 3278946271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946272, 3278946275, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946276, 3278946279, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946280, 3278946283, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946284, 3278946287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946288, 3278946291, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946292, 3278946299, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946300, 3278946303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278946304, 3278954495, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278954496, 3278962687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3278962688, 3279028223, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279028224, 3279028735, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279028736, 3279029247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279029248, 3279030271, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279030272, 3279030783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279030784, 3279031295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279031296, 3279031807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279031808, 3279032319, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279032320, 3279032831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279032832, 3279033343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279033344, 3279033855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279033856, 3279034367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279034368, 3279035391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279035392, 3279035903, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279036416, 3279044607, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279044608, 3279050455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279050456, 3279050463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279050464, 3279052799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279052800, 3279053311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279053312, 3279053823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279053824, 3279054335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279054336, 3279054847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279054848, 3279055359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279055360, 3279055871, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279055872, 3279056383, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279056384, 3279056895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279056896, 3279057407, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279057408, 3279057919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279057920, 3279058431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279058432, 3279058943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279058944, 3279059455, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279059456, 3279059967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279059968, 3279060479, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279060480, 3279060991, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279060992, 3279069183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279069184, 3279077375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279077376, 3279078399, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279078400, 3279078655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279078656, 3279078911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279078912, 3279079935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279079936, 3279080191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279080192, 3279081215, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279081216, 3279081231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279081232, 3279083583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279083584, 3279083599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279083600, 3279083807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279083808, 3279083839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279083840, 3279084543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279084544, 3279085567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279085568, 3279093759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279093760, 3279103103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279103104, 3279103135, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279103136, 3279119295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279119296, 3279119327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279119328, 3279159295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279159296, 3279169279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279169280, 3279169535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279169536, 3279290367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279290368, 3279291391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279291392, 3279291647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279291648, 3279294463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279294464, 3279294719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279294720, 3279294975, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279294976, 3279295231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279295232, 3279295487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279295488, 3279295743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279295744, 3279295999, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279296000, 3279296511, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279296512, 3279297279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279297280, 3279297535, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279297536, 3279298047, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279298048, 3279298559, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279298560, 3279305471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279305472, 3279305487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279305488, 3279305503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279305504, 3279305535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279305536, 3279305631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279305632, 3279305663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279305664, 3279305727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279305728, 3279306751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279306752, 3279310847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279310848, 3279311871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279311872, 3279312639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279312640, 3279313415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279313416, 3279313423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279313424, 3279313919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279313920, 3279314943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279314944, 3279315711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279315712, 3279315967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279315968, 3279316223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279316224, 3279316479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279316480, 3279317759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279317760, 3279317887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279317888, 3279317951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279317952, 3279317967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279317968, 3279317983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279317984, 3279318015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318016, 3279318271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318272, 3279318527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318528, 3279318559, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318560, 3279318655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318656, 3279318687, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318688, 3279318719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318720, 3279318751, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318752, 3279318783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279318784, 3279319039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279319040, 3279320063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279320064, 3279321087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279321088, 3279322623, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279322624, 3279322663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279322664, 3279322671, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279322672, 3279322687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279322688, 3279322879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279322880, 3279322975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279322976, 3279323071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279323072, 3279330079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279330080, 3279330111, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279330112, 3279330815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279330816, 3279331071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279331072, 3279335295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279335296, 3279335423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279335424, 3279339519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279339520, 3279340031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279340032, 3279340543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279340544, 3279340671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279340672, 3279340799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279340800, 3279341055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279341056, 3279341567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279341568, 3279341823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279341824, 3279342079, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279342080, 3279342335, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279342336, 3279342591, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279342592, 3279342847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279342848, 3279343103, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279343104, 3279343359, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279343360, 3279343615, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279343616, 3279345151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279345152, 3279345663, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279345664, 3279346943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279346944, 3279347711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279347712, 3279348223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279348224, 3279348735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279348736, 3279348991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279348992, 3279349247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279349248, 3279349503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279349504, 3279349759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279349760, 3279351039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279351040, 3279351295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279351296, 3279351807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279351808, 3279352319, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279352320, 3279352575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279352576, 3279352831, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279352832, 3279352863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279352864, 3279353087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279353088, 3279353343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279353344, 3279354879, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279354880, 3279355647, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279355648, 3279355903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279355904, 3279356039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279356040, 3279356047, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279356048, 3279356063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279356064, 3279356127, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279356128, 3279356159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279356160, 3279356415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279356416, 3279356927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279356928, 3279357439, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279357440, 3279372287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279372288, 3279372799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279372800, 3279373055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279373056, 3279375359, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279375360, 3279380479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279380480, 3279380991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279380992, 3279382783, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279382784, 3279383807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279383808, 3279384063, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279384064, 3279385343, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279385344, 3279386367, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279386368, 3279386495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279386496, 3279387135, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279387136, 3279387391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279387392, 3279388671, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279388672, 3279388927, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279388928, 3279389183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389184, 3279389243, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389244, 3279389247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389248, 3279389255, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389256, 3279389259, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389260, 3279389275, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389276, 3279389279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389280, 3279389359, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389360, 3279389363, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389364, 3279389379, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389380, 3279389383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389384, 3279389439, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389440, 3279389711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389712, 3279389727, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279389728, 3279390015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279390016, 3279390143, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279390144, 3279393791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279393792, 3279394047, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279394048, 3279394303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279394304, 3279394559, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279394560, 3279396863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279396864, 3279402751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279402752, 3279403007, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279403008, 3279403263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279403264, 3279403903, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279403904, 3279404287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279404288, 3279404415, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279404416, 3279404799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279404800, 3279405055, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279405056, 3279406847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279406848, 3279407103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279407104, 3279407615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279407616, 3279407871, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279407872, 3279408127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279408128, 3279408383, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279408384, 3279409151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279409152, 3279409663, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279409664, 3279421439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279421440, 3279486975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279486976, 3279552511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279552512, 3279560703, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279560704, 3279568895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279568896, 3279577087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279577088, 3279585279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279585280, 3279585919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279585920, 3279586815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279586816, 3279587583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279587584, 3279588607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279588608, 3279588863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279588864, 3279589375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279589376, 3279590399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279590400, 3279592959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279592960, 3279593215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279593216, 3279593247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279593248, 3279593267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279593268, 3279593271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279593272, 3279593275, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279593276, 3279593407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279593408, 3279593440, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279593441, 3279595903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279595904, 3279595999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279596000, 3279596023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279596024, 3279596031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279596032, 3279598847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279598848, 3279599103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279599104, 3279600383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279600384, 3279600479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279600480, 3279600487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279600488, 3279600639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279600640, 3279601663, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279601664, 3279609855, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279609856, 3279618047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279618048, 3279683583, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279683584, 3279752959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279752960, 3279753215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279753216, 3279897583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279897584, 3279897591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279897592, 3279946751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279946752, 3279947775, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279947776, 3279948799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279948800, 3279949823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279949824, 3279950847, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279950848, 3279951871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279951872, 3279952895, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279952896, 3279953919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279953920, 3279955967, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279955968, 3279958015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279958016, 3279972351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279972352, 3279974399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279974400, 3279976447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279976448, 3279986687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279986688, 3279987199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279987200, 3279987711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279987712, 3279988223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279988224, 3279988735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279988736, 3279989247, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279989248, 3279989759, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279989760, 3279990271, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279990272, 3279990783, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279990784, 3279991295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279991296, 3279991807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279991808, 3279992319, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279992320, 3279992831, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279992832, 3279993855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279993856, 3279994367, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279994368, 3279994879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3279994880, 3280003071, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280003072, 3280003583, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280003584, 3280004095, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280004096, 3280004607, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280004608, 3280005119, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280005120, 3280005631, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280005632, 3280006143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280006144, 3280006655, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280006656, 3280007167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280007168, 3280007679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280007680, 3280008191, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280008192, 3280009215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280009216, 3280009727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280009728, 3280010239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280010240, 3280010751, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280010752, 3280011263, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011264, 3280011327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011328, 3280011391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011392, 3280011407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011408, 3280011415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011416, 3280011551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011552, 3280011567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011568, 3280011647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011648, 3280011775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011776, 3280011783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011784, 3280011791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011792, 3280011903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011904, 3280011951, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280011952, 3280014591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280014592, 3280015103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280015104, 3280015359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280015360, 3280015871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280015872, 3280016383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016384, 3280016447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016448, 3280016463, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016464, 3280016543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016544, 3280016559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016560, 3280016575, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016576, 3280016607, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016608, 3280016623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016624, 3280016959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016960, 3280016991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280016992, 3280017023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280017024, 3280017055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280017056, 3280017087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280017088, 3280017151, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280017152, 3280017919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280017920, 3280018431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280018432, 3280019455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280019456, 3280019711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280019712, 3280020479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280020480, 3280020735, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280020736, 3280020991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280020992, 3280021087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280021088, 3280021119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280021120, 3280021183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280021184, 3280021247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280021248, 3280021503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280021504, 3280021759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280021760, 3280021823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280021824, 3280022783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280022784, 3280023039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280023040, 3280023551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280023552, 3280024575, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280024576, 3280024831, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280024832, 3280027135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280027136, 3280027391, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280027392, 3280027647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280027648, 3280027903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280027904, 3280028159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280028160, 3280028415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280028416, 3280028671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280028672, 3280030207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280030208, 3280030463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280030464, 3280031743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280031744, 3280031999, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280032000, 3280032127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280032128, 3280032255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280032256, 3280035327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280035328, 3280035583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280035584, 3280036607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280036608, 3280036863, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280036864, 3280037887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280037888, 3280038399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280038400, 3280040959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280040960, 3280041215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280041216, 3280041471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280041472, 3280041727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280041728, 3280076799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280076800, 3280084991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280084992, 3280093183, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280093184, 3280109567, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280109568, 3280117759, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280117760, 3280125951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280125952, 3280142335, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280142336, 3280207871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280207872, 3280273407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280273408, 3280338943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280338944, 3280347135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280347136, 3280355327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280355328, 3280371711, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280371712, 3280379903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280379904, 3280392127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280392128, 3280392191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280392192, 3280396287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280396288, 3280404479, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280404480, 3280437247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280437248, 3280453631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280453632, 3280454655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280454656, 3280456703, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280456704, 3280457727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280457728, 3280458751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280458752, 3280459775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280459776, 3280460799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280460800, 3280462847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280462848, 3280463871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280463872, 3280466943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280466944, 3280467967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280467968, 3280468991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280468992, 3280470015, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280470016, 3280535551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280535552, 3280568319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280568320, 3280576511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280576512, 3280576767, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280576768, 3280577279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280577280, 3280577535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280577536, 3280577791, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280577792, 3280578047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280578048, 3280578303, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280578304, 3280578559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280578560, 3280578815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280578816, 3280579071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280579072, 3280579327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280579328, 3280579583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280579584, 3280579839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280579840, 3280580095, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280580096, 3280580351, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280580352, 3280580607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280580608, 3280580863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280580864, 3280581119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280581120, 3280581375, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280581376, 3280581631, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280581632, 3280581887, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280581888, 3280582143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280582144, 3280582399, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280582400, 3280582655, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280582656, 3280582911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280582912, 3280583167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280583168, 3280583423, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280583424, 3280583679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280583680, 3280583935, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280583936, 3280584191, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280584192, 3280584447, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280584448, 3280584703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280584704, 3280585215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280585216, 3280585727, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280585728, 3280586239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280586240, 3280586751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280586752, 3280587263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280587264, 3280587775, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280587776, 3280588287, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280588288, 3280588799, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280588800, 3280589311, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280589312, 3280590335, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280590336, 3280590847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280590848, 3280591359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280591360, 3280592383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280592384, 3280592895, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280592896, 3280593407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280593408, 3280593919, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280593920, 3280594431, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280594432, 3280594943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280594944, 3280595455, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280595456, 3280595967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280595968, 3280596479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280596480, 3280596991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280596992, 3280597503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280597504, 3280598015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280598016, 3280598527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280598528, 3280599039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280599040, 3280599551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280599552, 3280600063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280600064, 3280600575, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280600576, 3280601087, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280601088, 3280609279, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280609280, 3280617471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280617472, 3280625663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280625664, 3280633855, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280633856, 3280638207, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280638208, 3280638463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280638464, 3280642047, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280642048, 3280650239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280658432, 3280666623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280666624, 3280732159, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280732160, 3280764927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280764928, 3280765951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280765952, 3280766975, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280766976, 3280767999, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280768000, 3280769023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280769024, 3280770047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280770048, 3280771071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280771072, 3280772095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280772096, 3280773119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280773120, 3280774143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280774144, 3280775167, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280775168, 3280776191, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280776192, 3280777215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280777216, 3280778239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280778240, 3280779263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280779264, 3280780287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280780288, 3280781311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280781312, 3280782335, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280782336, 3280783359, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280783360, 3280784383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280784384, 3280787455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280787456, 3280788479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280788480, 3280789503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280789504, 3280790527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280790528, 3280791551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280791552, 3280792575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280792576, 3280793599, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280793600, 3280794623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280794624, 3280795647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280795648, 3280796671, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280796672, 3280797695, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280797696, 3280806403, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280806404, 3280806655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280806656, 3280810783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280810784, 3280810799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280810800, 3280820487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280820488, 3280820607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280820608, 3280844292, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280844293, 3280844295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280844296, 3280863231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280863232, 3280928767, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280928768, 3280994303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280994304, 3280994559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280994560, 3280994815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280994816, 3280995071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280995072, 3280995327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280995328, 3280995583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280995584, 3280995839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280995840, 3280996095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280996096, 3280996351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280996352, 3280996607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280996608, 3280996863, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280996864, 3280997119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280997120, 3280997375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280997376, 3280997631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280997632, 3280997887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280997888, 3280998399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280998400, 3280998655, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280998656, 3280999423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280999424, 3280999679, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280999680, 3280999935, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3280999936, 3281000447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281000448, 3281000703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281000704, 3281000959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281000960, 3281001215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281001216, 3281001471, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281001472, 3281001727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281001728, 3281001983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281001984, 3281002239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281002240, 3281002495, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281002496, 3281010687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281010688, 3281018879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281018880, 3281027071, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027072, 3281027079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027080, 3281027087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027088, 3281027127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027128, 3281027151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027152, 3281027199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027200, 3281027215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027216, 3281027279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027280, 3281027287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027288, 3281027303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027304, 3281027311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027312, 3281027319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027320, 3281027327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027328, 3281027583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027584, 3281027615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027616, 3281027631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027632, 3281027679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027680, 3281027695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027696, 3281027743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027744, 3281027775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027776, 3281027807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027808, 3281027839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027840, 3281027903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281027904, 3281027999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281028000, 3281028031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281028032, 3281028063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281028064, 3281028223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281028224, 3281028415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281028416, 3281028543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281028544, 3281028991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281028992, 3281029055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281029056, 3281030399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281030400, 3281035263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281035264, 3281043455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281043456, 3281059839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281059840, 3281074671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281074672, 3281074679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281074680, 3281093951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281093952, 3281093983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281093984, 3281103935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281103936, 3281103943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281103944, 3281110015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281110016, 3281110023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281110024, 3281113703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281113704, 3281113711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281113712, 3281119543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281119544, 3281119551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281119552, 3281125375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281125376, 3281133567, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281133568, 3281141759, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281141760, 3281147775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281147776, 3281147783, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281147784, 3281149951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281149952, 3281158143, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281158144, 3281166335, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281166336, 3281174527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281174528, 3281190911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281190912, 3281256447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281256448, 3281321983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281321984, 3281338367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281338368, 3281338623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281338624, 3281338879, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281338880, 3281339135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281339136, 3281339391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281339392, 3281339647, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281339648, 3281339903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281339904, 3281340159, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281340160, 3281340415, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281340416, 3281340927, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281340928, 3281341183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281341184, 3281341439, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281341440, 3281341695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281341696, 3281341951, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281341952, 3281342207, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281342208, 3281342463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281342464, 3281343231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281343232, 3281343487, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281343488, 3281343743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281343744, 3281343999, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281344000, 3281344255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281344256, 3281344511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281344512, 3281344767, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281344768, 3281345023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281345024, 3281345279, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281345280, 3281345535, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281345536, 3281345791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281345792, 3281346047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281346048, 3281346303, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281346304, 3281346559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281346560, 3281346815, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281346816, 3281347071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281347072, 3281347327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281347328, 3281347583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281347584, 3281347839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281347840, 3281348095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281348096, 3281348351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281348352, 3281348607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281348608, 3281349119, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281349120, 3281349375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281349376, 3281349631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281349632, 3281350143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281350144, 3281350655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281350656, 3281350911, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281350912, 3281351167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281351168, 3281351423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281351424, 3281351679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281351680, 3281351935, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281351936, 3281352191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281352192, 3281352447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281352448, 3281352703, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281352704, 3281352959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281352960, 3281353215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281353216, 3281353471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281353472, 3281353727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281353728, 3281353983, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281353984, 3281354239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281354240, 3281354751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281354752, 3281362767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281362768, 3281362783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281362784, 3281371135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281371136, 3281373183, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281373184, 3281375231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281375232, 3281377279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281377280, 3281379327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281379328, 3281383423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281383424, 3281385471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281385472, 3281387519, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281387520, 3281453055, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281453056, 3281470975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281470976, 3281471231, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281471232, 3281477119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281477120, 3281477375, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281477376, 3281480959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281480960, 3281481215, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281481216, 3281518591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281518592, 3281578431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281578432, 3281578447, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281578448, 3281599183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281599184, 3281599199, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281599200, 3281640959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281640960, 3281640983, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281640984, 3281641023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281641024, 3281641039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281641040, 3281641087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281641088, 3281641119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281641120, 3281649663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281649664, 3281699999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281700000, 3281700031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281700032, 3281703551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281703552, 3281703615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281703616, 3281706687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281706688, 3281706719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281706720, 3281710799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281710800, 3281710815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281710816, 3281711487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281711488, 3281711519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281711520, 3281712127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281712128, 3281712159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281712160, 3281712191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281712192, 3281712255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281712256, 3281712831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281712832, 3281712895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281712896, 3281715199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281715200, 3281780735, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281780736, 3281846271, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281846272, 3281911807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281911808, 3281919999, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281920000, 3281928191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281928192, 3281944575, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281944576, 3281960959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281960960, 3281969151, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281969152, 3281969407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281969408, 3281969919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281969920, 3281970175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281970176, 3281970431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281970432, 3281970687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281970688, 3281971199, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281971200, 3281971455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281971456, 3281971711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281971712, 3281971967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281971968, 3281972095, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281972096, 3281972479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281972480, 3281972735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281972736, 3281972991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281972992, 3281973119, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281973120, 3281973247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281973248, 3281973503, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281973504, 3281973759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281973760, 3281973887, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281973888, 3281974015, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281974016, 3281974143, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281974144, 3281974271, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281974272, 3281974527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281974528, 3281974783, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281974784, 3281974911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281974912, 3281975039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281975040, 3281975167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281975168, 3281976191, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976192, 3281976319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976320, 3281976575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976576, 3281976639, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976640, 3281976671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976672, 3281976719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976720, 3281976735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976736, 3281976767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976768, 3281976799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976800, 3281976823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976824, 3281976831, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281976832, 3281977087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281977088, 3281977343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3281977344, 3282042879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282042880, 3282083839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282083840, 3282085375, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282085376, 3282085887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282085888, 3282086399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282086400, 3282086911, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282086912, 3282087423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282087424, 3282087935, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282087936, 3282088447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282088448, 3282089471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282089472, 3282089983, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282089984, 3282090495, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282091008, 3282091519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282091520, 3282092031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282092032, 3282093055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282093056, 3282095103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282095104, 3282096127, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282096128, 3282097151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282097152, 3282098175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282098176, 3282099199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282099200, 3282100223, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282100224, 3282101247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282101248, 3282102271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282102272, 3282103295, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282103296, 3282104319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282104320, 3282105343, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282105344, 3282106367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282106368, 3282107391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282107392, 3282108415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282108416, 3282149455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282149456, 3282149471, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282149472, 3282149599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282149600, 3282149631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282149632, 3282173951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282173952, 3282182143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282182144, 3282190335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282190336, 3282198527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282198528, 3282206719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282206720, 3282223103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282223104, 3282231295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282231296, 3282239487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282239488, 3282242223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282242224, 3282242227, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282242228, 3282284543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282284544, 3282284559, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282284560, 3282284579, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282284580, 3282284591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282284592, 3282284671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282284672, 3282284703, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282284704, 3282286847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282286848, 3282287103, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282287104, 3282287359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282287360, 3282287615, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282287616, 3282305023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282305024, 3282370559, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282370560, 3282388175, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282388176, 3282388191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282388192, 3282390015, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282390016, 3282390271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282390272, 3282416383, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282416384, 3282416511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282416512, 3282429279, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282429280, 3282429311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282429312, 3282429343, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282429344, 3282436095, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282436096, 3282444159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282444160, 3282444223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282444224, 3282449023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282449024, 3282449151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282449152, 3282452479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282452480, 3282452735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282452736, 3282456023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282456024, 3282456031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282456032, 3282461439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282461440, 3282461695, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282461696, 3282464767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282464768, 3282465023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282465024, 3282465279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282465280, 3282465535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282465536, 3282466047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282466048, 3282466111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282466112, 3282466643, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282466644, 3282466655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282466656, 3282466687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282466688, 3282466727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282466728, 3282466815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282466816, 3282467071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282467072, 3282467327, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282467328, 3282467359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282467360, 3282477055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282477056, 3282485247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282485248, 3282493439, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282493440, 3282501631, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282501632, 3282534399, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282534400, 3282550783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282550784, 3282554879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282554880, 3282558975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282558976, 3282563071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282563072, 3282567167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282567168, 3282632703, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282632704, 3282698239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282698240, 3282706431, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282706432, 3282714623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282714624, 3282722815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282722816, 3282731007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282731008, 3282739199, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282739200, 3282739455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282739456, 3282739711, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282739712, 3282739967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282739968, 3282740223, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282740224, 3282740479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282740480, 3282740735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282740736, 3282740991, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282740992, 3282741247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282741248, 3282741503, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282741504, 3282741759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282741760, 3282742015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282742016, 3282742527, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282742528, 3282742783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282742784, 3282743039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282743040, 3282743295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282743296, 3282743551, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282743552, 3282743807, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282743808, 3282744063, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282744064, 3282744319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282744320, 3282744575, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282744576, 3282745087, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282745088, 3282745343, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282745344, 3282745599, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282745600, 3282746111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282746112, 3282746367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282746368, 3282746623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282746624, 3282746879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282746880, 3282747135, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282747136, 3282747391, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282747392, 3282763775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282763776, 3282772991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282772992, 3282773119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282773120, 3282773663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282773664, 3282773679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282773680, 3282773759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282773760, 3282774015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282774016, 3282779903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282779904, 3282779911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282779912, 3282805727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282805728, 3282805759, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282805760, 3282844855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282844856, 3282844863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282844864, 3282952191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282952192, 3282960383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3282960384, 3283091455, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283091456, 3283156991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283156992, 3283158215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283158216, 3283158219, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283158220, 3283160171, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283160172, 3283160175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283160176, 3283162063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283162064, 3283162071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283162072, 3283162727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283162728, 3283162735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283162736, 3283173375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283173376, 3283174399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283174400, 3283176447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283176448, 3283177471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283177472, 3283178495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283178496, 3283179519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283179520, 3283180543, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283180544, 3283181567, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283181568, 3283182591, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283182592, 3283183615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283183616, 3283184639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283184640, 3283185663, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283185664, 3283187711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283187712, 3283188735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283188736, 3283189759, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283189760, 3283206143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283206144, 3283206655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283206656, 3283207167, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283207168, 3283207679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283207680, 3283208191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283208192, 3283208703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283208704, 3283209215, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283209216, 3283209727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283209728, 3283210239, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283210240, 3283210751, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283210752, 3283211263, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283211264, 3283211775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283211776, 3283212287, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283212288, 3283212799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283212800, 3283213311, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283213312, 3283213823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283213824, 3283214335, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283214336, 3283214847, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283214848, 3283215359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283215360, 3283215871, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283215872, 3283216383, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283216384, 3283216895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283216896, 3283217407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283217408, 3283218943, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283218944, 3283219455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283219456, 3283219967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283219968, 3283220479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283220480, 3283220991, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283220992, 3283221503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283221504, 3283222015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283222016, 3283230719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283230720, 3283238911, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283238912, 3283247103, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283247104, 3283247615, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283247616, 3283248127, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283248128, 3283248639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283248640, 3283249151, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283249152, 3283249663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283249664, 3283250175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283250176, 3283250687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283250688, 3283251199, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283251200, 3283251711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283251712, 3283252223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283252224, 3283252735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283252736, 3283253247, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283253248, 3283255295, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283255296, 3283263487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283263488, 3283271679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283271680, 3283279871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283279872, 3283288063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283288064, 3283288575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283288576, 3283288579, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283288580, 3283321087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283321088, 3283321119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283321120, 3283321167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283321168, 3283321175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283321176, 3283355735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283355736, 3283355743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283355744, 3283419135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283419136, 3283484671, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283484672, 3283484927, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283484928, 3283485183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283485184, 3283485439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283485440, 3283485695, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283485696, 3283485951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283485952, 3283486207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283486208, 3283486463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283486464, 3283486719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283486720, 3283486975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283486976, 3283487231, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283487232, 3283487487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283487488, 3283487743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283487744, 3283488255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283488256, 3283488511, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283488512, 3283488767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283488768, 3283489279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283489280, 3283489535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283489536, 3283490047, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283490048, 3283490559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283490560, 3283490815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283490816, 3283491071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283491072, 3283491327, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283491328, 3283491839, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283491840, 3283492095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283492096, 3283492351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283492352, 3283492607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283492608, 3283492863, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283501056, 3283509247, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283509248, 3283513375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283513376, 3283513407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283513408, 3283513415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283513416, 3283513447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283513448, 3283514095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283514096, 3283514111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283514112, 3283514495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283514496, 3283514527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283514528, 3283514547, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283514548, 3283514551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283514552, 3283516671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283516672, 3283516735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283516736, 3283516863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283516864, 3283516991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283516992, 3283517055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283517056, 3283517183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283517184, 3283517439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283517440, 3283525631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283525632, 3283533823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283533824, 3283534847, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283534848, 3283535359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283535360, 3283535871, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283535872, 3283536383, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283536384, 3283536895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283536896, 3283537407, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283537408, 3283537919, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283537920, 3283538431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283538432, 3283538943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283538944, 3283539967, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283539968, 3283540479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283540480, 3283540991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283540992, 3283541503, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283541504, 3283542015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283542016, 3283550207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550208, 3283550239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550240, 3283550271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550272, 3283550335, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550336, 3283550463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550464, 3283550623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550624, 3283550655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550656, 3283550719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283550720, 3283552255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552256, 3283552263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552264, 3283552319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552320, 3283552351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552352, 3283552415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552416, 3283552447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552448, 3283552575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552576, 3283552639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552640, 3283552671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552672, 3283552703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552704, 3283552735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552736, 3283552751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283552752, 3283553047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553048, 3283553055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553056, 3283553071, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553072, 3283553079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553080, 3283553119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553120, 3283553151, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553152, 3283553279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553280, 3283553535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553536, 3283553791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283553792, 3283554047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554048, 3283554079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554080, 3283554095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554096, 3283554111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554112, 3283554175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554176, 3283554239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554240, 3283554255, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554256, 3283554271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554272, 3283554303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554304, 3283554327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554328, 3283554367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283554368, 3283555743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283555744, 3283555759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283555760, 3283555775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283555776, 3283555807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283555808, 3283555839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283555840, 3283556351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283556352, 3283556415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283556416, 3283556447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283556448, 3283556623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283556624, 3283556639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283556640, 3283558303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558304, 3283558335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558336, 3283558367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558368, 3283558383, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558384, 3283558399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558400, 3283558431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558432, 3283558463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558464, 3283558535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558536, 3283558655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558656, 3283558751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558752, 3283558783, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558784, 3283558799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558800, 3283558815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558816, 3283558847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558848, 3283558863, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558864, 3283558871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558872, 3283558879, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558880, 3283558895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558896, 3283558911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283558912, 3283559039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559040, 3283559167, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559168, 3283559231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559232, 3283559263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559264, 3283559295, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559296, 3283559423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559424, 3283559679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559680, 3283559935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283559936, 3283560191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283560192, 3283560447, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283560448, 3283560703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283560704, 3283560863, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283560864, 3283560895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283560896, 3283560959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283560960, 3283561215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283561216, 3283561375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283561376, 3283561407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283561408, 3283561471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283561472, 3283562495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283562496, 3283562751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283562752, 3283562895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283562896, 3283562903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283562904, 3283562911, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283562912, 3283562943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283562944, 3283563007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283563008, 3283566015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283566016, 3283566079, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283566080, 3283566591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283566592, 3283566719, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283566720, 3283566847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283566848, 3283567103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283567104, 3283567423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283567424, 3283567455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283567456, 3283567471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283567472, 3283567487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283567488, 3283567615, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283567616, 3283567967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283567968, 3283567999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283568000, 3283568031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283568032, 3283568063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283568064, 3283568079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283568080, 3283568095, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283568096, 3283568127, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283568128, 3283569991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283569992, 3283570015, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570016, 3283570047, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570048, 3283570175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570176, 3283570439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570440, 3283570447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570448, 3283570463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570464, 3283570495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570496, 3283570559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570560, 3283570623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283570624, 3283571167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571168, 3283571199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571200, 3283571711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571712, 3283571719, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571720, 3283571743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571744, 3283571775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571776, 3283571839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571840, 3283571903, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571904, 3283571967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283571968, 3283572111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572112, 3283572127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572128, 3283572159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572160, 3283572175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572176, 3283572191, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572192, 3283572223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572224, 3283572615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572616, 3283572623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572624, 3283572631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572632, 3283572639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572640, 3283572671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572672, 3283572735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283572736, 3283573247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283573248, 3283574527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283574528, 3283574591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283574592, 3283574607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283574608, 3283574615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283574616, 3283574623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283574624, 3283574639, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283574640, 3283574655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283574656, 3283575039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283575040, 3283575071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283575072, 3283575087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283575088, 3283576415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283576416, 3283576447, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283576448, 3283580159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283580160, 3283580415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283580416, 3283582975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283582976, 3283583007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583008, 3283583039, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583040, 3283583071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583072, 3283583359, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583360, 3283583487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583488, 3283583503, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583504, 3283583519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583520, 3283583615, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583616, 3283583743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583744, 3283583839, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583840, 3283583847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583848, 3283583871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283583872, 3283583999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283584000, 3283584031, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283584032, 3283584063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283584064, 3283584127, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283584128, 3283585023, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585024, 3283585031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585032, 3283585047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585048, 3283585055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585056, 3283585279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585280, 3283585535, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585536, 3283585679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585680, 3283585695, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585696, 3283585727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585728, 3283585791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283585792, 3283586047, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283586048, 3283586407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283586408, 3283586415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283586416, 3283586503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283586504, 3283586559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283586560, 3283586815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283586816, 3283587071, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587072, 3283587231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587232, 3283587263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587264, 3283587335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587336, 3283587343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587344, 3283587359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587360, 3283587391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587392, 3283587423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587424, 3283587431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587432, 3283587439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587440, 3283587447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587448, 3283587455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587456, 3283587487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587488, 3283587519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587520, 3283587551, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587552, 3283587583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587584, 3283587647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587648, 3283587679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587680, 3283587711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587712, 3283587839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587840, 3283587871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587872, 3283587887, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587888, 3283587895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587896, 3283587903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587904, 3283587967, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283587968, 3283588095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283588096, 3283588191, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283588192, 3283588223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283588224, 3283588479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283588480, 3283588543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283588544, 3283588607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283588608, 3283589119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283589120, 3283589151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283589152, 3283589791, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283589792, 3283589823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283589824, 3283589839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283589840, 3283589887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283589888, 3283590143, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590144, 3283590167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590168, 3283590175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590176, 3283590215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590216, 3283590223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590224, 3283590231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590232, 3283590271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590272, 3283590319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590320, 3283590335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590336, 3283590351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590352, 3283590367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590368, 3283590527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590528, 3283590543, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590544, 3283590591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590592, 3283590623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590624, 3283590655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590656, 3283590847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590848, 3283590879, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590880, 3283590911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283590912, 3283591167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283591168, 3283591359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283591360, 3283591367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283591368, 3283591375, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283591376, 3283591423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283591424, 3283592191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283592192, 3283592847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283592848, 3283592863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283592864, 3283592895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283592896, 3283592903, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283592904, 3283592911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283592912, 3283592927, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283592928, 3283593023, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283593024, 3283593055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283593056, 3283593087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283593088, 3283593215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283593216, 3283595263, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283595264, 3283596287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283596288, 3283598127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598128, 3283598143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598144, 3283598175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598176, 3283598207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598208, 3283598335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598336, 3283598639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598640, 3283598655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598656, 3283598687, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598688, 3283598719, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598720, 3283598735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598736, 3283598743, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598744, 3283598847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598848, 3283598879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598880, 3283598911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598912, 3283598975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283598976, 3283599103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283599104, 3283599295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283599296, 3283599311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283599312, 3283599327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283599328, 3283599359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283599360, 3283599615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283599616, 3283599871, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283599872, 3283600527, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600528, 3283600543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600544, 3283600575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600576, 3283600639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600640, 3283600671, N'ZA', N'South Africa') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600672, 3283600703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600704, 3283600767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600768, 3283600895, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283600896, 3283601343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283601344, 3283601375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283601376, 3283601391, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283601392, 3283601399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283601400, 3283601919, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283601920, 3283602239, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283602240, 3283602271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283602272, 3283602287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283602288, 3283602303, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283602304, 3283602367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283602368, 3283602431, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283602432, 3283602943, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283602944, 3283603007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283603008, 3283603071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283603072, 3283603199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283603200, 3283603455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283603456, 3283605503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283605504, 3283606783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283606784, 3283607359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283607360, 3283607423, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283607424, 3283607551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283607552, 3283608575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283608576, 3283608831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283608832, 3283608895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283608896, 3283608959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283608960, 3283609087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283609088, 3283610783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283610784, 3283610815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283610816, 3283610879, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283610880, 3283611903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283611904, 3283613247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283613248, 3283613311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283613312, 3283613695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283613696, 3283614079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283614080, 3283614207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283614208, 3283614975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283614976, 3283615231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283615232, 3283615743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283615744, 3283623935, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283623936, 3283632127, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283632128, 3283640319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283640320, 3283648511, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283648512, 3283649023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283649024, 3283649535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283649536, 3283649791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283649792, 3283650047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650048, 3283650559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650560, 3283650687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650688, 3283650815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650816, 3283650879, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650880, 3283650911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650912, 3283650927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650928, 3283650943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650944, 3283650959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650960, 3283650975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283650976, 3283651007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651008, 3283651071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651072, 3283651135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651136, 3283651167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651168, 3283651183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651184, 3283651199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651200, 3283651263, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651264, 3283651327, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651328, 3283651423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651424, 3283651439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651440, 3283651463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651464, 3283651471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651472, 3283651487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651488, 3283651519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651520, 3283651583, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651584, 3283651591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651592, 3283651599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651600, 3283651615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651616, 3283651647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651648, 3283651663, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651664, 3283651671, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651672, 3283651679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651680, 3283651687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651688, 3283651695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651696, 3283651711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651712, 3283651727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651728, 3283651735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651736, 3283651743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651744, 3283651775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651776, 3283651839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651840, 3283651967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283651968, 3283652031, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652032, 3283652063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652064, 3283652071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652072, 3283652079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652080, 3283652095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652096, 3283652351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652352, 3283652479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652480, 3283652519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652520, 3283652527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652528, 3283652543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652544, 3283652575, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652576, 3283652607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652608, 3283652863, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283652864, 3283653055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653056, 3283653087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653088, 3283653103, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653104, 3283653119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653120, 3283653247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653248, 3283653311, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653312, 3283653503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653504, 3283653631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653632, 3283653887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283653888, 3283654015, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283654016, 3283654143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283654144, 3283654399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283654400, 3283654655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283654656, 3283654911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283654912, 3283655039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283655040, 3283655167, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283655168, 3283655295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283655296, 3283655423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283655424, 3283655679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283655680, 3283655935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283655936, 3283656191, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656192, 3283656223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656224, 3283656255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656256, 3283656271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656272, 3283656303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656304, 3283656311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656312, 3283656447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656448, 3283656559, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656560, 3283656575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656576, 3283656703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283656704, 3283664895, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283664896, 3283673087, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283673088, 3283681279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283681280, 3283729023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283729024, 3283729151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283729152, 3283746815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283746816, 3283812351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283812352, 3283877887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283877888, 3283943423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283943424, 3283944447, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283944448, 3283945471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283945472, 3283946495, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283946496, 3283947519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283947520, 3283948543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283948544, 3283949567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283949568, 3283950591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283950592, 3283951615, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283951616, 3283952639, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283952640, 3283953663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283953664, 3283954687, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283954688, 3283956735, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283956736, 3283957759, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283957760, 3283958783, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283958784, 3283959807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283959808, 3283960831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283960832, 3283961855, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283961856, 3283962879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283962880, 3283963903, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283963904, 3283964927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283964928, 3283965951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283965952, 3283966975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283966976, 3283967999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283968000, 3283969023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283969024, 3283970047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283970048, 3283971071, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283971072, 3283972095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283972096, 3283973119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283973120, 3283974143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283974144, 3283975167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283975168, 3283976191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283976192, 3283976703, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283976704, 3283977215, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283977216, 3283977727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283977728, 3283978239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283978240, 3283978751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283978752, 3283979263, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283979264, 3283979775, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283979776, 3283980287, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283980288, 3283980799, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283980800, 3283981823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283981824, 3283983359, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283983360, 3283983871, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283983872, 3283984383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283984384, 3283984895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283984896, 3283985407, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283985408, 3283985919, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283985920, 3283986431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283986432, 3283986943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283986944, 3283987455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283987456, 3283987967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283987968, 3283988991, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283988992, 3283989503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283989504, 3283990015, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283990016, 3283990527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283990528, 3283991551, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283991552, 3283992063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283992064, 3283992575, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283992576, 3283993087, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283993088, 3283993599, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283993600, 3283994111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283994112, 3283994623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283994624, 3283995135, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283995136, 3283995647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283995648, 3283996159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283996160, 3283996671, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283996672, 3283997183, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283997184, 3283997695, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283997696, 3283998207, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283998208, 3283998719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283998720, 3283999231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283999232, 3283999743, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3283999744, 3284000255, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284000256, 3284000767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284000768, 3284001279, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284001280, 3284002303, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284002304, 3284002815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284002816, 3284003327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284003328, 3284003839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284003840, 3284004351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284004352, 3284004863, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284004864, 3284005375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284005376, 3284005887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284005888, 3284006399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284006400, 3284006911, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284006912, 3284007935, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284007936, 3284008447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284008448, 3284008959, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284008960, 3284017151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284017152, 3284025343, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284025344, 3284025567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284025568, 3284025599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284025600, 3284033535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284033536, 3284041727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284041728, 3284041983, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284041984, 3284042239, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284042240, 3284042495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284042496, 3284042751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284042752, 3284043007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284043008, 3284043263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284043264, 3284043519, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284043520, 3284043775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284043776, 3284044031, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284044032, 3284044287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284044288, 3284044799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284044800, 3284045055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284045056, 3284045311, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284045312, 3284045567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284045568, 3284045823, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284045824, 3284046079, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284046080, 3284046335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284046336, 3284046591, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284046592, 3284046847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284046848, 3284047103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284047104, 3284047359, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284047360, 3284047615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284047616, 3284047871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284047872, 3284048127, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284048128, 3284048383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284048384, 3284048639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284048640, 3284049151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284049152, 3284049407, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284049408, 3284049663, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284049664, 3284049919, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284049920, 3284058111, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284058112, 3284066303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284066304, 3284074495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284074496, 3284140031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284140032, 3284205567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284205568, 3284271103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284271104, 3284402175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284402176, 3284467711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284467712, 3284531775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284531776, 3284531779, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284531780, 3284533247, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284533248, 3284598783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284598784, 3284664319, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284664320, 3284672511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284672512, 3284680703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284688896, 3284697087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284697088, 3284705279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284705280, 3284713471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284721664, 3284721919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284721920, 3284722943, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284722944, 3284729855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284729856, 3284795391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284795392, 3284803583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284803584, 3284811775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284811776, 3284819967, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284819968, 3284828159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284828160, 3284844543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284844544, 3284860927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284860928, 3284863743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284863744, 3284863999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284864000, 3284868863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284868864, 3284869375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284869376, 3284869631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284869632, 3284869887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284869888, 3284872959, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284872960, 3284873471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284873472, 3284926463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284926464, 3284991999, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3284992000, 3285057535, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285057536, 3285065727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285065728, 3285073919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285073920, 3285075263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285075264, 3285076607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285076608, 3285076767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285076768, 3285078111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285078112, 3285078143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285078144, 3285078175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285078176, 3285078191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285078192, 3285079423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285079424, 3285079551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285079552, 3285079807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285079808, 3285079935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285079936, 3285079967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285079968, 3285079999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285080000, 3285082111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285082112, 3285084159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285084160, 3285085183, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285085184, 3285086207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285086208, 3285088255, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285088256, 3285089279, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285089280, 3285090303, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285090304, 3285098495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285098496, 3285114879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285114880, 3285123071, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285123072, 3285158639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285158640, 3285158647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285158648, 3285164367, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285164368, 3285164375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285164376, 3285188607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285188608, 3285265999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285266000, 3285266007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285266008, 3285319679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285319680, 3285327871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285327872, 3285328383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285328384, 3285328895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285328896, 3285329407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285329408, 3285329919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285329920, 3285330431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285330432, 3285330943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285330944, 3285331455, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285331456, 3285331967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285331968, 3285332991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285332992, 3285333503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285333504, 3285334015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285334016, 3285334527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285334528, 3285335551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285335552, 3285336063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285336064, 3285352447, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285352448, 3285368831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285368832, 3285385215, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285385216, 3285450751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285450752, 3285453055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285453056, 3285453119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285453120, 3285454847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285454848, 3285455887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285455888, 3285455903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285455904, 3285455935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285455936, 3285456383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456384, 3285456639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456640, 3285456703, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456704, 3285456711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456712, 3285456719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456720, 3285456743, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456744, 3285456751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456752, 3285456871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456872, 3285456879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456880, 3285456895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456896, 3285456959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456960, 3285456975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285456976, 3285457087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457088, 3285457119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457120, 3285457151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457152, 3285457167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457168, 3285457183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457184, 3285457223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457224, 3285457231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457232, 3285457407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457408, 3285457663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457664, 3285457759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457760, 3285457791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457792, 3285457919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285457920, 3285458943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285458944, 3285459071, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285459072, 3285459103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285459104, 3285459527, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285459528, 3285459535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285459536, 3285459711, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285459712, 3285459967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285459968, 3285460479, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285460480, 3285460991, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285460992, 3285461007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461008, 3285461055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461056, 3285461111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461112, 3285461119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461120, 3285461159, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461160, 3285461167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461168, 3285461263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461264, 3285461279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461280, 3285461311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461312, 3285461375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461376, 3285461535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461536, 3285461567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461568, 3285461791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461792, 3285461807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461808, 3285461823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461824, 3285461855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461856, 3285461991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285461992, 3285461999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462000, 3285462015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462016, 3285462207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462208, 3285462223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462224, 3285462383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462384, 3285462399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462400, 3285462527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462528, 3285462543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462544, 3285462783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462784, 3285462847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462848, 3285462879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462880, 3285462911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462912, 3285462951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462952, 3285462975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285462976, 3285463007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463008, 3285463039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463040, 3285463071, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463072, 3285463079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463080, 3285463103, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463104, 3285463295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463296, 3285463311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463312, 3285463319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463320, 3285463359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463360, 3285463423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463424, 3285463487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463488, 3285463519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463520, 3285463615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463616, 3285463647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463648, 3285463663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463664, 3285463671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463672, 3285463679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463680, 3285463991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285463992, 3285463999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285464000, 3285464095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285464096, 3285464127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285464128, 3285464383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285464384, 3285464415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285464416, 3285464431, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285464432, 3285464447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285464448, 3285465087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285465088, 3285465103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285465104, 3285465119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285465120, 3285465343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285465344, 3285465631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285465632, 3285465727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285465728, 3285465855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285465856, 3285466367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466368, 3285466463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466464, 3285466527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466528, 3285466543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466544, 3285466551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466552, 3285466623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466624, 3285466879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466880, 3285466895, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466896, 3285466911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466912, 3285466935, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466936, 3285466943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285466944, 3285467015, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467016, 3285467135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467136, 3285467391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467392, 3285467663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467664, 3285467743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467744, 3285467807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467808, 3285467823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467824, 3285467831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467832, 3285467951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467952, 3285467959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467960, 3285467967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285467968, 3285468511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285468512, 3285468543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285468544, 3285468615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285468616, 3285468623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285468624, 3285471007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285471008, 3285471039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285471040, 3285471071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285471072, 3285471103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285471104, 3285471903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285471904, 3285471935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285471936, 3285471967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285471968, 3285471999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285472000, 3285472175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285472176, 3285472183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285472184, 3285472319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285472320, 3285472351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285472352, 3285472383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285472384, 3285472767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285472768, 3285473023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473024, 3285473279, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473280, 3285473343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473344, 3285473375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473376, 3285473407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473408, 3285473439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473440, 3285473583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473584, 3285473591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473592, 3285473599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473600, 3285473631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473632, 3285473695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473696, 3285473791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285473792, 3285474559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285474560, 3285474815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285474816, 3285475127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475128, 3285475143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475144, 3285475207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475208, 3285475215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475216, 3285475327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475328, 3285475743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475744, 3285475775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475776, 3285475783, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475784, 3285475791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475792, 3285475839, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475840, 3285475871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475872, 3285475951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475952, 3285475959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285475960, 3285476127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285476128, 3285476351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285476352, 3285476735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285476736, 3285476863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285476864, 3285476895, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285476896, 3285476991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285476992, 3285477119, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285477120, 3285477167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285477168, 3285477183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285477184, 3285477343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285477344, 3285477359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285477360, 3285477375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285477376, 3285477951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285477952, 3285477999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285478000, 3285479391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285479392, 3285479399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285479400, 3285479407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285479408, 3285479423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285479424, 3285479807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285479808, 3285479935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285479936, 3285480191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285480192, 3285480447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285480448, 3285480575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285480576, 3285480703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285480704, 3285480799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285480800, 3285480831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285480832, 3285481215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285481216, 3285481471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285481472, 3285481727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285481728, 3285481791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285481792, 3285481919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285481920, 3285481983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285481984, 3285481999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482000, 3285482007, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482008, 3285482239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482240, 3285482495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482496, 3285482527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482528, 3285482751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482752, 3285482783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482784, 3285482815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482816, 3285482879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285482880, 3285483007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285483008, 3285483519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285483520, 3285485055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485056, 3285485119, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485120, 3285485631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485632, 3285485647, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485648, 3285485727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485728, 3285485743, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485744, 3285485767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485768, 3285485791, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485792, 3285485799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485800, 3285485823, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285485824, 3285486591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285486592, 3285487103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487104, 3285487359, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487360, 3285487423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487424, 3285487487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487488, 3285487903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487904, 3285487919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487920, 3285487927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487928, 3285487935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285487936, 3285488127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285488128, 3285488639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285488640, 3285489663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285489664, 3285490175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490176, 3285490319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490320, 3285490335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490336, 3285490463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490464, 3285490495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490496, 3285490511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490512, 3285490519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490520, 3285490527, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490528, 3285490535, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490536, 3285490687, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490688, 3285490943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285490944, 3285491007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285491008, 3285491071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285491072, 3285491199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285491200, 3285491455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285491456, 3285491711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285491712, 3285492223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285492224, 3285492479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285492480, 3285492687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285492688, 3285492695, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285492696, 3285492735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285492736, 3285493759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285493760, 3285493887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285493888, 3285493951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285493952, 3285493983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285493984, 3285493991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285493992, 3285494015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285494016, 3285494783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285494784, 3285495807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285495808, 3285496319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496320, 3285496407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496408, 3285496415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496416, 3285496463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496464, 3285496471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496472, 3285496495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496496, 3285496527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496528, 3285496543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496544, 3285496575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496576, 3285496607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496608, 3285496671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496672, 3285496703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496704, 3285496767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496768, 3285496799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285496800, 3285497855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285497856, 3285497887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285497888, 3285498047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498048, 3285498079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498080, 3285498095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498096, 3285498111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498112, 3285498367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498368, 3285498623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498624, 3285498639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498640, 3285498655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498656, 3285498671, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498672, 3285498751, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285498752, 3285499391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285499392, 3285499647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285499648, 3285499903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285499904, 3285500159, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285500160, 3285500287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285500288, 3285500415, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285500416, 3285500927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285500928, 3285501183, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501184, 3285501319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501320, 3285501343, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501344, 3285501375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501376, 3285501407, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501408, 3285501439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501440, 3285501567, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501568, 3285501727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501728, 3285501759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501760, 3285501767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501768, 3285501775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501776, 3285501791, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285501792, 3285502207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502208, 3285502463, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502464, 3285502511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502512, 3285502527, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502528, 3285502591, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502592, 3285502655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502656, 3285502671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502672, 3285502695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285502696, 3285503391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285503392, 3285503455, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285503456, 3285503487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285503488, 3285503615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285503616, 3285503743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285503744, 3285503999, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285504000, 3285504511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285504512, 3285504639, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285504640, 3285505023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285505024, 3285505055, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285505056, 3285505215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285505216, 3285505279, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285505280, 3285505439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285505440, 3285505471, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285505472, 3285506047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285506048, 3285506079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285506080, 3285507327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285507328, 3285507391, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285507392, 3285507655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285507656, 3285507663, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285507664, 3285507679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285507680, 3285507711, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285507712, 3285507839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285507840, 3285508095, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285508096, 3285508607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285508608, 3285508671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285508672, 3285508735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285508736, 3285508863, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285508864, 3285508871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285508872, 3285508927, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285508928, 3285509119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285509120, 3285509375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285509376, 3285509631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285509632, 3285509887, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285509888, 3285510015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285510016, 3285510143, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285510144, 3285512191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285512192, 3285512511, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285512512, 3285512575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285512576, 3285512759, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285512760, 3285512767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285512768, 3285512831, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285512832, 3285513215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285513216, 3285513223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285513224, 3285513231, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285513232, 3285513471, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285513472, 3285513727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285513728, 3285514239, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285514240, 3285515263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285515264, 3285515519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285515520, 3285515775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285515776, 3285515799, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285515800, 3285516159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516160, 3285516191, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516192, 3285516223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516224, 3285516287, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516288, 3285516543, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516544, 3285516671, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516672, 3285516687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516688, 3285516691, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516692, 3285516695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516696, 3285516703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516704, 3285516719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516720, 3285516735, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516736, 3285516799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516800, 3285516927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516928, 3285516991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285516992, 3285517023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285517024, 3285517055, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285517056, 3285517215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285517216, 3285517247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285517248, 3285518335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285518336, 3285518351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285518352, 3285518367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285518368, 3285518463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285518464, 3285518591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285518592, 3285518847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285518848, 3285519103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285519104, 3285519359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285519360, 3285519615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285519616, 3285520127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520128, 3285520383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520384, 3285520527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520528, 3285520543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520544, 3285520575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520576, 3285520639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520640, 3285520767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520768, 3285520895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285520896, 3285521167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285521168, 3285521407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285521408, 3285521535, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285521536, 3285521695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285521696, 3285521791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285521792, 3285522175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285522176, 3285523071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523072, 3285523079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523080, 3285523087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523088, 3285523199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523200, 3285523231, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523232, 3285523327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523328, 3285523335, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523336, 3285523359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523360, 3285523391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523392, 3285523455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523456, 3285523711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523712, 3285523967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285523968, 3285524063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524064, 3285524095, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524096, 3285524159, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524160, 3285524175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524176, 3285524191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524192, 3285524223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524224, 3285524351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524352, 3285524479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524480, 3285524735, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524736, 3285524863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524864, 3285524879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524880, 3285524895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524896, 3285524927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524928, 3285524991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285524992, 3285525247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285525248, 3285525503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285525504, 3285525759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285525760, 3285526015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526016, 3285526023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526024, 3285526035, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526036, 3285526039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526040, 3285526047, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526048, 3285526079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526080, 3285526143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526144, 3285526175, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526176, 3285526271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526272, 3285526335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526336, 3285526383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526384, 3285526399, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526400, 3285526527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526528, 3285526783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526784, 3285526815, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526816, 3285526823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526824, 3285526847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526848, 3285526911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285526912, 3285527295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527296, 3285527423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527424, 3285527427, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527428, 3285527431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527432, 3285527439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527440, 3285527455, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527456, 3285527487, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527488, 3285527551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527552, 3285527615, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527616, 3285527679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527680, 3285527807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527808, 3285527811, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527812, 3285527815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527816, 3285527855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527856, 3285527871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527872, 3285527967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285527968, 3285527999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528000, 3285528319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528320, 3285528447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528448, 3285528575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528576, 3285528703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528704, 3285528735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528736, 3285528799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528800, 3285528831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528832, 3285528839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528840, 3285528847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528848, 3285528863, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528864, 3285528883, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528884, 3285528887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528888, 3285528895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528896, 3285528911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528912, 3285528927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528928, 3285528931, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528932, 3285528935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528936, 3285528943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285528944, 3285529071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529072, 3285529087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529088, 3285529151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529152, 3285529183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529184, 3285529199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529200, 3285529215, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529216, 3285529247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529248, 3285529263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529264, 3285529279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529280, 3285529311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529312, 3285529343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529344, 3285529471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529472, 3285529599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529600, 3285529631, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529632, 3285529663, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529664, 3285529679, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529680, 3285529687, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529688, 3285529695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529696, 3285529711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529712, 3285529727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529728, 3285529855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529856, 3285529951, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529952, 3285529983, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285529984, 3285529999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530000, 3285530143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530144, 3285530175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530176, 3285530183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530184, 3285530211, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530212, 3285530215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530216, 3285530223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530224, 3285530271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530272, 3285530303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530304, 3285530335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530336, 3285530367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530368, 3285530399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530400, 3285530431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530432, 3285530463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530464, 3285530495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530496, 3285530559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530560, 3285530575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530576, 3285530583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530584, 3285530591, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530592, 3285530607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530608, 3285530623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530624, 3285530655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530656, 3285530687, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530688, 3285530719, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530720, 3285530723, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530724, 3285530727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530728, 3285530735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530736, 3285530739, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530740, 3285530743, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530744, 3285530751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530752, 3285530767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530768, 3285530783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530784, 3285530815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530816, 3285530831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530832, 3285530879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530880, 3285530911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530912, 3285530975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530976, 3285530983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530984, 3285530991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285530992, 3285531007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531008, 3285531023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531024, 3285531039, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531040, 3285531071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531072, 3285531103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531104, 3285531119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531120, 3285531127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531128, 3285531135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531136, 3285531263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531264, 3285531295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531296, 3285531303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531304, 3285531311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531312, 3285531327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531328, 3285531391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531392, 3285531423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531424, 3285531455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531456, 3285531487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531488, 3285531495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531496, 3285531503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531504, 3285531519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531520, 3285531535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531536, 3285531551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531552, 3285531567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531568, 3285531615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531616, 3285531647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531648, 3285531903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285531904, 3285532159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532160, 3285532223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532224, 3285532231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532232, 3285532287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532288, 3285532415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532416, 3285532687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532688, 3285532703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532704, 3285532711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532712, 3285532719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532720, 3285532735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532736, 3285532799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532800, 3285532831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532832, 3285532847, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532848, 3285532863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532864, 3285532895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532896, 3285532959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532960, 3285532975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285532976, 3285533055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533056, 3285533059, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533060, 3285533087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533088, 3285533103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533104, 3285533119, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533120, 3285533183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533184, 3285533311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533312, 3285533343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533344, 3285533367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533368, 3285533375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533376, 3285533455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533456, 3285533503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533504, 3285533519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533520, 3285533535, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533536, 3285533543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533544, 3285533551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533552, 3285533567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533568, 3285533951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285533952, 3285534079, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534080, 3285534095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534096, 3285534111, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534112, 3285534143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534144, 3285534207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534208, 3285534463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534464, 3285534479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534480, 3285534495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534496, 3285534527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534528, 3285534559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534560, 3285534591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534592, 3285534627, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534628, 3285534631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534632, 3285534639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534640, 3285534655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534656, 3285534719, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534720, 3285534751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534752, 3285534767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534768, 3285534783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534784, 3285534799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534800, 3285534815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534816, 3285534831, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534832, 3285534927, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534928, 3285534943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534944, 3285534975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285534976, 3285535103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535104, 3285535119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535120, 3285535123, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535124, 3285535127, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535128, 3285535131, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535132, 3285535135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535136, 3285535139, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535140, 3285535143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535144, 3285535147, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535148, 3285535151, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535152, 3285535155, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535156, 3285535231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535232, 3285535743, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535744, 3285535871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535872, 3285535903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535904, 3285535907, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535908, 3285535911, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535912, 3285535919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535920, 3285535927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285535928, 3285535999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536000, 3285536063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536064, 3285536079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536080, 3285536095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536096, 3285536111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536112, 3285536255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536256, 3285536511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536512, 3285536543, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536544, 3285536575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536576, 3285536607, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536608, 3285536703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536704, 3285536735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536736, 3285536739, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536740, 3285536743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536744, 3285536747, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536748, 3285536751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536752, 3285536755, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536756, 3285536759, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536760, 3285536767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536768, 3285536959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536960, 3285536991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285536992, 3285537023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537024, 3285537087, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537088, 3285537127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537128, 3285537135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537136, 3285537143, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537144, 3285537151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537152, 3285537167, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537168, 3285537175, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537176, 3285537183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537184, 3285537215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537216, 3285537231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537232, 3285537535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537536, 3285537599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537600, 3285537615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537616, 3285537631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537632, 3285537663, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537664, 3285537727, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537728, 3285537759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537760, 3285537791, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537792, 3285537919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285537920, 3285538047, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538048, 3285538175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538176, 3285538183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538184, 3285538187, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538188, 3285538207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538208, 3285538239, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538240, 3285538271, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538272, 3285538287, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538288, 3285538295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538296, 3285538299, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538300, 3285538319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538320, 3285538327, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538328, 3285538335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538336, 3285538351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538352, 3285538367, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538368, 3285538375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538376, 3285538383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538384, 3285538399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538400, 3285538431, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538432, 3285538559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538560, 3285538623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538624, 3285538687, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538688, 3285538719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538720, 3285538751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538752, 3285538755, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538756, 3285538759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538760, 3285538763, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538764, 3285538767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538768, 3285538783, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538784, 3285538815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538816, 3285538847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538848, 3285538879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285538880, 3285539071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285539072, 3285539327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285539328, 3285539583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285539584, 3285539711, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285539712, 3285539839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285539840, 3285539967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285539968, 3285540031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540032, 3285540095, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540096, 3285540103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540104, 3285540107, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540108, 3285540111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540112, 3285540127, N'IL', N'Israel') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540128, 3285540159, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540160, 3285540191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540192, 3285540207, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540208, 3285540215, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540216, 3285540219, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540220, 3285540223, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540224, 3285540351, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540352, 3285540415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540416, 3285540423, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540424, 3285540447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540448, 3285540479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540480, 3285540607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540608, 3285540623, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540624, 3285540671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540672, 3285540735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540736, 3285540863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540864, 3285540871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540872, 3285540879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285540880, 3285541375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541376, 3285541391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541392, 3285541439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541440, 3285541519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541520, 3285541535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541536, 3285541551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541552, 3285541567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541568, 3285541599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541600, 3285541631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541632, 3285541663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541664, 3285541695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541696, 3285541759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541760, 3285541951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285541952, 3285542079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285542080, 3285542143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285542144, 3285542399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285542400, 3285542655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285542656, 3285542911, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285542912, 3285543167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543168, 3285543423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543424, 3285543679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543680, 3285543743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543744, 3285543759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543760, 3285543775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543776, 3285543791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543792, 3285543795, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543796, 3285543799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543800, 3285543807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543808, 3285543871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543872, 3285543935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285543936, 3285544191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544192, 3285544255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544256, 3285544319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544320, 3285544335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544336, 3285544351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544352, 3285544383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544384, 3285544479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544480, 3285544511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544512, 3285544639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544640, 3285544703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544704, 3285544959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285544960, 3285545215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285545216, 3285545343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285545344, 3285545379, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285545380, 3285545471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285545472, 3285545727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285545728, 3285545983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285545984, 3285545999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546000, 3285546015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546016, 3285546063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546064, 3285546071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546072, 3285546111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546112, 3285546239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546240, 3285546367, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546368, 3285546495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546496, 3285546559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546560, 3285546623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546624, 3285546671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546672, 3285546687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546688, 3285546751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285546752, 3285547007, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547008, 3285547023, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547024, 3285547039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547040, 3285547071, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547072, 3285547135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547136, 3285547167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547168, 3285547199, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547200, 3285547263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547264, 3285547519, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547520, 3285547775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285547776, 3285548031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548032, 3285548287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548288, 3285548543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548544, 3285548607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548608, 3285548639, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548640, 3285548647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548648, 3285548655, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548656, 3285548735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548736, 3285548767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548768, 3285548799, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548800, 3285548831, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548832, 3285548839, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548840, 3285548847, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548848, 3285548959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285548960, 3285549023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549024, 3285549039, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549040, 3285549055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549056, 3285549183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549184, 3285549215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549216, 3285549247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549248, 3285549279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549280, 3285549311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549312, 3285549727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549728, 3285549735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549736, 3285549767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549768, 3285549775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549776, 3285549791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549792, 3285549823, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549824, 3285549871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549872, 3285549887, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549888, 3285549951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285549952, 3285550335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285550336, 3285550463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285550464, 3285550527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285550528, 3285550591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285550592, 3285550847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285550848, 3285550943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285550944, 3285550975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285550976, 3285551007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551008, 3285551039, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551040, 3285551071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551072, 3285551103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551104, 3285551359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551360, 3285551375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551376, 3285551391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551392, 3285551423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551424, 3285551487, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551488, 3285551519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551520, 3285551551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551552, 3285551615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551616, 3285551647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551648, 3285551679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551680, 3285551807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551808, 3285551839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551840, 3285551871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285551872, 3285552127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552128, 3285552191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552192, 3285552255, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552256, 3285552287, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552288, 3285552319, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552320, 3285552383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552384, 3285552511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552512, 3285552639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552640, 3285552927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552928, 3285552959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285552960, 3285553023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553024, 3285553039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553040, 3285553055, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553056, 3285553087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553088, 3285553151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553152, 3285553215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553216, 3285553247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553248, 3285553263, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553264, 3285553727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553728, 3285553759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553760, 3285553767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553768, 3285553775, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553776, 3285553791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553792, 3285553855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553856, 3285553887, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553888, 3285553919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285553920, 3285554047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554048, 3285554127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554128, 3285554143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554144, 3285554175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554176, 3285554431, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554432, 3285554687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554688, 3285554703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554704, 3285554719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554720, 3285554751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554752, 3285554815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554816, 3285554943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285554944, 3285555199, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285555200, 3285555231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285555232, 3285555263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285555264, 3285555327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285555328, 3285555455, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285555456, 3285555711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285555712, 3285555967, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285555968, 3285556223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556224, 3285556479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556480, 3285556735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556736, 3285556767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556768, 3285556771, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556772, 3285556775, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556776, 3285556779, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556780, 3285556799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556800, 3285556863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556864, 3285556991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285556992, 3285557055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557056, 3285557119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557120, 3285557247, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557248, 3285557363, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557364, 3285557375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557376, 3285557519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557520, 3285557535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557536, 3285557575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557576, 3285557579, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557580, 3285557583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557584, 3285557599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557600, 3285557631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557632, 3285557791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557792, 3285557823, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557824, 3285557887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557888, 3285557911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557912, 3285557919, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557920, 3285557951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285557952, 3285558015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285558016, 3285558271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285558272, 3285558399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285558400, 3285558463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285558464, 3285558591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285558592, 3285558655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285558656, 3285558783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285558784, 3285559039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559040, 3285559167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559168, 3285559231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559232, 3285559295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559296, 3285559807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559808, 3285559839, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559840, 3285559871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559872, 3285559887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559888, 3285559903, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559904, 3285559919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559920, 3285559935, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285559936, 3285560063, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560064, 3285560351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560352, 3285560383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560384, 3285560447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560448, 3285560479, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560480, 3285560511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560512, 3285560575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560576, 3285560831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285560832, 3285561215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561216, 3285561343, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561344, 3285561407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561408, 3285561471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561472, 3285561599, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561600, 3285561619, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561620, 3285561623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561624, 3285561647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561648, 3285561663, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561664, 3285561727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561728, 3285561791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561792, 3285561919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561920, 3285561951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561952, 3285561967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561968, 3285561983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285561984, 3285562111, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562112, 3285562367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562368, 3285562751, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562752, 3285562783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562784, 3285562815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562816, 3285562879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562880, 3285562911, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562912, 3285562943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562944, 3285562975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562976, 3285562991, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285562992, 3285562999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563000, 3285563007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563008, 3285563135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563136, 3285563391, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563392, 3285563455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563456, 3285563471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563472, 3285563487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563488, 3285563519, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563520, 3285563647, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563648, 3285563903, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285563904, 3285564031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564032, 3285564159, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564160, 3285564415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564416, 3285564511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564512, 3285564543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564544, 3285564671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564672, 3285564735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564736, 3285564751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564752, 3285564767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564768, 3285564799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564800, 3285564927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285564928, 3285565183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285565184, 3285565439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285565440, 3285565951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285565952, 3285566015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566016, 3285566031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566032, 3285566047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566048, 3285566079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566080, 3285566143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566144, 3285566207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566208, 3285566495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566496, 3285566511, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566512, 3285566527, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566528, 3285566559, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566560, 3285566575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566576, 3285566591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566592, 3285566655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566656, 3285566847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566848, 3285566975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285566976, 3285567231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285567232, 3285567487, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285567488, 3285568511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285568512, 3285568671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285568672, 3285568703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285568704, 3285568751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285568752, 3285569023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285569024, 3285569407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285569408, 3285569535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285569536, 3285569791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285569792, 3285570047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570048, 3285570175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570176, 3285570207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570208, 3285570223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570224, 3285570239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570240, 3285570303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570304, 3285570559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570560, 3285570815, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285570816, 3285571071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571072, 3285571327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571328, 3285571583, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571584, 3285571711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571712, 3285571775, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571776, 3285571791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571792, 3285571807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571808, 3285571839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571840, 3285571903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571904, 3285571967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285571968, 3285572095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572096, 3285572223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572224, 3285572351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572352, 3285572367, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572368, 3285572383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572384, 3285572447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572448, 3285572479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572480, 3285572607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572608, 3285572863, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285572864, 3285573119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285573120, 3285573375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285573376, 3285573535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285573536, 3285573567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285573568, 3285573631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285573632, 3285573887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285573888, 3285573951, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285573952, 3285574143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285574144, 3285574399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285574400, 3285574655, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285574656, 3285574911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285574912, 3285575167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285575168, 3285575423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285575424, 3285575679, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285575680, 3285575935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285575936, 3285575999, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576000, 3285576063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576064, 3285576127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576128, 3285576159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576160, 3285576191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576192, 3285576447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576448, 3285576703, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576704, 3285576959, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285576960, 3285577215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285577216, 3285577471, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285577472, 3285577599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285577600, 3285577983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285577984, 3285578111, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285578112, 3285578239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285578240, 3285578367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285578368, 3285578431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285578432, 3285578495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285578496, 3285578751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285578752, 3285579007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285579008, 3285579519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285579520, 3285579775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285579776, 3285580031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580032, 3285580287, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580288, 3285580415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580416, 3285580543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580544, 3285580547, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580548, 3285580651, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580652, 3285580655, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580656, 3285580799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580800, 3285580831, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580832, 3285580847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580848, 3285580927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285580928, 3285581055, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581056, 3285581183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581184, 3285581311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581312, 3285581503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581504, 3285581567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581568, 3285581599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581600, 3285581615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581616, 3285581695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581696, 3285581759, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581760, 3285581823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285581824, 3285595135, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285595136, 3285595167, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285595168, 3285595175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285595176, 3285595263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285595264, 3285595423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285595424, 3285596159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596160, 3285596191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596192, 3285596223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596224, 3285596255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596256, 3285596287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596288, 3285596319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596320, 3285596351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596352, 3285596383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285596384, 3285597183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285597184, 3285597215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285597216, 3285606399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285606400, 3285614591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285614592, 3285630975, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285630976, 3285633023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285633024, 3285635071, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285635072, 3285637119, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285637120, 3285639167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285639168, 3285641215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285641216, 3285642239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285643264, 3285645311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285645312, 3285647359, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285647360, 3285712895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285712896, 3285721087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285721088, 3285729279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285729280, 3285737471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285737472, 3285745663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285745664, 3285753855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285753856, 3285762047, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285762048, 3285770239, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285770240, 3285778431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285778432, 3285843967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285843968, 3285852159, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285852160, 3285860351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285860352, 3285868543, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285868544, 3285876735, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285876736, 3285889791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285889792, 3285890047, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285890048, 3285909503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285909504, 3285910279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285910280, 3285910303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285910304, 3285910335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285910336, 3285910399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285910400, 3285910407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285910408, 3285910463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285910464, 3285910527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285910528, 3285911295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285911296, 3285912575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285912576, 3285913087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285913088, 3285913215, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285913216, 3285913343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285913344, 3285913599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285913600, 3285913855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285913856, 3285914111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285914112, 3285915647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285915648, 3285916415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916416, 3285916671, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916672, 3285916703, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916704, 3285916719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916720, 3285916735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916736, 3285916767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916768, 3285916799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916800, 3285916927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285916928, 3285917183, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285917184, 3285917439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285917440, 3285917695, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285917696, 3285918847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285918848, 3285918975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285918976, 3285919231, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285919232, 3285919743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285919744, 3285921791, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285921792, 3285921855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285921856, 3285921919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285921920, 3285921983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285921984, 3285922047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285922048, 3285922223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285922224, 3285922239, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285922240, 3285922287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285922288, 3285922559, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285922560, 3285922815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285922816, 3285923327, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285923328, 3285924415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285924416, 3285924431, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285924432, 3285924447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285924448, 3285924479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285924480, 3285924863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285924864, 3285925055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285925056, 3285925119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285925120, 3285925887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285925888, 3285926143, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926144, 3285926399, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926400, 3285926431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926432, 3285926463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926464, 3285926495, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926496, 3285926527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926528, 3285926719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926720, 3285926783, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926784, 3285926847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926848, 3285926911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285926912, 3285927423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285927424, 3285927935, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285927936, 3285927999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928000, 3285928063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928064, 3285928095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928096, 3285928127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928128, 3285928191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928192, 3285928207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928208, 3285928255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928256, 3285928287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928288, 3285928959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285928960, 3285929215, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285929216, 3285929423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285929424, 3285929439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285929440, 3285929983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285929984, 3285930239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930240, 3285930495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930496, 3285930559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930560, 3285930575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930576, 3285930591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930592, 3285930631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930632, 3285930647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930648, 3285930687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930688, 3285930751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285930752, 3285932287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285932288, 3285932543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285932544, 3285932799, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285932800, 3285933055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285933056, 3285933311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285933312, 3285933567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285933568, 3285934079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285934080, 3285934847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285934848, 3285935103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285935104, 3285935359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285935360, 3285935615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285935616, 3285936127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285936128, 3285936639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285936640, 3285938559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938560, 3285938591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938592, 3285938607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938608, 3285938623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938624, 3285938631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938632, 3285938639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938640, 3285938655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938656, 3285938687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938688, 3285938943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938944, 3285938951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938952, 3285938975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285938976, 3285939039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285939040, 3285939071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285939072, 3285940223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285940224, 3285940479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285940480, 3285940735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285940736, 3285942271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285942272, 3285942527, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285942528, 3285942655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285942656, 3285942783, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285942784, 3285943039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285943040, 3285943295, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285943296, 3285943567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285943568, 3285943575, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285943576, 3285943583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285943584, 3285943679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285943680, 3285943807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285943808, 3285944319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285944320, 3285944831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285944832, 3285945343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285945344, 3285945599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285945600, 3285945695, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285945696, 3285945855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285945856, 3285946111, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285946112, 3285946367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285946368, 3285946623, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285946624, 3285947135, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285947136, 3285947391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285947392, 3285947423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285947424, 3285947647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285947648, 3285947903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285947904, 3285948159, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285948160, 3285948671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285948672, 3285948927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285948928, 3285949183, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285949184, 3285949439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285949440, 3285949831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285949832, 3285949951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285949952, 3285950463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285950464, 3285950719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285950720, 3285950783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285950784, 3285950975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285950976, 3285951231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285951232, 3285951487, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285951488, 3285951567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285951568, 3285951583, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285951584, 3285951599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285951600, 3285951631, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285951632, 3285951999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285952000, 3285952127, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285952128, 3285952255, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285952256, 3285952511, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285952512, 3285952767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285952768, 3285953023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285953024, 3285953279, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285953280, 3285953535, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285953536, 3285954047, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285954048, 3285954559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285954560, 3285954815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285954816, 3285955583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285955584, 3285955839, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285955840, 3285956095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285956096, 3285956351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285956352, 3285956607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285956608, 3285956863, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285956864, 3285957119, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285957120, 3285957631, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285957632, 3285957887, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285957888, 3285958143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285958144, 3285958655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285958656, 3285958847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285958848, 3285958895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285958896, 3285958903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285958904, 3285958911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285958912, 3285959039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285959040, 3285959167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285959168, 3285959423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285959424, 3285959679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285959680, 3285959935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285959936, 3285960191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285960192, 3285960447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285960448, 3285960703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285960704, 3285963775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285963776, 3285964031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285964032, 3285964287, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285964288, 3285964351, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285964352, 3285964543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285964544, 3285964799, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285964800, 3285966847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285966848, 3285967103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285967104, 3285967359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285967360, 3285967615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285967616, 3285968383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285968384, 3285968639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285968640, 3285968895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285968896, 3285975039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3285975040, 3286106111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286106112, 3286114303, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286114304, 3286122495, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286122496, 3286130431, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286130432, 3286130687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286138880, 3286155263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286155264, 3286171647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286171648, 3286237183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286237184, 3286243583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286243584, 3286243839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286243840, 3286245887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286245888, 3286246143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286246144, 3286254167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286254168, 3286254175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286254176, 3286264879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286264880, 3286264895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286264896, 3286279423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286279424, 3286279679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286279680, 3286289919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286289920, 3286290175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286290176, 3286291807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286291808, 3286291823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286291824, 3286302719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286302720, 3286310911, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286310912, 3286311423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286311424, 3286311935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286311936, 3286312447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286312448, 3286312959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286312960, 3286313983, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286313984, 3286314495, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286314496, 3286315007, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286315008, 3286315519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286315520, 3286316031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286316032, 3286316543, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286316544, 3286317055, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286317056, 3286317567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286317568, 3286318079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286318080, 3286318591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286318592, 3286319103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286319104, 3286320127, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286320128, 3286321151, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286321152, 3286322175, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286322176, 3286323199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286323200, 3286324223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286324224, 3286325247, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286325248, 3286326271, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286326272, 3286327295, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286327296, 3286328319, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286328320, 3286329343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286329344, 3286330367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286330368, 3286331391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286331392, 3286332415, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286332416, 3286333439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286333440, 3286334463, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286334464, 3286335487, N'BG', N'Bulgaria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286335488, 3286336511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286336512, 3286337535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286337536, 3286338559, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286338560, 3286339583, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286339584, 3286340607, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286340608, 3286342655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286342656, 3286343679, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286343680, 3286344703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286344704, 3286345727, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286345728, 3286346751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286346752, 3286348799, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286348800, 3286349823, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286349824, 3286350847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286350848, 3286351871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286351872, 3286352895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286352896, 3286353919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286353920, 3286354943, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286354944, 3286355967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286355968, 3286356991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286356992, 3286358015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286358016, 3286359039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286359040, 3286360063, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286360064, 3286361087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286361088, 3286362111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286362112, 3286363135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286363136, 3286364159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286364160, 3286365183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286365184, 3286367231, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286367232, 3286368255, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286368256, 3286376447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286376448, 3286384639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286384640, 3286401023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286401024, 3286409215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286409216, 3286417407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286417408, 3286425599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286425600, 3286433791, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286433792, 3286476319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286476320, 3286476343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286476344, 3286499327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286499328, 3286564863, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286564864, 3286566143, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286566144, 3286566399, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286566400, 3286566655, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286566656, 3286567423, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286567424, 3286567679, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286567680, 3286567935, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286567936, 3286568191, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286568192, 3286568703, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286568704, 3286571007, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286571008, 3286571775, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286571776, 3286630399, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286630400, 3286638591, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286638592, 3286646783, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286646784, 3286654975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286654976, 3286663167, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286663168, 3286671359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286671360, 3286679551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286679552, 3286681631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681632, 3286681647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681648, 3286681655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681656, 3286681659, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681660, 3286681663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681664, 3286681695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681696, 3286681699, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681700, 3286681711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681712, 3286681727, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681728, 3286681743, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681744, 3286681751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681752, 3286681767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681768, 3286681775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681776, 3286681815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681816, 3286681831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286681832, 3286682399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286682400, 3286682415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286682416, 3286682431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286682432, 3286682463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286682464, 3286682623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286682624, 3286682879, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286682880, 3286695935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286695936, 3286761471, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286761472, 3286761727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286761728, 3286769663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286769664, 3286769919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286769920, 3286773759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286773760, 3286777855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286777856, 3286781951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286781952, 3286782207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286782208, 3286782463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286782464, 3286782535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286782536, 3286782543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286782544, 3286782575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286782576, 3286782583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286782584, 3286783599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286783600, 3286783615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286783616, 3286783679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286783680, 3286784511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286784512, 3286784767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286784768, 3286785023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286785024, 3286787071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286787072, 3286787327, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286787328, 3286787583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286787584, 3286788095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286788096, 3286788351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286788352, 3286788607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286788608, 3286789119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286789120, 3286789631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286789632, 3286790143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286790144, 3286790655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286790656, 3286790911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286790912, 3286791679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286791680, 3286791935, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286791936, 3286794239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286794240, 3286892543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286892544, 3286900735, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286900736, 3286900991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286900992, 3286901503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286901504, 3286902015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286902016, 3286902527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286902528, 3286902783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286902784, 3286903039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286903040, 3286903551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286903552, 3286903807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286903808, 3286904063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286904064, 3286904319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286904320, 3286904575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286904576, 3286904831, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286904832, 3286905087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286905088, 3286905343, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286905344, 3286905599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286905600, 3286905855, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286905856, 3286906111, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286906112, 3286906367, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286906368, 3286906879, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286906880, 3286907135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286907136, 3286907391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286907392, 3286907647, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286907648, 3286907903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286907904, 3286908159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286908160, 3286908415, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286908416, 3286908671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286908672, 3286908927, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286908928, 3286909951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286909952, 3286913023, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286913024, 3286914047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286914048, 3286915071, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286915072, 3286916095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286916096, 3286917119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286917120, 3286918143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286918144, 3286919167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286919168, 3286920191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286920192, 3286921215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286921216, 3286922239, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286922240, 3286923263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286923264, 3286924287, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286924288, 3286925311, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286925312, 3286925567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286925568, 3286925823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286925824, 3286926079, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286926080, 3286926335, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286926336, 3286926591, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286926592, 3286926847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286926848, 3286927103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286927104, 3286927359, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286927360, 3286927615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286927616, 3286927871, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286927872, 3286928383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286928384, 3286928639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286928640, 3286928895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286928896, 3286929151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286929152, 3286929407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286929408, 3286929663, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286929664, 3286929919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286929920, 3286930175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286930176, 3286930431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286930432, 3286930687, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286930688, 3286930943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286930944, 3286931199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286931200, 3286931455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286931456, 3286931711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286931712, 3286931967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286931968, 3286932223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286932224, 3286932479, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286932480, 3286932735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286932736, 3286932991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286932992, 3286933503, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286933504, 3286933759, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286933760, 3286934015, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286934016, 3286934271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286934272, 3286934527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286934528, 3286934783, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286934784, 3286935039, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286935040, 3286935551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286935552, 3286935807, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286935808, 3286936063, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286936064, 3286936319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286936320, 3286936575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286936576, 3286936831, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286936832, 3286937087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286937088, 3286937343, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286937344, 3286937599, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286937600, 3286937855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286937856, 3286938111, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286938112, 3286938367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286938368, 3286938623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286938624, 3286938879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286938880, 3286939391, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286939392, 3286939647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286939648, 3286939903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286939904, 3286940159, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286940160, 3286940415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286940416, 3286940671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286940672, 3286940927, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286940928, 3286941183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286941184, 3286941439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286941440, 3286941695, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286941696, 3286942719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286942720, 3286943743, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286943744, 3286944767, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286944768, 3286945791, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286945792, 3286946815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286946816, 3286947839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286947840, 3286948863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286948864, 3286949887, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286949888, 3286950911, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286950912, 3286951935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286951936, 3286952959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286952960, 3286953983, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286953984, 3286955007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286955008, 3286956031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286956032, 3286957055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286957056, 3286958079, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3286958080, 3287023615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287023616, 3287154687, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287154688, 3287162879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287162880, 3287171071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287171072, 3287171583, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287171584, 3287172095, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287172096, 3287172607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287172608, 3287173119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287173120, 3287173631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287173632, 3287174143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287174144, 3287174655, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287174656, 3287175167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287175168, 3287176191, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287176192, 3287176703, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287176704, 3287177215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287177216, 3287178239, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287178240, 3287178751, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287178752, 3287179263, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287179264, 3287187455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287187456, 3287196671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287196672, 3287198719, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287198720, 3287199743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287199744, 3287201791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287201792, 3287202815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287202816, 3287203839, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287203840, 3287204895, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287204896, 3287204951, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287204952, 3287204959, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287204960, 3287205055, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287205056, 3287212031, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287212032, 3287212543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287212544, 3287212799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287212800, 3287213311, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287213312, 3287213567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287213568, 3287214079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287214080, 3287214335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287214336, 3287214847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287214848, 3287215103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287215104, 3287215359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287215360, 3287215615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287215616, 3287215871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287215872, 3287216127, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287216128, 3287216639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287216640, 3287216895, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287216896, 3287217151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287217152, 3287217407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287217408, 3287217663, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287217664, 3287217919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287217920, 3287218175, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287218176, 3287218431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287218432, 3287218687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287218688, 3287218943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287218944, 3287219199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287219200, 3287219455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287219456, 3287219711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287219712, 3287220223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287220224, 3287223807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287223808, 3287224319, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287224320, 3287259375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287259376, 3287259383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287259384, 3287266303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266304, 3287266359, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266360, 3287266367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266368, 3287266399, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266400, 3287266407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266408, 3287266415, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266416, 3287266815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266816, 3287266847, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266848, 3287266855, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266856, 3287266863, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266864, 3287266879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266880, 3287266887, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287266888, 3287267015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267016, 3287267039, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267040, 3287267159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267160, 3287267167, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267168, 3287267183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267184, 3287267201, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267202, 3287267215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267216, 3287267231, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287267232, 3287270143, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287270144, 3287270399, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287270400, 3287271119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287271120, 3287271127, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287271128, 3287280383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287280384, 3287280639, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287280640, 3287285759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287285760, 3287416831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287416832, 3287425023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287425024, 3287425567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287425568, 3287425583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287425584, 3287427759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287427760, 3287427775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287427776, 3287433215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287433216, 3287433727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287433728, 3287434239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287434240, 3287434751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287434752, 3287435263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287435264, 3287435775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287435776, 3287436287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287436288, 3287436799, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287436800, 3287437311, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287437312, 3287437823, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287437824, 3287438335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287438336, 3287438847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287438848, 3287439359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287439360, 3287439871, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287439872, 3287440895, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287440896, 3287441407, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287441408, 3287442431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287442432, 3287442943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287442944, 3287443967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287443968, 3287444479, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287444480, 3287444991, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287444992, 3287445503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287445504, 3287446527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287446528, 3287447039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287447040, 3287447551, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287447552, 3287448063, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287448064, 3287448575, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287448576, 3287449087, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287449088, 3287449599, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287457792, 3287465983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287465984, 3287467007, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287467008, 3287468031, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287468032, 3287469055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287469056, 3287471103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287471104, 3287472127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287472128, 3287473151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287473152, 3287474175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287474176, 3287476223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287476224, 3287477247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287477248, 3287478271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287478272, 3287479295, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287479296, 3287480319, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287480320, 3287481343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287481344, 3287482367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287482368, 3287498015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287498016, 3287498023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287498024, 3287499279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499280, 3287499287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499288, 3287499295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499296, 3287499439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499440, 3287499471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499472, 3287499487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499488, 3287499503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499504, 3287499575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499576, 3287499583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287499584, 3287501359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287501360, 3287501367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287501368, 3287507983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287507984, 3287507991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287507992, 3287515375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287515376, 3287515383, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287515384, 3287516591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287516592, 3287516599, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287516600, 3287522399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287522400, 3287522431, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287522432, 3287523303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287523304, 3287523311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287523312, 3287526303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287526304, 3287526311, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287526312, 3287541087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287541088, 3287541095, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287541096, 3287542815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287542816, 3287542831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287542832, 3287544647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287544648, 3287544655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287544656, 3287544703, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287544704, 3287544711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287544712, 3287548927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287548928, 3287549439, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287549440, 3287549951, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287549952, 3287550463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287550464, 3287550975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287550976, 3287551487, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287551488, 3287551999, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287552000, 3287552511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287552512, 3287553023, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287553024, 3287553535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287553536, 3287554047, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287554048, 3287554559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287554560, 3287555071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287555072, 3287555583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287555584, 3287556095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287556096, 3287564287, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287564288, 3287572479, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287572480, 3287578735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287578736, 3287578751, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287578752, 3287580671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287580672, 3287588863, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287588864, 3287597055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287597056, 3287605247, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287605248, 3287630335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287630336, 3287630847, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287630848, 3287631359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287631360, 3287631871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287631872, 3287632383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287632384, 3287632895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287632896, 3287633407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287633408, 3287633919, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287633920, 3287634431, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287634432, 3287634943, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287634944, 3287635455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287635456, 3287635967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287635968, 3287636479, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287636480, 3287636991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287636992, 3287637503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287637504, 3287638015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287638016, 3287638527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287638528, 3287639039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287639040, 3287639551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287639552, 3287640063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287640064, 3287640575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287640576, 3287641087, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287641088, 3287641599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287641600, 3287642111, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287642112, 3287642623, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287642624, 3287643135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287643136, 3287643647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287643648, 3287644671, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287644672, 3287645183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287645184, 3287646207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287646208, 3287662591, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287662592, 3287662847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287662848, 3287663103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287663104, 3287663359, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287663360, 3287663615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287663616, 3287663871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287663872, 3287664127, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287664128, 3287664383, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287664384, 3287664639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287664640, 3287664895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287664896, 3287665151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287665152, 3287665407, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287665408, 3287665919, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287665920, 3287666175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287666176, 3287666431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287666432, 3287666687, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287666688, 3287666943, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287666944, 3287667199, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287667200, 3287667455, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287667456, 3287667711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287667712, 3287667967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287667968, 3287668223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287668224, 3287668479, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287668480, 3287668735, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287668736, 3287668991, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287668992, 3287669247, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287669248, 3287669503, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287669504, 3287669759, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287669760, 3287670015, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287670016, 3287670271, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287670272, 3287670527, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287670528, 3287670783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287670784, 3287671039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287671040, 3287671295, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287671296, 3287671551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287671552, 3287671807, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287671808, 3287672063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287672064, 3287672319, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287672320, 3287672575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287672576, 3287672831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287672832, 3287673087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287673088, 3287673343, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287673344, 3287673599, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287673600, 3287673855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287674112, 3287674367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287674368, 3287674623, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287674624, 3287674879, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287674880, 3287675135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287675136, 3287675391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287675392, 3287675647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287675648, 3287675903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287675904, 3287676159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287676160, 3287676415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287676416, 3287676671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287676672, 3287676927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287676928, 3287677183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287677184, 3287677439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287677440, 3287677695, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287677696, 3287677951, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287677952, 3287678207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287678208, 3287678463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287678464, 3287678719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287678720, 3287678975, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287678976, 3287687167, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287687168, 3287695359, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287695360, 3287703551, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287703552, 3287711743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287711744, 3287719935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287719936, 3287728127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287728128, 3287729407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287729408, 3287729663, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287729664, 3287729919, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287729920, 3287730175, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287730176, 3287730431, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287730432, 3287730687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287730688, 3287732223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287732224, 3287734271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287734272, 3287734783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287734784, 3287735039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287735040, 3287735295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287735296, 3287736319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287736320, 3287736831, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287736832, 3287737343, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287737344, 3287737855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287737856, 3287738879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287738880, 3287739391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287739392, 3287739903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287739904, 3287740415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287740416, 3287740927, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287740928, 3287741439, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287741440, 3287741951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287741952, 3287742463, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287742464, 3287742975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287742976, 3287743487, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287743488, 3287743999, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287744000, 3287744511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287744512, 3287810047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287810048, 3287816495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287816496, 3287816511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287816512, 3287818239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287818240, 3287826431, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287826432, 3287826687, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287826688, 3287826943, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287826944, 3287827199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287827200, 3287827455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287827456, 3287827711, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287827712, 3287827967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287827968, 3287828223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287828224, 3287828479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287828480, 3287828735, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287828736, 3287828991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287828992, 3287829247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287829248, 3287829503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287829504, 3287829759, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287829760, 3287830015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287830016, 3287830271, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287830272, 3287830527, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287830528, 3287830783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287830784, 3287831039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287831040, 3287831295, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287831296, 3287831551, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287831552, 3287831807, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287834624, 3287842815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287842816, 3287851007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287851008, 3287859199, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287859200, 3287859455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287859456, 3287859711, N'FK', N'Falkland Islands (Malvinas)') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287859712, 3287859967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287859968, 3287860479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287860480, 3287861247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287861248, 3287862015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287862016, 3287863807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287863808, 3287864063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287864064, 3287866383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287866384, 3287866439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287866440, 3287866495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287866496, 3287866591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287866592, 3287866607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287866608, 3287866623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287866624, 3287867391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287867392, 3287875583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287875584, 3287941119, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287941120, 3287949311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287949312, 3287949567, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287949568, 3287949823, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287949824, 3287950079, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287950080, 3287950335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287950336, 3287950591, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287950592, 3287950847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287950848, 3287951103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287951104, 3287951359, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287951360, 3287951615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287951616, 3287951871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287951872, 3287952127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287952128, 3287952383, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287952384, 3287953151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287953152, 3287953407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287953408, 3287953663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287953664, 3287953919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287953920, 3287954175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287954176, 3287954431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287954432, 3287954687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287954688, 3287954943, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287954944, 3287955199, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287955200, 3287955711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287955712, 3287955967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287955968, 3287956223, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287956224, 3287956479, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287956480, 3287956735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287956736, 3287956991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287956992, 3287957247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287957248, 3287957503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287957504, 3287965695, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287965696, 3287973887, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287973888, 3287982079, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287982080, 3287990271, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287990272, 3287998463, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3287998464, 3288006655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288006656, 3288007711, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288007712, 3288007743, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288007744, 3288072191, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288072192, 3288088575, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288088576, 3288089591, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288089592, 3288089599, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288089600, 3288102543, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288102544, 3288102551, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288102552, 3288104959, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288104960, 3288143615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288143616, 3288143871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288143872, 3288145663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288145664, 3288146175, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288146176, 3288236031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288236032, 3288236543, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288236544, 3288237055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288237056, 3288239615, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288239616, 3288240127, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288240128, 3288240639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288240640, 3288241151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288241152, 3288241663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288241664, 3288242175, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288242176, 3288242687, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288242688, 3288243199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288243200, 3288243711, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288243712, 3288244223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288244224, 3288252415, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288252416, 3288260607, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288260608, 3288268799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288268800, 3288334335, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288334336, 3288399871, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288400128, 3288400383, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288400384, 3288400639, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288400640, 3288400895, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288401152, 3288401407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288401408, 3288401663, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288401664, 3288401919, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288401920, 3288406527, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288407040, 3288408063, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288408064, 3288413183, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288413184, 3288414207, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288414208, 3288416255, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288416256, 3288417279, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288417280, 3288417535, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288417536, 3288418047, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288418304, 3288418815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288418816, 3288423423, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288423424, 3288425727, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288425728, 3288426495, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288426496, 3288427263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288427264, 3288427519, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288427520, 3288428543, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288428544, 3288428799, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288428800, 3288429311, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288430080, 3288430335, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288430592, 3288432639, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288432640, 3288433151, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288433152, 3288434175, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288434176, 3288434431, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288434432, 3288434687, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288434688, 3288435967, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288435968, 3288436223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288436224, 3288436479, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288436736, 3288440831, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288440832, 3288441103, N'VC', N'Saint Vincent and the Grenadines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288441104, 3288442879, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288442880, 3288443135, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288443136, 3288443647, N'VC', N'Saint Vincent and the Grenadines') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288443648, 3288444927, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288444928, 3288449023, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288449024, 3288465407, N'SD', N'Sudan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288465408, 3288465919, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288466432, 3288467455, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288467456, 3288469503, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288469504, 3288485887, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288485888, 3288489983, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288489984, 3288514559, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288514560, 3288530943, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288530944, 3288532991, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288532992, 3288535039, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288535040, 3288539135, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288539136, 3288545535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288546304, 3288547327, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288547328, 3288547583, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288547584, 3288547839, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288547840, 3288548095, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288548096, 3288549375, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288549376, 3288549631, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288549632, 3288549887, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288549888, 3288553983, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288553984, 3288554239, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288554240, 3288554495, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288554496, 3288555007, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288555008, 3288555263, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288555264, 3288555519, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288555520, 3288557567, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288557568, 3288557823, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288558080, 3288558335, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288558336, 3288558847, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288558848, 3288559103, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288559104, 3288564735, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288564736, 3288568831, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288568832, 3288569855, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288569856, 3288570111, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288570112, 3288570367, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288570368, 3288577023, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288577024, 3288578047, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288578048, 3288580095, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288580096, 3288588287, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288588288, 3288608255, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288608256, 3288614655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288614656, 3288616959, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288616960, 3288617215, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288617216, 3288661759, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288661760, 3288662015, N'LS', N'Lesotho') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3288662016, 3289070591, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289070592, 3289070847, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289070848, 3289086975, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289086976, 3289087231, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289087232, 3289120767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289120768, 3289123327, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289123840, 3289124863, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289124864, 3289128959, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289128960, 3289137151, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289137152, 3289153535, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289153536, 3289161727, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289161728, 3289169919, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289169920, 3289186303, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289186304, 3289229311, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289229312, 3289229567, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289229568, 3289321471, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289321472, 3289325567, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289325568, 3289333759, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289333760, 3289376767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289376768, 3289378815, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289378816, 3289645055, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289645056, 3289653247, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289653248, 3289661439, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289661440, 3289677823, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289710592, 3289777407, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289777408, 3289777663, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289778176, 3289779199, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289779200, 3289780223, N'GW', N'Guinea-Bissau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289780224, 3289788415, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289788416, 3289792511, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289792512, 3289796607, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289796608, 3289796863, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289796864, 3289812991, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289812992, 3289817087, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289817088, 3289907199, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289907200, 3289908223, N'LS', N'Lesotho') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289908224, 3289923583, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289923584, 3289924607, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3289924608, 3290103807, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290103808, 3290104319, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290104320, 3290104831, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290104832, 3290106879, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290106880, 3290107135, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107136, 3290107151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107152, 3290107167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107168, 3290107231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107232, 3290107263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107264, 3290107311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107312, 3290107343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107344, 3290107359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107360, 3290107375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107376, 3290107383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107384, 3290107391, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107392, 3290107647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290107648, 3290108415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290108416, 3290108671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290108672, 3290108927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290108928, 3290109183, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290109184, 3290109439, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290109440, 3290109695, N'ET', N'Ethiopia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290109696, 3290110207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290110208, 3290110463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290110464, 3290110719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290110720, 3290110975, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290110976, 3290111487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290111488, 3290111743, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290111744, 3290111999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290112000, 3290112143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290112144, 3290116095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290116096, 3290118399, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290118400, 3290120191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290120192, 3290128383, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290128384, 3290136575, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290169344, 3290171135, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290171136, 3290171391, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290171392, 3290181631, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290181632, 3290185727, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290185728, 3290226687, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290226688, 3290230783, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290230784, 3290234879, N'BF', N'Burkina Faso') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290234880, 3290243071, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290243072, 3290245119, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290245120, 3290246143, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290247168, 3290249215, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290251264, 3290259455, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290259456, 3290267647, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290267648, 3290275839, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290275840, 3290284031, N'SD', N'Sudan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290284032, 3290288127, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290288128, 3290292223, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290292224, 3290296319, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290296320, 3290431487, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290431488, 3290433535, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290439680, 3290447871, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290447872, 3290456063, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290456064, 3290460159, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290464256, 3290464767, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290464768, 3290468351, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290468352, 3290468607, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290468608, 3290469887, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290469888, 3290470143, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290470144, 3290471487, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290471488, 3290471551, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290471552, 3290472447, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290472448, 3290480639, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290480640, 3290482687, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290482688, 3290484735, N'CF', N'Central African Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290497024, 3290955775, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290955776, 3290980351, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3290980352, 3290984447, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291021312, 3291029503, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291029504, 3291033343, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291033344, 3291033599, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291033600, 3291037695, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291037696, 3291078655, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291078656, 3291086847, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291086848, 3291103231, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291152384, 3291168767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291168768, 3291176959, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291176960, 3291185151, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291217920, 3291230207, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291230208, 3291234303, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291234304, 3291242495, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291242496, 3291250687, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291250688, 3291258879, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291258880, 3291262975, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291262976, 3291267071, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291267072, 3291279359, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291279360, 3291283455, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291283456, 3291287551, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291287552, 3291291647, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291291648, 3291293375, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291293376, 3291293439, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291293440, 3291295743, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291299840, 3291316223, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291316224, 3291324415, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291324416, 3291325439, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291325440, 3291326463, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291326464, 3291330559, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291330560, 3291331583, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291331584, 3291332607, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291332608, 3291348991, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291348992, 3291353087, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291357184, 3291365375, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291365376, 3291367423, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291367424, 3291369471, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291373568, 3291377663, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291377664, 3291379711, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291379712, 3291380735, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291380736, 3291381759, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291381760, 3291383807, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291383808, 3291385855, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291385856, 3291386879, N'NG', N'Nigeria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291386880, 3291387903, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291387904, 3291388927, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291388928, 3291389951, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291389952, 3291397119, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291397120, 3291398143, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291398144, 3291406335, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291406336, 3291408383, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291408384, 3291410431, N'GM', N'Gambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291410432, 3291412479, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291412480, 3291414527, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291414528, 3291447295, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3291447296, 3291463679, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3300917248, 3300921343, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3300925440, 3300929535, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3300933632, 3300950015, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301441536, 3301445631, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301445632, 3301453823, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301453824, 3301457919, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301457920, 3301462015, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301462016, 3301466111, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301466112, 3301470207, N'ER', N'Eritrea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301470208, 3301474303, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301474304, 3301490687, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301490688, 3301494783, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301494784, 3301498879, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301498880, 3301507071, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301507328, 3301507583, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301507584, 3301507839, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301507840, 3301508095, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301508096, 3301508607, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301510144, 3301511167, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301511168, 3301513215, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301513216, 3301515263, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301515264, 3301523455, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301523456, 3301531647, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301539840, 3301543935, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301543936, 3301543951, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301543952, 3301543967, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301543968, 3301544191, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301544192, 3301544959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301544960, 3301548031, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301548032, 3301556223, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301556224, 3301560319, N'DJ', N'Djibouti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301560320, 3301566463, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301566464, 3301568511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301568512, 3301570559, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301570560, 3301572607, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301572608, 3301605375, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301605376, 3301613567, N'SD', N'Sudan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301613568, 3301621759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301621760, 3301629951, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301629952, 3301631999, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301632000, 3301634047, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301634048, 3301636095, N'LS', N'Lesotho') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301636096, 3301637119, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301637120, 3301638143, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301638144, 3301703679, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301703680, 3301834751, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301834752, 3301900287, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301900288, 3301904383, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301904384, 3301908479, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301908480, 3301912575, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301912576, 3301916671, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301933056, 3301949439, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301949440, 3301965823, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3301965824, 3302227967, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302449152, 3302449279, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302490368, 3302490623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302490624, 3302491135, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302491136, 3302492159, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302492160, 3302494207, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302494208, 3302496255, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302498304, 3302506495, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302506496, 3302514687, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302522880, 3302524927, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302524928, 3302525951, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302525952, 3302526975, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302555648, 3302621183, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302621184, 3302752255, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302752256, 3302760447, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302760448, 3302768639, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302817792, 3302883327, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302883328, 3302948863, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302948864, 3302949119, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302949120, 3302949375, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302949376, 3302949631, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3302949632, 3302949887, N'BI', N'Burundi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3321954304, 3321970687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322019840, 3322023935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322023936, 3322028031, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322085376, 3322167551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322167552, 3322167807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322167808, 3322202111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322202112, 3322203135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322203136, 3322250975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322250976, 3322251007, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322251008, 3322251335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322251336, 3322251343, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322251344, 3322254607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322254608, 3322254623, N'AR', N'Argentina') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322254624, 3322254719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322254720, 3322254783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322254784, 3322339583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322339584, 3322339839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322339840, 3322609663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322609664, 3322610687, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322610688, 3322611711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322613760, 3322642431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322675200, 3322683391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322683392, 3322691583, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322740736, 3322773503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322806272, 3322875903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322875904, 3322888191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3322937344, 3322945535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323003136, 3323003391, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323003392, 3323003647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323004160, 3323004671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323004672, 3323004927, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323004928, 3323013631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323013888, 3323014143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323014144, 3323017727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323017728, 3323017983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323017984, 3323018239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323018752, 3323020799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323020800, 3323021055, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323021056, 3323022591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323022592, 3323022847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323022848, 3323027455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323027456, 3323027711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323027712, 3323030015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323030016, 3323030271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323030272, 3323031039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323031552, 3323032575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323032576, 3323032831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323032832, 3323033087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323033088, 3323033343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323033600, 3323034111, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323034112, 3323038719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323038720, 3323038975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323038976, 3323048959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323048960, 3323049727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323049728, 3323061247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323061248, 3323061503, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323061504, 3323062015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323062016, 3323062527, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323062784, 3323064319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323064320, 3323064831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323064832, 3323068415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323201536, 3323203583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323203584, 3323207679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323207680, 3323215871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323265024, 3323297791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323330816, 3323331071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323331072, 3323331839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323331840, 3323339263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323339264, 3323339519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323339520, 3323339775, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323340032, 3323340287, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323340288, 3323342335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323342592, 3323343615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323343616, 3323343871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323343872, 3323345919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323346176, 3323346431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323346432, 3323354367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323354368, 3323355647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323355904, 3323356671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323356672, 3323356927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323356928, 3323378687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323378688, 3323378943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323378944, 3323391231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323391232, 3323391487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323391488, 3323394559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323394560, 3323395071, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323395072, 3323412479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323461632, 3323659263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323659264, 3323660543, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323662336, 3323674623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3323723776, 3324051455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324051456, 3324182527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324182528, 3324256255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324256256, 3324259327, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324259328, 3324259583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324259584, 3324259839, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324259840, 3324260095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324264448, 3324379135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324379136, 3324380159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324380160, 3324391423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324395520, 3324399615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324411904, 3324579839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324579840, 3324583935, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324583936, 3324588031, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324592128, 3324596223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324641280, 3324642303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324642304, 3324642559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324642560, 3324645887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324645888, 3324646143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324646144, 3324646911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324646912, 3324647167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324647168, 3324647679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324647680, 3324647935, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324647936, 3324650495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324650496, 3324650751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324650752, 3324653311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324653312, 3324653567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324653568, 3324655359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324655360, 3324655615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324655616, 3324655871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324655872, 3324656127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324656128, 3324659967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324659968, 3324660223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324660224, 3324660479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324660480, 3324660735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324660736, 3324662015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324662016, 3324662271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324662272, 3324662527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324662528, 3324662783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324662784, 3324664319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324664320, 3324664575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324664576, 3324665855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324665856, 3324666367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324666368, 3324668415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324668416, 3324668671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324668672, 3324672767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324672768, 3324673023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324673024, 3324674815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324674816, 3324675327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324675328, 3324676351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324676352, 3324676863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324676864, 3324678143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324678144, 3324678399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324678400, 3324678911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324678912, 3324679167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324679168, 3324679423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324679424, 3324679935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324679936, 3324681215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324681216, 3324681471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324681472, 3324682495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324682496, 3324682751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324682752, 3324684799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324684800, 3324685055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324685056, 3324686335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324686336, 3324686591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324686592, 3324690687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324690688, 3324690943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324690944, 3324692991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324692992, 3324693247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324693248, 3324693503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324693504, 3324693759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324693760, 3324694015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324694016, 3324694271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324694272, 3324694527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324694528, 3324695039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324695040, 3324695551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324695552, 3324696575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324696576, 3324696831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324696832, 3324697087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324697088, 3324698623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324698624, 3324699135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324699136, 3324699391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324699392, 3324699647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324699648, 3324701183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324701184, 3324702207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324702208, 3324703999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324704000, 3324704255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324704256, 3324706303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324706304, 3324706559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3324706560, 3325034495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325034496, 3325035519, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325035520, 3325046783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325050880, 3325059071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325100288, 3325100543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325100544, 3325100799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325100800, 3325101055, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325101056, 3325108223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325108224, 3325110271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325110272, 3325112319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325120512, 3325122047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325122304, 3325122559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325122560, 3325128703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325128704, 3325129215, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325129216, 3325131775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325131776, 3325132031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325132032, 3325132799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325132800, 3325134335, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325134336, 3325134591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325134848, 3325135359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325136128, 3325136383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325136384, 3325136639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325136896, 3325142015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325142016, 3325142271, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325142272, 3325144831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325144832, 3325145087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325145088, 3325158655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325158656, 3325158911, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325158912, 3325169663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325169664, 3325171711, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325173760, 3325190143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325231104, 3325232127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325232128, 3325233151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325233152, 3325234175, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325234176, 3325234431, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325234432, 3325249279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325249280, 3325249535, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325249536, 3325256447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325256448, 3325256703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325256960, 3325257215, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325257216, 3325257727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325258752, 3325259775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325259776, 3325261311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325261312, 3325264895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325266944, 3325267711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325267712, 3325268735, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325268736, 3325269759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325269760, 3325270015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325270016, 3325271039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325271040, 3325271295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325271296, 3325271551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325271808, 3325278719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325278720, 3325278975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325278976, 3325281023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325281024, 3325281279, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325281280, 3325281535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325281536, 3325284863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325284864, 3325285375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325285376, 3325304831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325304832, 3325307647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325307648, 3325307903, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325307904, 3325308927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325313024, 3325321215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325362176, 3325427711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325427712, 3325460479, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325463808, 3325464319, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325464320, 3325465087, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325465088, 3325493247, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325493248, 3325497343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325497344, 3325501439, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325501440, 3325505535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325509632, 3325517823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325526016, 3325562879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325562880, 3325566975, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325566976, 3325591551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325624320, 3325640703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325640704, 3325644799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325689856, 3325690367, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325690368, 3325691903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325691904, 3325693951, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325693952, 3325700095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325706240, 3325708287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325755392, 3325886463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325886464, 3325887487, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325887488, 3325888511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325888512, 3325890559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325890560, 3325911039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325952000, 3325956095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325956096, 3325960191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325960192, 3325976063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325976064, 3325976319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325976320, 3325980671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325980672, 3325980927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325980928, 3325992447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325992448, 3325992959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325992960, 3325996799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325996800, 3325997055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3325997056, 3326349823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326349824, 3326350335, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326350336, 3326390527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326390528, 3326390535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326390536, 3326400639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326400640, 3326400655, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326400656, 3326402111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326402112, 3326402119, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326402120, 3326406655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326406656, 3326408703, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326408704, 3326413823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326413824, 3326414335, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326414336, 3326476495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326476496, 3326476503, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326476504, 3326492239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326492240, 3326492255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326492256, 3326526463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326526464, 3326526719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326526720, 3326574591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326607360, 3326640127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326680832, 3326682623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326682624, 3326682879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326682880, 3326713343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326713344, 3326714111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326714112, 3326716927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326716928, 3326717951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326717952, 3326729215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326729216, 3326729471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326729472, 3326729727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326729728, 3326734335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326734336, 3326737663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326737664, 3326737919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326737920, 3326738175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326738432, 3326952191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326952192, 3326952447, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326952448, 3326953983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326953984, 3326954495, N'AS', N'American Samoa') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3326954496, 3327144959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327144960, 3327145983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327145984, 3327162367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327162368, 3327162623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327162624, 3327162879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327162880, 3327163391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327163392, 3327256831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327256832, 3327257087, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327257088, 3327723519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327723520, 3327725567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327725568, 3327733759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327737856, 3327746047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327754240, 3327995903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327995904, 3327996927, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3327996928, 3328028671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328028672, 3328030719, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328030720, 3328180223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328180224, 3328245759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328245760, 3328299263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328299264, 3328299519, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328299520, 3328299775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328303104, 3328414719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328414720, 3328414975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328414976, 3328420351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328420352, 3328420607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328420608, 3328421119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328421120, 3328421375, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328421376, 3328432639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328432640, 3328433663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328433664, 3328433919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328433920, 3328475135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328475136, 3328477183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328507904, 3328524287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328573440, 3328617983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328617984, 3328618239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328618240, 3328630783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328630784, 3328631807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328631808, 3328638975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328638976, 3328704511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328704512, 3328774399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328774400, 3328775935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328775936, 3328776703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328778240, 3328782335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328786432, 3328790527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3328802816, 3329230335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3329230336, 3329230591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3329230592, 3329497343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3329497344, 3329497599, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3329497600, 3329498623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3329498624, 3329498879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3329498880, 3330613247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330613248, 3330623743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330623744, 3330624255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330624512, 3330625535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330625536, 3330627071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330627072, 3330640895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330640896, 3330641151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330641152, 3330646527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330646528, 3330647295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330647296, 3330647807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330648064, 3330649343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330649600, 3330649855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330649856, 3330662911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330662912, 3330663167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330663168, 3330664191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330664192, 3330664447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330664448, 3330714367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330714368, 3330714623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330714624, 3330726655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330726656, 3330726911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330726912, 3330754559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330754560, 3330754815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330754816, 3330755071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330755328, 3330763519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330763520, 3330763775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330763776, 3330765823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330765824, 3330766335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330766336, 3330771199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330771200, 3330771711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330771712, 3330778879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330778880, 3330779135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330779136, 3330791423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330791424, 3330791679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330791680, 3330883583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330883584, 3330884351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330884352, 3330884863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330884864, 3330885119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330885120, 3330888063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330888064, 3330888127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330888128, 3330888191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330888192, 3330888703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330888704, 3330888959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330888960, 3330889215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330889216, 3330889471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330889472, 3330890239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330890240, 3330890751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330890752, 3330891263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330891264, 3330892287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330892288, 3330892543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330892544, 3330893567, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330893568, 3330893823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330893824, 3330894079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330894080, 3330894591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330894592, 3330894847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330894848, 3330897919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330897920, 3330898175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330898176, 3330898431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330898432, 3330898943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3330898944, 3331102463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331102464, 3331102719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331102720, 3331194879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331194880, 3331260415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331260416, 3331563519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331563520, 3331563775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331563776, 3331633407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331633408, 3331633919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331633920, 3331647231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331647232, 3331647487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331647488, 3331649279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331649280, 3331649535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331649536, 3331818495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331818496, 3331818751, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3331818752, 3332440063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332440064, 3332460543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332460544, 3332460799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332460800, 3332528127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332528128, 3332529663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332529664, 3332590079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332590080, 3332590591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332590592, 3332618239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332618240, 3332624383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332624384, 3332966143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332966144, 3332966399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3332966400, 3333012479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333012480, 3333012991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333012992, 3333029887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333029888, 3333385983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333385984, 3333386239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333386240, 3333701887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333701888, 3333702143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333702144, 3333702399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333702400, 3333702655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333702656, 3333705727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333705728, 3333709567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333709568, 3333710335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333710336, 3333710591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333710592, 3333710847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333710848, 3333711359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333711360, 3333712127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333712128, 3333712383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333712384, 3333712639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333712640, 3333716223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333716224, 3333716735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333716736, 3333716991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333716992, 3333717247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333717248, 3333717503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333717504, 3333717759, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333717760, 3333718015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333718016, 3333859839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333859840, 3333860095, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333860096, 3333988607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333988608, 3333988863, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333988864, 3333997823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333997824, 3333998079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3333998080, 3334138623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3334138624, 3334138879, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3334138880, 3334187775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3334187776, 3334188031, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3334188032, 3334995967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3334995968, 3335000063, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335000064, 3335004159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335028736, 3335251967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335252224, 3335252735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335252736, 3335252991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335252992, 3335276287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335276288, 3335276799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335276800, 3335439615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335439616, 3335439871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335439872, 3335440383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335440384, 3335441151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335441152, 3335458815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335458816, 3335460863, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335462912, 3335475199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335475200, 3335475455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335475456, 3335480191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335480192, 3335480319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335480320, 3335860991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335860992, 3335861247, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3335861248, 3337043967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337043968, 3337060351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337060352, 3337289727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337289728, 3337297919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337297920, 3337302015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337302016, 3337335295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337335296, 3337335807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337335808, 3337355263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337355264, 3337650175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337650176, 3337682943, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337682944, 3337961471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337977856, 3337980671, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337980672, 3337980927, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337980928, 3337986047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337986048, 3337986303, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3337986304, 3338069247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338069248, 3338069759, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338069760, 3338207487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338207488, 3338207743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338207744, 3338208511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338208512, 3338208767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338208768, 3338211071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338211072, 3338211327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338211328, 3338211583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338211584, 3338212095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338212096, 3338215423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338215424, 3338215935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338215936, 3338216447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338216448, 3338216703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338216704, 3338217215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338217216, 3338217471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338217472, 3338220543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338220544, 3338221055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338221056, 3338222847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338222848, 3338223359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338223360, 3338225151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338225152, 3338225407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338225408, 3338228735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338228736, 3338228991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338228992, 3338229759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338229760, 3338230015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338230016, 3338230527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338230528, 3338230783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338230784, 3338231807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338231808, 3338232063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338232064, 3338233599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338233600, 3338233855, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338233856, 3338235135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338235136, 3338235391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338235392, 3338235647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338235648, 3338235903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338235904, 3338236671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338236672, 3338236927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338236928, 3338238975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338238976, 3338239231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338239232, 3338239999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338240000, 3338240255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338240256, 3338241535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338241536, 3338242047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338242048, 3338246143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338246144, 3338246399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338246400, 3338246655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338246656, 3338247167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338247168, 3338247423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338247424, 3338247679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338247680, 3338247935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338247936, 3338249215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338249216, 3338249727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338249728, 3338249983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338249984, 3338250751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338250752, 3338251775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338251776, 3338252543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338252544, 3338252799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338252800, 3338253311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338253312, 3338253567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338253568, 3338254079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338254080, 3338254335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338254336, 3338255615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338255616, 3338255871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338255872, 3338257407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338257408, 3338257663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338257664, 3338257919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338257920, 3338258175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338258176, 3338258431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338258432, 3338258687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338258688, 3338259455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338259456, 3338259711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338259712, 3338260735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338260736, 3338262015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338262016, 3338262527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338262528, 3338263039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338263040, 3338264063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338264064, 3338264575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338264576, 3338265855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338265856, 3338266623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338266624, 3338267647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338267648, 3338268159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338268160, 3338269183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338269184, 3338270207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338270208, 3338270719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338270720, 3338271231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338271232, 3338271487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338271488, 3338271743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338271744, 3338271999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338272000, 3338272255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338272256, 3338686463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338686464, 3338688511, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338688512, 3338689535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338689536, 3338689791, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338689792, 3338825727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338825728, 3338827775, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338827776, 3338912767, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338912768, 3338913023, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338913024, 3338916351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338916352, 3338916479, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3338916480, 3339075583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339075584, 3339076863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339076864, 3339077631, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339077632, 3339077887, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339077888, 3339079167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339079168, 3339079423, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339079424, 3339079679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339079680, 3339080703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339080704, 3339080959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339080960, 3339081727, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339081728, 3339081983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339081984, 3339082751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339082752, 3339086335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339086336, 3339086591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339086592, 3339091967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339091968, 3339094015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339094016, 3339142655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339142656, 3339142911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339142912, 3339145471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339145728, 3339145983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339145984, 3339146239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339146752, 3339147007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339148288, 3339148543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339190272, 3339350527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339350528, 3339350783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339350784, 3339373055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339373568, 3339374079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339375104, 3339375615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339375616, 3339376127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3339376128, 3340107775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3340107776, 3340369919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3340369920, 3340429823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3340429824, 3340430079, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3340430080, 3340451839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3340500992, 3340584703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3340584704, 3340584959, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3340584960, 3341484287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341484288, 3341485055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341485056, 3341511679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341511680, 3341531135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341531136, 3341534207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341534976, 3341544959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341544960, 3341546239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341546240, 3341547007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341547008, 3341547519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341547520, 3341549567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341549568, 3341631487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341631488, 3341647871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3341647872, 3342139391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342139392, 3342204927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342204928, 3342598143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342598144, 3342603263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342603264, 3342604799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342604800, 3342605311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342605312, 3342605567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342605568, 3342663679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3342663680, 3343319039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3343319040, 3343320575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3343320576, 3343321087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3343321088, 3343384575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3343384576, 3344171007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344171008, 3344257023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344261120, 3344268543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344268544, 3344269311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344269312, 3344302079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344302080, 3344633855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344633856, 3344637951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344637952, 3344642047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344695296, 3344937471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344937472, 3344937983, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344937984, 3344938239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344938240, 3344938495, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344938496, 3344955391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344955392, 3344955647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3344955648, 3345367039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345416192, 3345432575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345432576, 3345433599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345433600, 3345433855, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345433856, 3345434879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345434880, 3345435135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345435136, 3345435391, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345435392, 3345436671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345436672, 3345436927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345436928, 3345437183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345437184, 3345437695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345437696, 3345437951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345438208, 3345438463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345438464, 3345438975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345439232, 3345439743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345439744, 3345439999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345440000, 3345440255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345440256, 3345440767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345440768, 3345441791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345442304, 3345442559, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345442560, 3345442815, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345442816, 3345443327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345443328, 3345443583, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345443584, 3345443839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345444096, 3345444607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345444608, 3345445119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345445120, 3345445375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345445376, 3345446399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345446656, 3345446911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345446912, 3345447679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345447680, 3345448447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345448448, 3345448703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345448704, 3345448959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345448960, 3345666567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345666568, 3345666591, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345666592, 3345666639, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345666640, 3345667103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345667104, 3345667119, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3345667120, 3346621695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3346621696, 3346622207, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3346622208, 3346923519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3346923520, 3346989055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3346989056, 3347005439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3347054592, 3349268479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349268480, 3349268991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349268992, 3349273087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349273088, 3349273343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349273344, 3349341695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349341696, 3349341951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349341952, 3349446911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349446912, 3349447167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349447168, 3349532671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349532672, 3349533695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349533696, 3349544959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349544960, 3349551103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349551104, 3349553151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349553152, 3349608447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349608448, 3349609215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349609216, 3349610495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349610496, 3349614591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349676032, 3349987327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349987328, 3349996543, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349996544, 3349997055, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3349997056, 3350003711, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350003712, 3350042879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350042880, 3350043135, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350043136, 3350134783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350134784, 3350200319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350200320, 3350790143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350790144, 3350825727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350825728, 3350825983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350825984, 3350855679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350855680, 3350862079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350862080, 3350864639, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350864640, 3350953983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350986752, 3350994943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350994944, 3350995199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350995200, 3350997503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350997504, 3350997759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3350997760, 3350998015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351052288, 3351068671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351117824, 3351232511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351232512, 3351232767, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351232768, 3351380223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351380224, 3351380479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351380480, 3351380735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351380736, 3351381759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351381760, 3351382271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351382272, 3351382527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351382528, 3351383039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351383040, 3351383295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351383296, 3351384319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351384320, 3351384575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351384576, 3351385343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351385344, 3351385599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351385600, 3351386111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351386112, 3351386367, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351386368, 3351386623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351386624, 3351386879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351386880, 3351387135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351387136, 3351387391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351387392, 3351387903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351387904, 3351388159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351388160, 3351388927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351388928, 3351389439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351389440, 3351390463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351390464, 3351390975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351390976, 3351392511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351392512, 3351392767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351392768, 3351393279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351393280, 3351393535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351393536, 3351394815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351394816, 3351395071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351395072, 3351396095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351396096, 3351396351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351396352, 3351397375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351397376, 3351397631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351397632, 3351397887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351397888, 3351398143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351398144, 3351398399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351398400, 3351398655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351398656, 3351398911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351398912, 3351399167, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351399168, 3351399423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351399424, 3351399935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351399936, 3351400191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351400192, 3351400447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351400448, 3351400959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351400960, 3351401215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351401216, 3351401983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351401984, 3351402239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351402240, 3351402495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351402496, 3351403775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351403776, 3351404031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351404032, 3351404287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351404288, 3351405311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351405312, 3351405567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351405568, 3351405823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351405824, 3351406079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351406080, 3351407103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351407104, 3351407359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351407360, 3351407615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351407616, 3351408127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351408128, 3351408895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351408896, 3351409407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351409408, 3351410687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351410688, 3351410943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351410944, 3351411711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351411712, 3351411967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351411968, 3351412223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351412224, 3351412479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351412480, 3351412735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351412736, 3351413247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351413248, 3351413503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351413504, 3351413759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351413760, 3351414271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351414272, 3351414783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351414784, 3351415039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351415040, 3351415551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351415552, 3351415807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351415808, 3351416063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351416064, 3351417087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351417088, 3351417599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351417600, 3351417855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351417856, 3351418111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351418112, 3351419647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351419648, 3351419903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351419904, 3351423743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351423744, 3351423999, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351424000, 3351427071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351427072, 3351427327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351427328, 3351428351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351428352, 3351428607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351428608, 3351436031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351436032, 3351436287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351436288, 3351436543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351436544, 3351436799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351436800, 3351437055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351437056, 3351437311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351437312, 3351437567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351437568, 3351437823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351437824, 3351438079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351438080, 3351438335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351438336, 3351438591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351438592, 3351439103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351439104, 3351441151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351441152, 3351441407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351441408, 3351441919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351441920, 3351442175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351442176, 3351478271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351511040, 3351524095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351524096, 3351524351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351524352, 3351642111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351642112, 3351698431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351698432, 3351904255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351904256, 3351969791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3351969792, 3352035327, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352035328, 3352512511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352512512, 3352513279, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352513280, 3352551167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352551168, 3352551679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352551680, 3352559615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352559616, 3352615423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352615424, 3352616959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352616960, 3352887295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3352887296, 3353722367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353722368, 3353722623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353722624, 3353729023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353729024, 3353729279, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353729280, 3353730047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353739264, 3353979647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353979648, 3353979903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353979904, 3353982719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353982720, 3353983231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3353983232, 3353993215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354001408, 3354066943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354066944, 3354132479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354132480, 3354591231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354591232, 3354656767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354656768, 3354782719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354782720, 3354782975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354782976, 3354787839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354787840, 3354918911, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354918912, 3354955775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354955776, 3354956031, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3354956032, 3355351039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355351040, 3355351295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355351296, 3355372287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355372288, 3355372543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355372544, 3355377663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355443200, 3355445247, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355445248, 3355447295, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355447296, 3355447551, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355447552, 3355447807, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355449344, 3355450367, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355450368, 3355451391, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355451392, 3355459071, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355459072, 3355459327, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355459328, 3355459583, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355459584, 3355459839, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355459840, 3355460095, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355460096, 3355460351, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355460352, 3355461887, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355461888, 3355463423, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355463424, 3355463935, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355463936, 3355464191, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355464192, 3355464447, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355464448, 3355464959, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355464960, 3355465727, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355465728, 3355465983, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355465984, 3355467263, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355467264, 3355467519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355467520, 3355467775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355467776, 3355468799, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355468800, 3355469567, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355469568, 3355470591, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355470592, 3355470847, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355470848, 3355471103, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355471104, 3355471359, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355471360, 3355471615, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355471616, 3355472383, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355472384, 3355472639, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355472640, 3355473407, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355473408, 3355473919, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355473920, 3355475199, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355475200, 3355478015, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355478016, 3355478271, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355478272, 3355478783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355478784, 3355479039, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355479040, 3355479551, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355479552, 3355479807, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355479808, 3355480063, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355480064, 3355485183, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355485184, 3355488255, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355488256, 3355488767, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355489280, 3355489535, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355489536, 3355494655, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355494656, 3355494911, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355495424, 3355496447, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355496448, 3355498495, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355498496, 3355500543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355500544, 3355508735, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355508736, 3355510271, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355510272, 3355510527, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355510784, 3355512831, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355512832, 3355516927, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355516928, 3355525119, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355525120, 3355535359, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355535360, 3355537407, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355537920, 3355538175, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355538176, 3355538431, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355538432, 3355539199, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355539200, 3355539455, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355539456, 3355540479, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355540480, 3355540735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355540736, 3355540991, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355540992, 3355541503, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355541504, 3355545599, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355545600, 3355547647, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355547648, 3355547903, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355547904, 3355548159, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355548160, 3355548671, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355548672, 3355549695, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355549696, 3355549951, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355549952, 3355550207, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355550208, 3355552767, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355552768, 3355553023, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355553024, 3355553279, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355553280, 3355553535, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355553536, 3355553791, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355553792, 3355555839, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355555840, 3355557887, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355557888, 3355559935, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355559936, 3355561983, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355561984, 3355564031, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355566080, 3355574271, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355574272, 3355576319, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355576320, 3355578367, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355578368, 3355582463, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355582464, 3355590655, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355590656, 3355592703, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355592704, 3355599871, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355599872, 3355600895, N'BR', N'Brazil') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355600896, 3355604991, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355604992, 3355607039, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355607040, 3355611135, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355615232, 3355623423, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355623424, 3355639807, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355639808, 3355643903, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355643904, 3355647999, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355648000, 3355668991, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355668992, 3355669247, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355669248, 3355672575, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355672576, 3355682815, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355682816, 3355684863, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355684864, 3355686911, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355686912, 3355688959, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355688960, 3355689471, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355691008, 3355693055, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355693056, 3355695103, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355695104, 3355697151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355697152, 3355701503, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355701504, 3355701759, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355702272, 3355703295, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355703296, 3355705343, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355705344, 3355709439, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355709440, 3355713535, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355713536, 3355720447, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355720448, 3355720703, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355720704, 3355746303, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355746304, 3355750399, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355754496, 3355770879, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355770880, 3355773183, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355773184, 3355773439, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355773696, 3355773951, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355773952, 3355774975, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355774976, 3355779071, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355779072, 3355781119, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355781120, 3355783167, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355783168, 3355785215, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355785216, 3355787263, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355787264, 3355803647, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355803648, 3355820031, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355820032, 3355836415, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355836416, 3355844863, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355844864, 3355845119, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355845120, 3355845375, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355845376, 3355848959, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355850752, 3355852799, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355852800, 3355856895, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355856896, 3355858943, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355858944, 3355860991, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355860992, 3355869183, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355869184, 3355871231, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355871232, 3355873279, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355873280, 3355875327, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355875328, 3355877375, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355877376, 3355885567, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355885568, 3355901951, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355901952, 3355906047, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355906048, 3355910143, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355910144, 3355914239, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355918336, 3355923455, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355924480, 3355926527, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355926528, 3355934719, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355934720, 3355938815, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355942912, 3355947007, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355947008, 3355949055, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355949056, 3355951103, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355951104, 3355959295, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3355967488, 3356033023, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356033024, 3356033791, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356033792, 3356034047, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356034048, 3356035071, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356035072, 3356037119, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356037120, 3356041215, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356041216, 3356049407, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356049408, 3356049663, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356049664, 3356051455, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356051712, 3356051967, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356051968, 3356052223, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356052224, 3356052479, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356052480, 3356053247, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356053248, 3356054015, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356054016, 3356054527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356054528, 3356057599, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356057600, 3356057855, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356057856, 3356059135, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356059136, 3356060671, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356060672, 3356061695, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356061696, 3356062463, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356062464, 3356062719, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356062720, 3356064255, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356064256, 3356064511, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356064512, 3356065791, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356065792, 3356066047, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356066048, 3356069119, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356069120, 3356069631, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356069632, 3356070143, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356070144, 3356070655, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356070656, 3356070911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356070912, 3356071423, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356071424, 3356072447, N'CL', N'Chile') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356073472, 3356075263, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356075264, 3356076287, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356076288, 3356078079, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356078080, 3356078335, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356078336, 3356079359, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356079360, 3356080895, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356080896, 3356082431, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356082432, 3356082687, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356082688, 3356082943, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356082944, 3356083967, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356083968, 3356084479, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356084480, 3356084735, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356084736, 3356085247, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356085248, 3356085759, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356085760, 3356086271, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356086272, 3356086527, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356086528, 3356086783, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356086784, 3356087039, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356087040, 3356087295, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356087296, 3356087807, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356087808, 3356088063, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356088064, 3356088319, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356088320, 3356089087, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356089088, 3356089343, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356089344, 3356090623, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356090624, 3356090879, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356090880, 3356091391, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356091392, 3356091647, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356091648, 3356091903, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356091904, 3356092927, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356092928, 3356093183, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356093184, 3356093951, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356093952, 3356094975, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356094976, 3356096255, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356096256, 3356096511, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356096512, 3356096767, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356096768, 3356097791, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356097792, 3356098303, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356098560, 3356099583, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356099584, 3356100607, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356100608, 3356106751, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356106752, 3356114943, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356114944, 3356123135, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356123136, 3356131839, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356131840, 3356132351, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356132352, 3356134143, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356134144, 3356134655, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356134656, 3356134911, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356134912, 3356135167, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356135168, 3356135423, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356135424, 3356135679, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356135680, 3356135935, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356135936, 3356136191, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356136192, 3356137471, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356137472, 3356137727, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356137728, 3356138239, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356138240, 3356138495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356138496, 3356139519, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356139520, 3356139775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356139776, 3356140031, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356140032, 3356140287, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356140288, 3356140799, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356140800, 3356141311, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356141312, 3356142847, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356142848, 3356145151, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356145152, 3356145407, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356145408, 3356145663, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356145664, 3356145919, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356145920, 3356146175, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356146176, 3356146431, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356146432, 3356146687, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356146688, 3356146943, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356146944, 3356147199, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356147200, 3356147455, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356147456, 3356148223, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356148224, 3356148479, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356148480, 3356148735, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356148736, 3356148991, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356148992, 3356149503, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356149760, 3356150015, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356150016, 3356150527, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356150528, 3356150783, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356151552, 3356151807, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356151808, 3356152063, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356152064, 3356152575, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356152576, 3356152831, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356152832, 3356154623, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356154624, 3356154879, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356154880, 3356156671, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356156672, 3356156927, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356156928, 3356157951, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356157952, 3356158207, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356158208, 3356158463, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356158464, 3356158719, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356158976, 3356159743, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356159744, 3356160255, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356160256, 3356160511, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356160512, 3356160767, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356160768, 3356161279, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356161280, 3356161535, N'BR', N'Brazil') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356161536, 3356162559, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356162560, 3356162815, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356162816, 3356163583, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356163584, 3356163839, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356163840, 3356164095, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356164096, 3356172287, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356172288, 3356174335, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356174336, 3356176383, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356176384, 3356180479, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356180480, 3356190719, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356190720, 3356192767, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356192768, 3356194815, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356194816, 3356196863, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356196864, 3356229631, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356229632, 3356233727, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356233728, 3356237823, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356237824, 3356246015, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356246016, 3356262655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356262656, 3356263167, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356263168, 3356263423, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356263424, 3356263679, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356263680, 3356265215, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356265216, 3356265471, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356265472, 3356268799, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356269056, 3356269311, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356269312, 3356269823, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356269824, 3356270079, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356270080, 3356272383, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356272384, 3356272639, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356272640, 3356272895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356272896, 3356273151, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356273152, 3356273407, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356273664, 3356274431, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356274432, 3356278783, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356279040, 3356279295, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356280832, 3356282879, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356282880, 3356284927, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356284928, 3356286975, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356286976, 3356286991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356286992, 3356287007, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287008, 3356287023, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287024, 3356287039, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287040, 3356287047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287048, 3356287071, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287072, 3356287087, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287088, 3356287103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287104, 3356287135, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287136, 3356287151, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287152, 3356287231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287232, 3356287239, N'GY', N'Guyana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287240, 3356287391, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287392, 3356287487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287488, 3356287743, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356287744, 3356287999, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356288000, 3356288255, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356288256, 3356288511, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356288512, 3356288767, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356288768, 3356289023, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289024, 3356289535, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289536, 3356289791, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289792, 3356289799, N'GY', N'Guyana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289800, 3356289807, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289808, 3356289823, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289824, 3356289887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289888, 3356289919, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289920, 3356289951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289952, 3356289983, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356289984, 3356290047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356290048, 3356290303, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356290304, 3356290559, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356290560, 3356291071, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356291072, 3356293119, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356293120, 3356295167, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356295168, 3356297215, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356297216, 3356299263, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356299264, 3356328959, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356329984, 3356332031, N'GF', N'French Guiana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356332032, 3356334079, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356334080, 3356336127, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356336128, 3356337359, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356337360, 3356337375, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356337376, 3356337407, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356337408, 3356337423, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356337424, 3356340455, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356340456, 3356340463, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356340464, 3356340687, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356340688, 3356340703, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356340704, 3356340863, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356340864, 3356340879, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356340880, 3356343295, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356343296, 3356343423, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356343424, 3356344319, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356344320, 3356360703, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356360704, 3356362751, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356362752, 3356364799, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356364800, 3356368895, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356368896, 3356370943, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356370944, 3356372991, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356372992, 3356375039, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356375040, 3356377087, N'HN', N'Honduras') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356377088, 3356389375, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356389376, 3356389887, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356389888, 3356391423, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356391424, 3356393471, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356393472, 3356413183, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356413184, 3356413695, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356413696, 3356413727, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356413728, 3356413735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356413736, 3356413863, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356413864, 3356413871, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356413872, 3356419839, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356419840, 3356422143, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356422144, 3356426239, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356426240, 3356491775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356491776, 3356493823, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356493824, 3356495871, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356495872, 3356499967, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356499968, 3356508159, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356508160, 3356514303, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356514304, 3356514559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356516352, 3356557311, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356557312, 3356819455, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356819456, 3356884991, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356884992, 3356950527, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3356950528, 3357016063, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357016064, 3357032447, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357032448, 3357032703, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357032704, 3357048831, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357048832, 3357050879, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357050880, 3357050895, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357050896, 3357054463, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357054464, 3357054719, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357054720, 3357054975, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357054976, 3357055087, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357055088, 3357055103, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357055104, 3357055231, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357055232, 3357057023, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357057024, 3357065215, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357065216, 3357073407, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357073408, 3357077503, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357081600, 3357114367, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357114368, 3357134847, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357138944, 3357147135, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357147136, 3357179903, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357179904, 3357188095, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357196288, 3357212671, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357212672, 3357368319, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357368320, 3357372415, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357376512, 3357409279, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357409280, 3357411327, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357411328, 3357412351, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357412352, 3357412863, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357412864, 3357413119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357413120, 3357413375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357413376, 3357414399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357414400, 3357415423, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357415424, 3357415679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357415680, 3357416447, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357416448, 3357417215, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357417216, 3357417471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357417472, 3357418495, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357418496, 3357418751, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357418752, 3357419007, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357419008, 3357419519, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357419520, 3357420031, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357420032, 3357421055, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357421056, 3357421311, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357421312, 3357421567, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357421568, 3357422847, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357422848, 3357423103, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357423104, 3357423359, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357423360, 3357424639, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357424640, 3357425663, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357425664, 3357442047, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357442048, 3357442303, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357442304, 3357442559, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357442560, 3357442815, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357442816, 3357443071, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357443072, 3357443327, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357443328, 3357443583, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357443584, 3357444607, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357444608, 3357444863, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357444864, 3357445119, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357445120, 3357448191, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357448192, 3357448703, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357448704, 3357448959, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357448960, 3357449727, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357449728, 3357450751, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357450752, 3357451519, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357451520, 3357451775, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357451776, 3357452031, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357452032, 3357452287, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357452288, 3357452799, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357452800, 3357453055, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357453056, 3357453311, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357453312, 3357454591, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357454592, 3357454847, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357454848, 3357455103, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357455104, 3357455359, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357455360, 3357458431, N'GT', N'Guatemala') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357458432, 3357474815, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357474816, 3357475071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357475072, 3357475839, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357475840, 3357476351, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357476352, 3357476863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357476864, 3357477631, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357477632, 3357477887, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357477888, 3357480959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357480960, 3357483007, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357483008, 3357491199, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357491200, 3357499391, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357499392, 3357507583, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357507584, 3357515775, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357515776, 3357519871, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357523968, 3357528063, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357532160, 3357536255, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357540352, 3357556735, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357556736, 3357556991, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357556992, 3357557759, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357557760, 3357558015, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357558016, 3357558047, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357558048, 3357558783, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357558784, 3357560063, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357560064, 3357560319, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357560320, 3357560575, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357560576, 3357560831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357560832, 3357561855, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357561856, 3357581311, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357581312, 3357589503, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357589504, 3357605887, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357605888, 3357736959, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357736960, 3357745151, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357745152, 3357753343, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357753344, 3357757487, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357757488, 3357757495, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357757496, 3357773823, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357777920, 3357786111, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357786112, 3357802495, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357802496, 3357868031, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357868032, 3357933567, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3357933568, 3358064639, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358064640, 3358130175, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358130176, 3358131199, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358131200, 3358131391, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358131392, 3358131415, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358131416, 3358131983, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358131984, 3358131991, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358131992, 3358132223, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358132224, 3358132479, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358132480, 3358132735, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358132736, 3358132991, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358132992, 3358133247, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358133248, 3358133503, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358133504, 3358133759, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358133760, 3358142975, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358142976, 3358143231, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358143232, 3358143487, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358143488, 3358143743, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358143744, 3358143999, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358144000, 3358144255, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358144256, 3358144511, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358144512, 3358144767, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358144768, 3358145023, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358145024, 3358149631, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358149632, 3358150655, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358150656, 3358151167, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358151168, 3358151423, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358151424, 3358151679, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358151680, 3358152703, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358152704, 3358152831, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358152832, 3358153279, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358153280, 3358153311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358153312, 3358153343, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358153344, 3358153535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358153536, 3358153599, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358153600, 3358153727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358153728, 3358153983, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358153984, 3358154239, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358154240, 3358154495, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358154496, 3358154751, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358154752, 3358155775, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358155776, 3358156031, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358156032, 3358158847, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358158848, 3358159359, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358159360, 3358159615, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358159616, 3358159871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358159872, 3358160895, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358160896, 3358191615, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358191616, 3358192639, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358192640, 3358236671, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358236672, 3358244863, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358244864, 3358261247, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358261248, 3358264063, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358264064, 3358264319, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358264320, 3358326783, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358326784, 3358392319, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358392320, 3358457855, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358457856, 3358523391, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358523392, 3358543615, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358543616, 3358543871, N'VE', N'Venezuela') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358543872, 3358544127, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358544128, 3358555007, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358555008, 3358555135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358555136, 3358558207, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358558208, 3358558719, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358558720, 3358558847, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358558848, 3358558975, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358558976, 3358559231, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358559232, 3358560255, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358560256, 3358561791, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358561792, 3358562303, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358562304, 3358563327, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358563328, 3358564095, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358564096, 3358564351, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358564352, 3358567423, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358567424, 3358568447, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358568448, 3358568703, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358568704, 3358568959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358568960, 3358569215, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358569216, 3358569471, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358569472, 3358570495, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358570496, 3358570751, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358570752, 3358571263, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358571264, 3358571775, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358571776, 3358576895, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358576896, 3358577279, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358577280, 3358578431, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358578432, 3358578687, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358578688, 3358579967, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358579968, 3358580223, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358580224, 3358580735, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358580736, 3358588927, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358588928, 3358654463, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358654464, 3358658559, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358662656, 3358663455, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358663456, 3358663487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358663488, 3358665471, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358665472, 3358665599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358665600, 3358666367, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358666368, 3358666495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358666496, 3358666623, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358666624, 3358666751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358666752, 3358695423, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358695424, 3358703615, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358703616, 3358715903, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358715904, 3358717951, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358717952, 3358719999, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358720000, 3358720075, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358720076, 3358720083, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358720084, 3358722047, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358722048, 3358723071, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358723072, 3358723327, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358723328, 3358723583, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358723584, 3358724095, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358724096, 3358725119, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358725120, 3358725375, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358725376, 3358728191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358728192, 3358736383, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358736384, 3358738175, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358738176, 3358738687, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358738688, 3358739711, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358739712, 3358739967, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358739968, 3358744575, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358744576, 3358752767, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358752768, 3358756863, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358756864, 3358760959, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358760960, 3358769151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358769152, 3358777343, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358785536, 3358822399, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358822400, 3358827519, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358827520, 3358829567, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358829568, 3358830591, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358830592, 3358851071, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358851072, 3358982143, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3358982144, 3359047679, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359047680, 3359080447, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359080448, 3359096831, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359096832, 3359105023, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359105024, 3359109119, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359113216, 3359244287, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359244288, 3359248383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359248384, 3359248399, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359248400, 3359249679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359249680, 3359249759, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359249760, 3359249791, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359249792, 3359249887, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359249888, 3359250175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359250176, 3359252039, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359252040, 3359252047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359252048, 3359252063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359252064, 3359252095, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359252096, 3359252159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359252160, 3359252223, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359252224, 3359256575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359256576, 3359256639, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359256640, 3359257087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257088, 3359257103, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257104, 3359257127, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257128, 3359257135, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257136, 3359257151, N'AR', N'Argentina') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257152, 3359257183, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257184, 3359257215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257216, 3359257247, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257248, 3359257263, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257264, 3359257279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257280, 3359257311, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257312, 3359257327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257328, 3359257343, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359257344, 3359260671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359260672, 3359268863, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359272960, 3359277055, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359277056, 3359285247, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359285248, 3359293439, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359293440, 3359309823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359309824, 3359361023, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359361024, 3359362047, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359362048, 3359363071, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359367168, 3359371263, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359375360, 3359440895, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359440896, 3359457487, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359457488, 3359457503, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359457504, 3359457791, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359457792, 3359459327, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359459328, 3359459583, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359459584, 3359460847, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359460848, 3359461119, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359461120, 3359461375, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359461376, 3359461887, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359461888, 3359461951, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359461952, 3359462015, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359462016, 3359462271, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359462272, 3359462335, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359462336, 3359462399, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359462400, 3359462655, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359462656, 3359463399, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359463400, 3359463407, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359463408, 3359463663, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359463664, 3359463679, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359463680, 3359463743, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359463744, 3359463935, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359463936, 3359464127, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359464128, 3359464191, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359464192, 3359464447, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359464448, 3359465471, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359465472, 3359465983, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359465984, 3359466495, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359466496, 3359466751, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359466752, 3359467263, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359467264, 3359467519, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359467520, 3359468031, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359468032, 3359468543, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359468544, 3359468799, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359468800, 3359469567, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359469568, 3359470591, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359470592, 3359471615, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359471616, 3359472127, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359472128, 3359472639, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359472640, 3359473663, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359473664, 3359475359, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359475360, 3359475367, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359475368, 3359475519, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359475520, 3359475551, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359475552, 3359475615, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359475616, 3359475623, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359475624, 3359478687, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359478688, 3359478719, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359478720, 3359479295, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479296, 3359479303, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479304, 3359479327, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479328, 3359479343, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479344, 3359479375, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479376, 3359479383, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479384, 3359479487, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479488, 3359479551, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359479552, 3359480575, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480576, 3359480815, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480816, 3359480871, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480872, 3359480887, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480888, 3359480911, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480912, 3359480915, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480916, 3359480927, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480928, 3359480935, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480936, 3359480959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480960, 3359480975, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359480976, 3359481599, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359481600, 3359481663, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359481664, 3359481727, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359481728, 3359481743, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359481744, 3359481823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359481824, 3359481839, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359481840, 3359481855, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359481856, 3359498239, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359498240, 3359501311, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359501312, 3359502335, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359506432, 3359508479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359508480, 3359514623, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359514624, 3359516671, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359516672, 3359516927, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359516928, 3359517183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359517184, 3359517439, N'VG', N'Virgin Islands, British') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359517440, 3359517695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359517696, 3359517951, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359517952, 3359522815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359522816, 3359539199, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359539200, 3359571967, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359571968, 3359621119, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359621120, 3359637503, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359637504, 3359789583, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359789584, 3359789599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359789600, 3359899647, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359899648, 3359916031, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359916032, 3359932415, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359932416, 3359945471, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359945472, 3359945727, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359945728, 3359948799, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359948800, 3359989759, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359989760, 3359997951, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3359997952, 3360006143, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360006144, 3360014335, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360014336, 3360096255, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360096256, 3360100351, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360104448, 3360129023, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360129024, 3360145407, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360145408, 3360153599, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360153600, 3360157695, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360161792, 3360227327, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360227328, 3360228639, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360228640, 3360228663, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360228664, 3360229119, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360229120, 3360231423, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231424, 3360231455, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231456, 3360231463, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231464, 3360231487, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231488, 3360231519, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231520, 3360231599, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231600, 3360231607, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231608, 3360231679, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360231680, 3360234751, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360234752, 3360235263, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360235264, 3360235271, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360235272, 3360235519, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360235520, 3360236287, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236288, 3360236303, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236304, 3360236311, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236312, 3360236423, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236424, 3360236439, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236440, 3360236487, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236488, 3360236503, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236504, 3360236527, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236528, 3360236543, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236544, 3360236799, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360236800, 3360238079, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360238080, 3360239103, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360239104, 3360239615, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360239616, 3360240895, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360240896, 3360243967, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360243968, 3360251903, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360260096, 3360276479, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360284672, 3360325631, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360325632, 3360333823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360333824, 3360342015, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360342016, 3360358399, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360358400, 3360366591, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360366592, 3360382975, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360382976, 3360399359, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360399360, 3360403455, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360407552, 3360423935, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360423936, 3360686079, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360686080, 3360687871, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360687872, 3360688639, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360688640, 3360688767, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360688768, 3360689151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360689152, 3360689663, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360689664, 3360689919, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360689920, 3360690175, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360690176, 3360690303, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360690304, 3360690431, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360690432, 3360690719, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360690720, 3360690815, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360690816, 3360690943, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360690944, 3360691711, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360691712, 3360692351, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360692352, 3360692367, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360692368, 3360692607, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360692608, 3360692735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360692736, 3360693247, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360693248, 3360693311, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360693312, 3360693343, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360693344, 3360693503, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360693504, 3360693791, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360693792, 3360693823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360693824, 3360694015, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360694016, 3360694079, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360694080, 3360694143, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360694144, 3360694271, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360694272, 3360694303, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360694304, 3360694463, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360694464, 3360695071, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360695072, 3360695087, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360695088, 3360695167, N'AR', N'Argentina') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360695168, 3360695199, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360695200, 3360695215, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360695216, 3360695295, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360695296, 3360696447, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360696448, 3360696511, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360696512, 3360696527, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360696528, 3360696735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360696736, 3360696767, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360696768, 3360696831, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360696832, 3360698111, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360698112, 3360699391, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360699392, 3360700159, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360700160, 3360700415, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360700416, 3360701183, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360701184, 3360701439, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360701440, 3360706559, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360710656, 3360714751, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360718848, 3360767999, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360768000, 3360770047, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360770048, 3360771327, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360771328, 3360771839, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360771840, 3360772095, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360772096, 3360772351, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360772352, 3360772479, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360772480, 3360772607, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360772608, 3360773119, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360773120, 3360774143, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360774144, 3360774399, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360774400, 3360774655, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360774656, 3360774911, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360774912, 3360775087, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360775088, 3360775099, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360775100, 3360775167, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360775168, 3360775679, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360775680, 3360780287, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360784384, 3360849919, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360849920, 3360882687, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360882688, 3360948223, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3360948224, 3361013759, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361013760, 3361021951, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361021952, 3361030143, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361030144, 3361034239, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361038336, 3361046527, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361046528, 3361050623, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361054720, 3361058815, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361062912, 3361071103, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361071104, 3361079295, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361079296, 3361144831, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361144832, 3361210367, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361210368, 3361275903, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361275904, 3361284095, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361284096, 3361296383, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361300480, 3361308671, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361308672, 3361325055, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361325056, 3361341439, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361341440, 3361374207, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361374208, 3361378303, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361382400, 3361415167, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361423360, 3361456127, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361456128, 3361472511, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361472512, 3361538047, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361538048, 3361570815, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361570816, 3361587199, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361587200, 3361603583, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361603584, 3361734655, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3361734656, 3362258943, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362258944, 3362324479, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362324480, 3362324735, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362324736, 3362324991, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362324992, 3362326527, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362326528, 3362328575, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362328576, 3362330623, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362330624, 3362332671, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362332672, 3362336767, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362336768, 3362338303, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362338304, 3362338559, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362338560, 3362338815, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362338816, 3362339839, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362339840, 3362341887, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362341888, 3362342143, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362342144, 3362342399, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362342400, 3362342911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362342912, 3362344959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362344960, 3362347007, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362347008, 3362349055, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362357248, 3362373631, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362373632, 3362377727, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362377728, 3362381823, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362381824, 3362390015, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362390016, 3362422783, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362422784, 3362447359, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362447360, 3362451455, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362455552, 3362471935, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362471936, 3362476031, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362480128, 3362484223, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362488320, 3362504703, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362521088, 3362529279, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362529280, 3362533375, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362537472, 3362545663, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362545664, 3362549759, N'PE', N'Peru') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362553856, 3362557951, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362562048, 3362563071, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362563072, 3362563199, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362563200, 3362563583, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362563584, 3362563711, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362563712, 3362564095, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362564096, 3362564223, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362564224, 3362564479, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362564480, 3362564607, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362564608, 3362564735, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362564736, 3362564863, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362564864, 3362565375, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362565376, 3362565503, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362565504, 3362565631, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362565632, 3362565759, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362565760, 3362567423, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362567424, 3362567679, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362567680, 3362569727, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362569728, 3362569983, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362569984, 3362570239, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362570240, 3362586623, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362586624, 3362652159, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362652160, 3362668543, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362668544, 3362676735, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362676736, 3362680831, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362684928, 3362685951, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362685952, 3362686975, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362686976, 3362687487, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362687488, 3362687999, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362688000, 3362689535, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362689536, 3362690047, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362690048, 3362690303, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362690304, 3362691071, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362691072, 3362691327, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362691328, 3362691583, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362691584, 3362692095, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362692096, 3362692607, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362692608, 3362692863, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362692864, 3362693119, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362717696, 3362750463, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362783232, 3362815999, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362816000, 3362832383, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362832384, 3362836479, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362840576, 3362897919, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362897920, 3362906111, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362914304, 3362947071, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362947072, 3362983935, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362988032, 3362992127, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3362996224, 3363000319, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363004416, 3363012607, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363012608, 3363028991, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363028992, 3363045375, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363045376, 3363110911, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363110912, 3363176447, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363176448, 3363274751, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363274752, 3363282943, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363291136, 3363299327, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363299328, 3363373055, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363373056, 3363438591, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363438592, 3363471359, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363471360, 3363487743, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363487744, 3363495935, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363504128, 3363512319, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363520512, 3363553791, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363553792, 3363554047, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363554048, 3363557375, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363561472, 3363565567, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363569664, 3363577855, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363577856, 3363586047, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363586048, 3363594239, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363602432, 3363610623, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363610624, 3363614719, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363618816, 3363622911, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363627008, 3363631103, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363635200, 3363651583, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363651584, 3363667967, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363667968, 3363700735, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363700736, 3363708927, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363717120, 3363733503, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363733504, 3363831807, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3363831808, 3378511871, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3378511872, 3384803327, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3384803328, 3385851903, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3385851904, 3386114047, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386114048, 3386245119, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386245120, 3386376191, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386376192, 3386384383, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386392576, 3386400767, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386408960, 3386425343, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386425344, 3386441727, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386441728, 3386458111, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386458112, 3386474495, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386474496, 3386490879, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386490880, 3386499071, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386507264, 3386523647, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386523648, 3386540031, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386540032, 3386548223, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386556416, 3386564607, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386572800, 3386589183, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386589184, 3386597375, N'AR', N'Argentina') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386605568, 3386613759, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386621952, 3386630143, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386638336, 3386642431, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386646528, 3386650623, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386654720, 3386662911, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386662912, 3386671103, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386671104, 3386675199, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386679296, 3386683391, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386687488, 3386695679, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386695680, 3386703871, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386703872, 3386720255, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386720256, 3386724351, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386728448, 3386732543, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386736640, 3386753023, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386753024, 3386761215, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386761216, 3386769407, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386769408, 3386773503, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386777600, 3386781695, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386785792, 3386793983, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386802176, 3386900479, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3386900480, 3387162623, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387162624, 3387195391, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387228160, 3387244543, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387260928, 3387293695, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387293696, 3387359231, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387359232, 3387424767, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387424768, 3387490303, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387588608, 3387600895, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387600896, 3387604991, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387604992, 3387613183, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387613184, 3387617279, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387617280, 3387686911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387686912, 3387736063, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387736064, 3387752447, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387752448, 3387817983, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387834368, 3387850751, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387858944, 3387867135, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387867136, 3387949055, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3387949056, 3388014591, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388014592, 3388080127, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388080128, 3388211199, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388211200, 3388342271, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388342272, 3388407807, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388407808, 3388473343, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388473344, 3388604415, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388604416, 3388800255, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388800256, 3388800511, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388800512, 3388997631, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3388997632, 3389001727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389001728, 3389005823, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389005824, 3389014015, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389014016, 3389014271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389014272, 3389014783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389014784, 3389015807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389015808, 3389016063, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389016064, 3389016575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389016576, 3389017087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389017088, 3389017343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389017344, 3389017855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389017856, 3389018111, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389018112, 3389018367, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389018368, 3389018623, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389018624, 3389019135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389019136, 3389019391, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389019392, 3389020159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389020160, 3389020671, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389020672, 3389020927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389020928, 3389021183, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389021184, 3389021439, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389021440, 3389021695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389021696, 3389021951, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389021952, 3389022463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389022464, 3389022719, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389022720, 3389023231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389023232, 3389023487, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389023488, 3389023999, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389024000, 3389024255, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389024256, 3389024511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389024512, 3389025791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389025792, 3389026047, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389026048, 3389026303, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389026304, 3389026559, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389026560, 3389027327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389027328, 3389027583, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389027584, 3389028607, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389028608, 3389028863, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389028864, 3389029375, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389029376, 3389029887, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389029888, 3389030399, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389030400, 3389035519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389035520, 3389035775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389035776, 3389036287, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389036288, 3389036543, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389036544, 3389036799, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389036800, 3389037055, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389037056, 3389037567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389037568, 3389038591, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389038592, 3389044735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389044736, 3389045759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389045760, 3389046783, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389046784, 3389063167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389063168, 3389064447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389064448, 3389064703, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389064704, 3389065215, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389065216, 3389067263, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389067264, 3389071359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389071360, 3389079551, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389079552, 3389092351, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389092352, 3389092863, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389092864, 3389093887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389093888, 3389095935, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389095936, 3389104127, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389104128, 3389112319, N'SB', N'Solomon Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389112320, 3389116415, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389116416, 3389120511, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389120512, 3389122559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389124608, 3389128703, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389128704, 3389129727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389129728, 3389132799, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389132800, 3389136895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389136896, 3389142015, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389142016, 3389143039, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389143040, 3389145087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389145088, 3389151231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389151232, 3389152255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389152256, 3389153279, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389153280, 3389161471, N'TV', N'Tuvalu') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389161472, 3389163791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389163792, 3389163795, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389163796, 3389165286, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389165287, 3389165287, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389165288, 3389165631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389165632, 3389165695, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389165696, 3389194239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389194240, 3389195775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389195776, 3389196287, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389196288, 3389198335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389198336, 3389202431, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389202432, 3389210623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389210624, 3389212671, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389212672, 3389213439, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389213440, 3389213951, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389214208, 3389214719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389214720, 3389218815, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389218816, 3389222911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389222912, 3389227007, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389227008, 3389227263, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389227264, 3389227519, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389227520, 3389228031, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389228032, 3389228799, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389228800, 3389229055, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389229056, 3389229311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389229312, 3389229567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389229568, 3389230079, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389230080, 3389235199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389235200, 3389243391, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389243392, 3389247487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389247488, 3389251583, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389251584, 3389259775, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389259776, 3389263871, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389263872, 3389266175, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389266176, 3389266431, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389266432, 3389266943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389266944, 3389267967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389267968, 3389276159, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389276160, 3389284351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389284352, 3389292543, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389292544, 3389300735, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389300736, 3389308927, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389308928, 3389317119, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389317120, 3389322239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389322240, 3389324031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389324032, 3389324287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389324288, 3389325311, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389325312, 3389326335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389326336, 3389326847, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389326848, 3389327359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389327360, 3389329407, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389329408, 3389333503, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389333504, 3389341695, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389341696, 3389345791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389345792, 3389349887, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389349888, 3389358079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389358080, 3389366271, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389366272, 3389374463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389374464, 3389382655, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389382656, 3389390847, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389390848, 3389391359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389391360, 3389391615, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389391616, 3389392127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389392128, 3389392895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389392896, 3389411327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389411328, 3389411583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389411584, 3389412351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389412352, 3389412863, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389412864, 3389413119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389413120, 3389413375, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389413376, 3389413887, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389413888, 3389414143, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389414144, 3389414655, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389414656, 3389414911, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389414912, 3389415167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389415168, 3389415423, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389415424, 3389415935, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389415936, 3389416191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389416192, 3389416447, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389416448, 3389416959, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389416960, 3389417215, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389417216, 3389417471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389417472, 3389417983, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389417984, 3389418239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389418240, 3389418495, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389418496, 3389418751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389418752, 3389419263, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389419264, 3389419519, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389419520, 3389421567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389421568, 3389422591, N'KI', N'Kiribati') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389422592, 3389431807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389431808, 3389435903, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389435904, 3389439999, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389440000, 3389444095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389444096, 3389452287, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389452288, 3389453311, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389453312, 3389454335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389454336, 3389455359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389455360, 3389456383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389456384, 3389456895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389456896, 3389457407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389457408, 3389458431, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389458432, 3389460479, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389460480, 3389464575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389464576, 3389469695, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389469696, 3389471743, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389471744, 3389472767, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389472768, 3389480959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389480960, 3389489151, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389489152, 3389493247, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389493248, 3389521919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389521920, 3389523455, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389523456, 3389523967, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389523968, 3389525503, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389525504, 3389526015, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389526016, 3389528319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389528320, 3389528575, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389528576, 3389530111, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389530112, 3389532159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389532160, 3389533183, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389533184, 3389534207, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389534208, 3389538303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389538304, 3389541375, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389541376, 3389541631, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389541632, 3389541887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389541888, 3389542399, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389542400, 3389543423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389543424, 3389544447, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389544448, 3389545471, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389545472, 3389545727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389545728, 3389545983, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389545984, 3389546495, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389546496, 3389554687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389554688, 3389562879, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389562880, 3389571071, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389571072, 3389575167, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389575168, 3389579263, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389579264, 3389587455, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389587456, 3389603839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389612032, 3389616127, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389616128, 3389640703, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389640704, 3389644799, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389644800, 3389652991, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389652992, 3389661183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389661184, 3389669375, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389669376, 3389673471, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389673472, 3389675519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389677568, 3389685759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389685760, 3389718527, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389718528, 3389784063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389784064, 3389784319, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389784320, 3389784575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389784576, 3389784831, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389784832, 3389785087, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389785088, 3389786111, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389786112, 3389788159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389788160, 3389788415, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389788416, 3389788927, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389788928, 3389789695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389789696, 3389790719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389790720, 3389790975, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389790976, 3389791231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389791232, 3389791487, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389791488, 3389791743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389791744, 3389791999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389792000, 3389801983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389801984, 3389802239, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389802240, 3389802751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389802752, 3389803263, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389803520, 3389806079, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389806080, 3389807359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389807360, 3389807615, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389807616, 3389808127, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389808128, 3389808639, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389808640, 3389808895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389808896, 3389809151, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389809152, 3389809919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389810688, 3389811199, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389811200, 3389811711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389811712, 3389811967, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389811968, 3389813759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389813760, 3389814527, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389814528, 3389815295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389815296, 3389816063, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389816064, 3389816575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389816576, 3389816831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389816832, 3389846271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389846272, 3389846527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389846528, 3389847551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389847552, 3389849599, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389849600, 3389915135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389915136, 3389917183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389917184, 3389919231, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389919232, 3389931519, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389931520, 3389932287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389932288, 3389932799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389932800, 3389933055, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389933056, 3389933567, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389933568, 3389933823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389933824, 3389934591, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389934592, 3389935615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389935616, 3389935871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389935872, 3389936127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389936128, 3389936895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389936896, 3389937663, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389937664, 3389937919, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389937920, 3389938175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389938176, 3389939455, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389939456, 3389939711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389939712, 3389940223, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389940224, 3389940479, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389940480, 3389940991, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389940992, 3389941247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389941248, 3389941503, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389941504, 3389941759, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389941760, 3389942271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389942272, 3389943295, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389943296, 3389944319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389944320, 3389944831, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389944832, 3389945087, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389945088, 3389945343, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389945344, 3389947647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389947648, 3389947903, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389947904, 3389949695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389949696, 3389950207, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389950208, 3389950975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389950976, 3389951743, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389951744, 3389953279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389953280, 3389953535, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389953792, 3389954303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389954304, 3389954815, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389954816, 3389956607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389956608, 3389957375, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389957376, 3389957631, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389957632, 3389957887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389957888, 3389958399, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389958400, 3389970431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389970432, 3389971199, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389971200, 3389971967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389971968, 3389972223, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389972224, 3389972479, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389972480, 3389973759, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389973760, 3389975295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389975296, 3389976319, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389976320, 3389979647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389979648, 3389980415, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389980416, 3389980671, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3389980672, 3390274303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390274304, 3390274559, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390274560, 3390308351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390308352, 3390310399, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390310400, 3390316543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390316544, 3390325247, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390325248, 3390325503, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390325504, 3390327807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390327808, 3390329087, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390329088, 3390329343, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390329344, 3390330623, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390330624, 3390330879, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390330880, 3390331391, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390331392, 3390331647, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390331648, 3390332415, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390332416, 3390332927, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390332928, 3390333439, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390333440, 3390333695, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390333696, 3390333951, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390333952, 3390334463, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390334464, 3390335231, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390335232, 3390335487, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390335488, 3390336511, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390336512, 3390336767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390336768, 3390337023, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390337024, 3390337279, N'GU', N'Guam') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390337280, 3390337535, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390337536, 3390338303, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390338304, 3390338815, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390338816, 3390339071, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390339072, 3390339327, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390339328, 3390339839, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390339840, 3390340351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390340352, 3390341119, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390341120, 3390375935, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390375936, 3390377983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390377984, 3390382079, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390382080, 3390390271, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390390272, 3390402559, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390402560, 3390406655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390406656, 3390406911, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390406912, 3390407167, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390407168, 3390408191, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390408192, 3390408703, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390408704, 3390409727, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390409728, 3390409983, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390409984, 3390410751, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390410752, 3390411007, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390411008, 3390411519, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390411520, 3390411775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390411776, 3390412031, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390412032, 3390412287, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390412288, 3390413311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390413312, 3390413567, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390413568, 3390414335, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390414336, 3390414847, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390414848, 3390418943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390418944, 3390423039, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390423040, 3390429439, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390429440, 3390429951, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390429952, 3390439423, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390439424, 3390441471, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390441472, 3390443519, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390443520, 3390447359, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390447360, 3390447615, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390447616, 3390455807, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390455808, 3390472191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390472192, 3390480383, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390480384, 3390484479, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390484480, 3390488575, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390488576, 3390492671, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390492672, 3390496767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390496768, 3390500863, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390500864, 3390502911, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390502912, 3390504959, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390504960, 3390767103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390767104, 3390771199, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390771200, 3390775295, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390775296, 3390790399, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390790400, 3390790591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390790592, 3390790607, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390790608, 3390790623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390790624, 3390832639, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390832640, 3390963711, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3390963712, 3391094783, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391094784, 3391356927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391356928, 3391469055, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391469056, 3391469311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391469312, 3391487999, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391488000, 3391492095, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391492096, 3391496191, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391496192, 3391500287, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391500288, 3391504383, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391504384, 3391523583, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391523584, 3391523839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391523840, 3391524863, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391525376, 3391525887, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391525888, 3391526143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391526144, 3391526655, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391526656, 3391526911, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391526912, 3391528191, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391528192, 3391528447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391528448, 3391529471, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391529472, 3391529983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391529984, 3391533567, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391533568, 3391534079, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391534080, 3391535103, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391535104, 3391553535, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391553536, 3391619071, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391619072, 3391620607, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391620608, 3391620863, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391620864, 3391660799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391660800, 3391661055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391661056, 3391663103, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391664128, 3391668223, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391668224, 3391676415, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391676416, 3391684607, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391684608, 3391688191, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391688192, 3391688703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391688704, 3391717887, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391717888, 3391718143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391718144, 3391718911, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391718912, 3391719167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391719168, 3391719423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391719424, 3391720703, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391720704, 3391720959, N'SG', N'Singapore') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391720960, 3391721215, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391721216, 3391721471, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391721472, 3391721727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391721728, 3391721983, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391721984, 3391722239, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391722240, 3391722495, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391722496, 3391723519, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391723520, 3391725567, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391725568, 3391733759, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391733760, 3391734015, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391734016, 3391734783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391734784, 3391736831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391736832, 3391737855, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391737856, 3391741951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391741952, 3391746047, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391746048, 3391750143, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391750144, 3391815679, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391815680, 3391817727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391819776, 3391823871, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391823872, 3391827967, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391848448, 3391852543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391852544, 3391856639, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391856640, 3391864831, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391864832, 3391873023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391873024, 3391877119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391877120, 3391879167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391879168, 3391881215, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391881216, 3391895551, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391895552, 3391896575, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391896576, 3391900415, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391900416, 3391901695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391901696, 3391905791, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391905792, 3391906047, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391906048, 3391906303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391906304, 3391906815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391906816, 3391907839, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391907840, 3391909887, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391909888, 3391910911, N'IO', N'British Indian Ocean Territory') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391910912, 3391911935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391911936, 3391913983, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391913984, 3391916287, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391916288, 3391916543, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391916544, 3391920127, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391920128, 3391930367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391930368, 3391946751, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391946752, 3391947007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391947008, 3391947519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391947520, 3391947775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391947776, 3391948287, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391948288, 3391948799, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391948800, 3391949311, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391949312, 3391949823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391949824, 3391950079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391950080, 3391950335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391950336, 3391971327, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391971328, 3391979519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391979520, 3391979775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391979776, 3391980031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391980032, 3391980543, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391980544, 3391983615, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391987712, 3391991807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3391991808, 3392012287, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392012288, 3392017151, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392017152, 3392017407, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392017408, 3392017919, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392017920, 3392018431, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392018432, 3392020479, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392020480, 3392028671, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392028672, 3392040959, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392040960, 3392045055, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392045056, 3392046079, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392046080, 3392049151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392049152, 3392053247, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392053248, 3392061439, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392061440, 3392069631, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392069632, 3392073727, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392073728, 3392077823, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392077824, 3392079871, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392081920, 3392086015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392086016, 3392094207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392094208, 3392098303, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392098304, 3392102399, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392102400, 3392106495, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392106496, 3392109567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392109568, 3392109823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392109824, 3392110335, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392110336, 3392110591, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392110592, 3392111103, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392111104, 3392111359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392111360, 3392112127, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392112128, 3392112639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392112640, 3392114175, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392114176, 3392114431, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392114688, 3392118783, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392118784, 3392126975, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392126976, 3392135167, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392135168, 3392143359, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392143360, 3392208895, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392208896, 3392339967, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392339968, 3392340991, N'NP', N'Nepal') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392340992, 3392344063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392344064, 3392348159, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392348160, 3392356351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392356352, 3392364543, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392364544, 3392372735, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392372736, 3392380927, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392380928, 3392385023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392385024, 3392389119, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392389120, 3392401407, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392401408, 3392403455, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392403456, 3392404479, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392404480, 3392405503, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392405504, 3392406015, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392406016, 3392406527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392406528, 3392407551, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392407552, 3392409599, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392409600, 3392413695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392413696, 3392421887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392421888, 3392430271, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392430272, 3392430303, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392430304, 3392432511, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392432512, 3392432543, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392432544, 3392438271, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392438272, 3392446463, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392446464, 3392450559, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392450560, 3392454655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392454656, 3392462847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392462848, 3392472063, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392472064, 3392473087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392473088, 3392475135, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392475136, 3392479231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392479232, 3392487423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392487424, 3392499711, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392499712, 3392503807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392503808, 3392511999, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392512000, 3392516095, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392516096, 3392520191, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392520192, 3392524287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392524288, 3392528383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392528384, 3392536575, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392536576, 3392610303, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392610304, 3392618495, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392618496, 3392626687, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392626688, 3392630783, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392630784, 3392634879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392634880, 3392638975, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392638976, 3392643071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392643072, 3392647167, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392647168, 3392651263, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392651264, 3392659455, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392659456, 3392667647, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392667648, 3392668671, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392668672, 3392669695, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392669696, 3392671743, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392671744, 3392675839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392675840, 3392684031, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392684032, 3392688127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392688128, 3392692223, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392692224, 3392700415, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392700416, 3392708607, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392708608, 3392712703, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392712704, 3392716799, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392716800, 3392733183, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392733184, 3392741375, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392741376, 3392765951, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392765952, 3392782335, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392782336, 3392790527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392790528, 3392794623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392794624, 3392798719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392798720, 3392798975, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392798976, 3392799231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392799232, 3392799487, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392799488, 3392799743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392799744, 3392800767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392800768, 3392802815, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392802816, 3392806911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392806912, 3392815103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392815104, 3392819199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392819200, 3392823295, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392826624, 3392826879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392831488, 3392832511, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392832512, 3392833535, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392833536, 3392835583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392835584, 3392839679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392839680, 3392845823, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392845824, 3392847871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392847872, 3392856063, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392856064, 3392864255, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392864256, 3392864511, N'TO', N'Tonga') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392864512, 3392864767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392864768, 3392865279, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392865280, 3392866303, N'NU', N'Niue') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392866304, 3392868351, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392868352, 3392880639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392880640, 3392888831, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392888832, 3392892927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392892928, 3392897023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392897024, 3392901119, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392901120, 3392903167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392905216, 3392909311, N'ID', N'Indonesia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392909312, 3392913407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392913408, 3392917503, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392917504, 3392921599, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392921600, 3392929791, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392929792, 3392931839, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392931840, 3392933887, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392933888, 3392942079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392942080, 3392944127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392946176, 3392954367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392954368, 3392958463, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392958464, 3392962559, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392962560, 3392970751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392970752, 3392978943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392978944, 3392983039, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392983040, 3392987135, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392987136, 3392995327, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392995328, 3392995583, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392995584, 3392995839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392995840, 3392996351, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392996352, 3392997375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392997376, 3392998399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392998400, 3392999423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3392999424, 3393003519, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393003520, 3393011711, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393011712, 3393019903, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393019904, 3393028095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393028096, 3393060863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393060864, 3393062911, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393062912, 3393069055, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393069056, 3393077247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393077248, 3393085439, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393085440, 3393089535, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393089536, 3393090559, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393090560, 3393091071, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393091072, 3393093631, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393093632, 3393101823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393101824, 3393110015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393110016, 3393118207, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393118208, 3393122303, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393122304, 3393124351, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393124352, 3393125375, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393125376, 3393125631, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393125888, 3393126143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393126144, 3393126399, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393126400, 3393134591, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393134592, 3393146879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393146880, 3393150975, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393150976, 3393159167, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393159168, 3393167359, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393167360, 3393175551, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393175552, 3393183743, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393183744, 3393187839, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393187840, 3393189887, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393189888, 3393190911, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393190912, 3393191423, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393191424, 3393191935, N'SB', N'Solomon Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393191936, 3393260031, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393260032, 3393260543, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393260544, 3393265663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393265664, 3393273855, N'CK', N'Cook Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393273856, 3393282047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393282048, 3393286143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393286144, 3393290239, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393290240, 3393298431, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393298432, 3393300479, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393302528, 3393306623, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393306624, 3393314815, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393314816, 3393318911, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393318912, 3393320959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393320960, 3393389567, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393389568, 3393390591, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393390592, 3393392639, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393392640, 3393396735, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393396736, 3393400831, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393400832, 3393404927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393404928, 3393421311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393421312, 3393470463, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393470464, 3393474559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393474560, 3393478655, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393478656, 3393486847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393486848, 3393495039, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393495040, 3393499135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393499136, 3393503231, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393503232, 3393507327, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393507328, 3393511423, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393519616, 3393520639, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393520640, 3393521663, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393521664, 3393523711, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393523712, 3393527807, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393527808, 3393535999, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393536000, 3393544191, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393544192, 3393548287, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393548288, 3393552383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393552384, 3393553407, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393553408, 3393554431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393554432, 3393556479, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393556480, 3393560575, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393560576, 3393568767, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393568768, 3393572863, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393572864, 3393576959, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393576960, 3393581055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393581056, 3393585151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393585152, 3393593343, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393593344, 3393597439, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393597440, 3393601535, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393601536, 3393609727, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393609728, 3393613823, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393613824, 3393617919, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393617920, 3393622015, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393622016, 3393626111, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393626112, 3393630207, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393630208, 3393634303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393634304, 3393638399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393638400, 3393650687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393650688, 3393658879, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393662976, 3393675263, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393675264, 3393679359, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393679360, 3393683455, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393683456, 3393691647, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393691648, 3393695743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393695744, 3393699839, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393699840, 3393724415, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393724416, 3393726463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393728512, 3393736703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393736704, 3393740799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393740800, 3393741055, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393741056, 3393741311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393741312, 3393741567, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393741568, 3393741823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393741824, 3393742591, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393742592, 3393742847, N'NR', N'Nauru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393742848, 3393743871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393743872, 3393744127, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744128, 3393744143, N'TK', N'Tokelau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744144, 3393744159, N'NR', N'Nauru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744160, 3393744175, N'TK', N'Tokelau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744176, 3393744255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744256, 3393744263, N'CK', N'Cook Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744264, 3393744383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744384, 3393744415, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744416, 3393744639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744640, 3393744895, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393744896, 3393748991, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393748992, 3393765375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393765376, 3393773567, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393773568, 3393775615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393777664, 3393779711, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393779712, 3393780735, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393780736, 3393782783, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393782784, 3393783807, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393783808, 3393785855, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393785856, 3393789951, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393789952, 3393798143, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393798144, 3393806335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393806336, 3393814527, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393814528, 3393815551, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393815552, 3393816575, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393816576, 3393818623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393818624, 3393822719, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393822720, 3393830911, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393830912, 3393835007, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393835008, 3393839103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393839104, 3393843199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393843200, 3393848319, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393848320, 3393849343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393849344, 3393851391, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393851392, 3393855487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393855488, 3393863679, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393863680, 3393865727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393865728, 3393867775, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393867776, 3393880063, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393880064, 3393896447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393896448, 3393906687, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393908736, 3393910783, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393910784, 3393911807, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393911808, 3393912063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393912064, 3393912319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393912320, 3393913855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393913856, 3393914879, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393914880, 3393916927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393916928, 3393921023, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393921024, 3393929215, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393929216, 3393937407, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393937408, 3393941503, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393941504, 3393945599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393945600, 3393961983, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393961984, 3393966079, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393966080, 3393970175, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393970176, 3393974271, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393974272, 3393976319, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393976320, 3393977343, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3393977344, 3394011135, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394011136, 3394027519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394027520, 3394035711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394035712, 3394039807, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394039808, 3394041855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394041856, 3394042879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394042880, 3394060287, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394060288, 3394064383, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394064384, 3394068479, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394068480, 3394076671, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394076672, 3394078719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394078720, 3394078975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394078976, 3394079231, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394079232, 3394079743, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394079744, 3394087471, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394087472, 3394087487, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394087488, 3394111487, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394111488, 3394113535, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394113536, 3394117631, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394117632, 3394121727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394121728, 3394125823, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394125824, 3394142207, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394142208, 3394150399, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394150400, 3394154495, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394154496, 3394158591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394158592, 3394162687, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394162688, 3394166783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394166784, 3394168831, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394170880, 3394172927, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394172928, 3394173951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394173952, 3394174975, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394174976, 3394179071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394179072, 3394181119, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394181120, 3394183167, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394183168, 3394191359, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394191360, 3394207743, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394207744, 3394215935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394215936, 3394220031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394220032, 3394232319, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394232320, 3394234367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394234368, 3394236415, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394236416, 3394238463, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394238464, 3394239487, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394239488, 3394248703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394248704, 3394252799, N'VU', N'Vanuatu') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394252800, 3394256895, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394256896, 3394265087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394265088, 3394267135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394267136, 3394269183, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394269184, 3394273279, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394273280, 3394277375, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394277376, 3394279423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394281472, 3394282239, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394282240, 3394282751, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394282752, 3394283007, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394283008, 3394283023, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394283024, 3394283775, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394283776, 3394284031, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394284032, 3394284287, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394284288, 3394284351, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394284352, 3394285567, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394285568, 3394289663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394289664, 3394293759, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394293760, 3394297855, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394297856, 3394306047, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394306048, 3394307071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394307072, 3394308095, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394308096, 3394310143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394310144, 3394314239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394314240, 3394322431, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394322432, 3394326527, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394326528, 3394330623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394330624, 3394338815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394338816, 3394347007, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394347008, 3394355199, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394355200, 3394359295, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394359296, 3394363391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394363392, 3394441215, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394441216, 3394453503, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394453504, 3394461695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394461696, 3394465791, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394465792, 3394467839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394467840, 3394469887, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394469888, 3394478079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394478080, 3394482175, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394482176, 3394484223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394484224, 3394486271, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394486272, 3394494463, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394494464, 3394498559, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394498560, 3394500607, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394500608, 3394501631, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394501632, 3394507263, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394507264, 3394507775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394507776, 3394510847, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394510848, 3394514943, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394514944, 3394519039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394519040, 3394521087, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394523136, 3394527231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394527232, 3394535423, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394535424, 3394559487, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394559488, 3394559999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394560000, 3394564095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394564096, 3394564607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394564608, 3394565631, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394565632, 3394565887, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394565888, 3394566143, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394566144, 3394621439, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394621440, 3394625535, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394625536, 3394629631, N'HK', N'Hong Kong') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394629632, 3394631679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394631680, 3394634751, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394634752, 3394635775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394635776, 3394637823, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394637824, 3394641919, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394641920, 3394648063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394648064, 3394650111, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394650112, 3394658303, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394658304, 3394662399, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394662400, 3394664447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394664448, 3394666495, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394666496, 3394682367, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394682368, 3394682879, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394682880, 3394686975, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394686976, 3394689023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394691072, 3394697215, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394697216, 3394697471, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394697472, 3394697727, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394697728, 3394697983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394697984, 3394698239, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394698240, 3394700287, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394700288, 3394707455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394707456, 3394715647, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394715648, 3394719743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394719744, 3394732031, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394732032, 3394740223, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394740224, 3394744319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394744320, 3394752511, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394754560, 3394756607, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394756608, 3394760703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394760704, 3394764799, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394764800, 3394772991, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394772992, 3394777087, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394777088, 3394781183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394781184, 3394789375, N'MP', N'Northern Mariana Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394789376, 3394797567, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394797568, 3394813951, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394813952, 3394815999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394816000, 3394818047, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394818048, 3394830335, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394830336, 3394831359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394831360, 3394832383, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394832384, 3394834431, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394834432, 3394834687, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394834688, 3394834943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394834944, 3394835199, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394835200, 3394835455, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394835456, 3394835583, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394835584, 3394835711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394835712, 3394835967, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394835968, 3394836479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394836480, 3394838527, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394838528, 3394846719, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394846720, 3394850815, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394850816, 3394854911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394854912, 3394855935, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394863104, 3394871295, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394871296, 3394879487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394879488, 3394883583, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394883584, 3394887679, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394887680, 3394893823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394893824, 3394894847, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394894848, 3394895871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394895872, 3394896895, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394896896, 3394897919, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394897920, 3394899967, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394899968, 3394904063, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394904064, 3394908159, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394908160, 3394910207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394910208, 3394912255, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394912256, 3394920447, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394920448, 3394924543, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394924544, 3394928639, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394928640, 3394936831, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394936832, 3394940927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394940928, 3394945023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394949120, 3394953215, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394953216, 3394957311, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394957312, 3394959359, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394959360, 3394960383, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394960384, 3394962431, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394962432, 3394963455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394963456, 3394965503, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394965504, 3394967551, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394967552, 3394969599, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394969600, 3394971391, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394971392, 3394971647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394971648, 3394973695, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394973696, 3394977791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394977792, 3394985983, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394985984, 3394990079, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394990080, 3394994175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394994176, 3394995199, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394995200, 3394998271, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3394998272, 3395002367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395002368, 3395006463, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395006464, 3395010559, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395010560, 3395014655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395014656, 3395018751, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395018752, 3395026943, N'HK', N'Hong Kong') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395026944, 3395027967, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395028992, 3395031039, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395031040, 3395035135, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395035136, 3395039231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395039232, 3395043327, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395043328, 3395059711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395059712, 3395067903, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395067904, 3395076095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395076096, 3395080191, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395080192, 3395082239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395084288, 3395088383, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395088384, 3395090431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395091456, 3395093503, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395094528, 3395096575, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395096576, 3395104767, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395104768, 3395108863, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395108864, 3395117055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395117056, 3395121151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395121152, 3395129343, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395129344, 3395131391, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395133440, 3395141631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395141632, 3395145727, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395145728, 3395149823, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395149824, 3395155967, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395156992, 3395166207, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395166208, 3395170303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395170304, 3395174399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395174400, 3395182591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395182592, 3395190783, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395190784, 3395198975, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395198976, 3395203071, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395203072, 3395215359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395215360, 3395219455, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395219456, 3395223551, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395223552, 3395231743, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395231744, 3395239935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395239936, 3395244831, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395244832, 3395244863, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395244864, 3395249967, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395249968, 3395249983, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395249984, 3395254751, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395254752, 3395254767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395254768, 3395256319, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395256320, 3395264511, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395264512, 3395272703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395272704, 3395276799, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395276800, 3395280895, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395280896, 3395284991, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395284992, 3395287039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3395288064, 3396868319, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3396868320, 3396868351, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3396868352, 3396995071, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3396995072, 3396997119, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3396997120, 3396999167, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397001216, 3397003263, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397003264, 3397005311, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397005312, 3397009407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397009408, 3397017599, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397017600, 3397021695, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397021696, 3397023743, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397025792, 3397026047, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397026048, 3397026303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397026304, 3397026815, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397026816, 3397027071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397027072, 3397027327, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397027328, 3397027839, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397027840, 3397029887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397029888, 3397033983, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397033984, 3397038079, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397038080, 3397058559, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397058560, 3397066751, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397066752, 3397070847, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397070848, 3397074943, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397074944, 3397083135, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397083136, 3397087231, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397087232, 3397091327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397091328, 3397099519, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397099520, 3397103615, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397103616, 3397105663, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397107712, 3397115903, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397115904, 3397116927, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397116928, 3397116935, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397116936, 3397119999, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397120000, 3397124095, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397124096, 3397128191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397128192, 3397130239, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397132288, 3397136383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397136384, 3397140479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397140480, 3397148671, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397148672, 3397156863, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397156864, 3397165055, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397165056, 3397173247, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397177344, 3397181439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397181440, 3397185535, N'PW', N'Palau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397185536, 3397187583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397189632, 3397201919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397201920, 3397206015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397206016, 3397210111, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397210112, 3397214207, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397214208, 3397218303, N'TH', N'Thailand') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397218304, 3397230591, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397230592, 3397234687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397234688, 3397238783, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397238784, 3397255167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397255168, 3397255607, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397255608, 3397255615, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397255616, 3397255679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397255680, 3397255727, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397255728, 3397257327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397257328, 3397257343, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397257344, 3397257983, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397257984, 3397258007, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397258008, 3397258015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397258016, 3397258063, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397258064, 3397261311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397263360, 3397267455, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397267456, 3397271551, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397271552, 3397275647, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397275648, 3397277695, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397279744, 3397283839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397283840, 3397285887, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397287936, 3397304319, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397304320, 3397308415, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397308416, 3397312511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397312512, 3397320703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397320704, 3397322751, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397322752, 3397323775, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397323776, 3397328895, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397328896, 3397330943, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397330944, 3397337087, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397337088, 3397341183, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397341184, 3397345279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397345280, 3397349375, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397349376, 3397363711, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397363712, 3397365759, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397365760, 3397369855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397369856, 3397386239, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397386240, 3397394431, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397394432, 3397402623, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397402624, 3397410815, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397410816, 3397419007, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397419008, 3397419535, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397419536, 3397419551, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397419552, 3397427199, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397427200, 3397443583, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397443584, 3397451775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397451776, 3397468159, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397468160, 3397492735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397492736, 3397496831, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397496832, 3397498879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397498880, 3397500927, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397517312, 3397525503, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397533696, 3397555903, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397555904, 3397555935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397555936, 3397566263, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397566264, 3397566271, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397566272, 3397566463, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397566464, 3397574655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397574656, 3397582847, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397582848, 3397584895, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397584896, 3397586943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397586944, 3397588991, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397591040, 3397595135, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397595136, 3397599231, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397599232, 3397603327, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397603328, 3397605375, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397607424, 3397623807, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397623808, 3397631999, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397632000, 3397636095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397636096, 3397640191, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397640192, 3397648383, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397648384, 3397713919, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397713920, 3397715967, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397715968, 3397716223, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397716224, 3397716351, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397716352, 3397716455, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397716456, 3397716471, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397716472, 3397716479, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397716480, 3397717247, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397717248, 3397717279, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397717280, 3397717287, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397717288, 3397717311, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397717312, 3397717759, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397717760, 3397718015, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397718016, 3397722111, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397722112, 3397726207, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397726208, 3397730303, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397730304, 3397734399, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397734400, 3397738495, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397738496, 3397742591, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397742592, 3397746687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397746688, 3397763071, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397763072, 3397771263, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397771264, 3397779455, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397779456, 3397781503, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397781504, 3397783551, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397783552, 3397785599, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397785600, 3397787647, N'TO', N'Tonga') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397787648, 3397791743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397795840, 3397812223, N'HK', N'Hong Kong') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397812224, 3397816319, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397816320, 3397832703, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397832704, 3397836799, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397836800, 3397844991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397844992, 3397853951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397853952, 3397854207, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397854208, 3397855231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397855232, 3397855239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397855240, 3397881503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397881504, 3397881535, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397881536, 3397903103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397903104, 3397903359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397903360, 3397910015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397910016, 3397910271, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397910272, 3397910527, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397910528, 3397918719, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397918720, 3397922815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397922816, 3397926911, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397926912, 3397935103, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397935104, 3397939199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397939200, 3397951487, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397951488, 3397959679, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397959680, 3397963775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397963776, 3397971967, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397971968, 3397974015, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397975040, 3397976063, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397976064, 3397984255, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397984256, 3397992447, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3397992448, 3398004735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398004736, 3398008831, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398008832, 3398017023, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398017024, 3398021119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398021120, 3398023167, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398025216, 3398029311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398029312, 3398033407, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398033408, 3398035455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398037504, 3398039551, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398040576, 3398041599, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398041600, 3398062079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398062080, 3398066175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398066176, 3398074367, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398074368, 3398090751, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398090752, 3398098943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398098944, 3398107135, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398107136, 3398156287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398156288, 3398164479, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398164480, 3398172671, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398172672, 3398180863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398180864, 3398189055, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398189056, 3398205439, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398205440, 3398213631, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398213632, 3398221823, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398221824, 3398230015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398230016, 3398238207, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398238208, 3398279167, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398279168, 3398287359, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398287360, 3398291455, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398291456, 3398295551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398295552, 3398303743, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398303744, 3398304767, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398305792, 3398307839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398307840, 3398311935, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398311936, 3398320127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398320128, 3398336511, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398336512, 3398340607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398340608, 3398352895, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398352896, 3398361087, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398361088, 3398369279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398369280, 3398369791, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398369792, 3398370303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398371328, 3398373375, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398373376, 3398377471, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398377472, 3398381567, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398381568, 3398383615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398385664, 3398393855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398393856, 3398397951, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398397952, 3398402047, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398402048, 3398418431, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398418432, 3398434815, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398434816, 3398467583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398467584, 3398475775, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398475776, 3398483967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398483968, 3398488063, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398488064, 3398492159, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398492160, 3398500351, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398500352, 3398504447, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398504448, 3398508543, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398508544, 3398565887, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398565888, 3398567423, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398567424, 3398569983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398569984, 3398572031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398574080, 3398582271, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398582272, 3398590463, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398590464, 3398598655, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398598656, 3398606847, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398606848, 3398610943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398615040, 3398619135, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398619136, 3398621183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398623232, 3398631423, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398631424, 3398634303, N'JP', N'Japan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398634304, 3398634351, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398634352, 3398634367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398634368, 3398634591, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398634592, 3398634607, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398634608, 3398634783, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398634784, 3398635007, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398635008, 3398635519, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398635520, 3398636287, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636288, 3398636351, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636352, 3398636367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636368, 3398636383, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636384, 3398636415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636416, 3398636527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636528, 3398636543, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636544, 3398636583, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636584, 3398636591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636592, 3398636735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636736, 3398636767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636768, 3398636775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636776, 3398636783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636784, 3398636799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398636800, 3398637375, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398637376, 3398637535, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398637536, 3398638079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638080, 3398638087, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638088, 3398638095, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638096, 3398638135, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638136, 3398638143, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638144, 3398638159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638160, 3398638167, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638168, 3398638191, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638192, 3398638207, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638208, 3398638367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638368, 3398638383, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638384, 3398638399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638400, 3398638431, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638432, 3398638447, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638448, 3398638479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638480, 3398638527, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638528, 3398638575, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638576, 3398638591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638592, 3398638655, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638656, 3398638719, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638720, 3398638847, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638848, 3398638879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638880, 3398638911, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638912, 3398638943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638944, 3398638959, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638960, 3398638975, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638976, 3398638991, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398638992, 3398639007, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639008, 3398639231, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639232, 3398639247, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639248, 3398639263, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639264, 3398639271, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639272, 3398639279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639280, 3398639295, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639296, 3398639327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639328, 3398639343, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639344, 3398639359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639360, 3398639391, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639392, 3398639423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639424, 3398639455, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639456, 3398639487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639488, 3398639615, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398639616, 3398640127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640128, 3398640191, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640192, 3398640207, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640208, 3398640639, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640640, 3398640695, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640696, 3398640783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640784, 3398640799, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640800, 3398640863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640864, 3398640895, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640896, 3398640911, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640912, 3398640959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398640960, 3398641007, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641008, 3398641039, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641040, 3398641055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641056, 3398641087, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641088, 3398641095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641096, 3398641103, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641104, 3398641119, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641120, 3398641311, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641312, 3398641423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641424, 3398641431, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641432, 3398641455, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641456, 3398641503, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641504, 3398641567, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641568, 3398641631, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641632, 3398641647, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398641648, 3398642463, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642464, 3398642511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642512, 3398642527, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642528, 3398642559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642560, 3398642623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642624, 3398642639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642640, 3398642655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642656, 3398642815, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398642816, 3398643023, N'JP', N'Japan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643024, 3398643223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643224, 3398643247, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643248, 3398643263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643264, 3398643343, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643344, 3398643359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643360, 3398643375, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643376, 3398643383, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643384, 3398643391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643392, 3398643519, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643520, 3398643583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643584, 3398643711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643712, 3398643967, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398643968, 3398645759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398645760, 3398646271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398646272, 3398647039, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398647040, 3398647295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398647296, 3398647551, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398647552, 3398647807, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398647808, 3398668287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398668288, 3398672383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398672384, 3398680575, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398680576, 3398684671, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398684672, 3398688767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398688768, 3398705151, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398709248, 3398711295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398713344, 3398721535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398721536, 3398729727, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398729728, 3398737919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398737920, 3398742015, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398742016, 3398746111, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398746112, 3398750207, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398750208, 3398754303, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398754304, 3398758399, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398758400, 3398770687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398770688, 3398778879, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398778880, 3398787071, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398787072, 3398795263, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398795264, 3398803455, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398803456, 3398811647, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398811648, 3398819839, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398819840, 3398828031, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398828032, 3398832127, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398832128, 3398836223, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398836224, 3398840319, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398840320, 3398844415, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398844416, 3398852607, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398852608, 3398860799, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398860800, 3398873087, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398873088, 3398877183, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398877184, 3398881279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398885376, 3398897663, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398897664, 3398901759, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398901760, 3398902015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398902016, 3398902271, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398902272, 3398902783, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398903808, 3398905855, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398905856, 3398909951, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398909952, 3398918143, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398918144, 3398926335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398926336, 3398934527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398934528, 3398938623, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398938624, 3398942719, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398942720, 3398959103, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398959104, 3398975487, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398975488, 3398983679, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398983680, 3398991871, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3398991872, 3399004159, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399004160, 3399008255, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399008256, 3399012351, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399012352, 3399016447, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399016448, 3399024639, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399024640, 3399025663, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399026688, 3399028735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399028736, 3399032831, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399032832, 3399036927, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399036928, 3399041023, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399041024, 3399045119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399045120, 3399047167, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399047168, 3399057407, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399057408, 3399065599, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399065600, 3399077887, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399077888, 3399081983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399081984, 3399099647, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399099648, 3399099903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399099904, 3399100719, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100720, 3399100735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100736, 3399100751, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100752, 3399100799, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100800, 3399100863, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100864, 3399100879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100880, 3399100895, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100896, 3399100927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399100928, 3399101951, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399101952, 3399101983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399101984, 3399102079, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102080, 3399102111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102112, 3399102127, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102128, 3399102207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102208, 3399102287, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102288, 3399102399, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102400, 3399102431, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102432, 3399102463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102464, 3399102719, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102720, 3399102975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399102976, 3399106559, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399106560, 3399122943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399122944, 3399131135, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399131136, 3399135231, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399135232, 3399139327, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399139328, 3399147519, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399147520, 3399155711, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399155712, 3399196671, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399196672, 3399204863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399204864, 3399221247, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399221248, 3399286783, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399286784, 3399303167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399303168, 3399311359, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399311360, 3399319551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399319552, 3399331839, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399331840, 3399332351, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399332352, 3399332863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399332864, 3399333375, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399333376, 3399335423, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399335424, 3399335935, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399335936, 3399344127, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399344128, 3399352319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399352320, 3399389183, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399389184, 3399393279, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399393280, 3399401471, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399401472, 3399409663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399417856, 3399450623, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399450624, 3399467007, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399467008, 3399483391, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399483392, 3399495679, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399495680, 3399499775, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399499776, 3399507967, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399507968, 3399512063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399512064, 3399514111, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399516160, 3399524351, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399524352, 3399528447, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399528448, 3399532543, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399532544, 3399544575, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399544576, 3399544831, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399544832, 3399546879, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399546880, 3399547135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399547136, 3399547903, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399547904, 3399547911, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399547912, 3399547935, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399547936, 3399547951, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399547952, 3399547967, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399547968, 3399547999, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399548000, 3399548415, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399548416, 3399548671, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399548672, 3399548927, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399548928, 3399557119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399557120, 3399565311, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399565312, 3399581695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399581696, 3399583487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399583488, 3399583743, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399583744, 3399584255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399584256, 3399584511, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399584512, 3399587839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399587840, 3399588095, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399588096, 3399589631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399589632, 3399589887, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399589888, 3399593983, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399593984, 3399598079, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399598080, 3399614463, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399614464, 3399622655, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399622656, 3399626751, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399626752, 3399630847, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399630848, 3399634943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399634944, 3399639039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399639040, 3399643135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399643136, 3399655423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399655424, 3399659519, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399659520, 3399661567, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399663616, 3399671807, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399671808, 3399679999, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399680000, 3399688191, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399688192, 3399696383, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399696384, 3399712767, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399712768, 3399720959, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399720960, 3399729151, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399729152, 3399745535, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399745536, 3399749631, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399749632, 3399751679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399753728, 3399761919, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399761920, 3399770111, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399778304, 3399786495, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399786496, 3399794687, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399794688, 3399798783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399798784, 3399800831, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399800832, 3399802879, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399802880, 3399811071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399811072, 3399819263, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399819264, 3399823359, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399823360, 3399825407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399827456, 3399835647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399835648, 3399839743, N'CN', N'China') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399839744, 3399841791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399841792, 3399846399, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399846400, 3399846407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399846408, 3399846919, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399846920, 3399846935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399846936, 3399847247, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399847248, 3399847263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399847264, 3399852031, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399852032, 3399856127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399860224, 3399864319, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399864320, 3399868415, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399868416, 3399876607, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399876608, 3399917567, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399917568, 3399921663, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399921664, 3399923711, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399925760, 3399933951, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399933952, 3399942143, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399942144, 3399952639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399952640, 3399952703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399952704, 3399967871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399967872, 3399967999, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399968000, 3399974911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399974912, 3399979007, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399979008, 3399995391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399995392, 3399999487, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3399999488, 3400001735, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400001736, 3400001759, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400001760, 3400002047, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400002048, 3400002431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400002432, 3400007679, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400007680, 3400024063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400024064, 3400028159, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400028160, 3400030207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400032256, 3400040447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400048640, 3400056831, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400056832, 3400060927, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400060928, 3400062975, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400062976, 3400065023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400065024, 3400073215, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400073216, 3400077311, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400077312, 3400079359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400081408, 3400089599, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400089600, 3400097791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400097792, 3400105983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400105984, 3400114175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400114176, 3400118271, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400122368, 3400130559, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400130560, 3400138751, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400138752, 3400146943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400146944, 3400151039, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400151040, 3400155135, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400155136, 3400163327, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400163328, 3400167423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400167424, 3400171519, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400171520, 3400179711, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400179712, 3400181759, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400183808, 3400187903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400187904, 3400191999, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400192000, 3400194047, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400194048, 3400196095, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400196096, 3400212479, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400212480, 3400220671, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400220672, 3400221055, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400221056, 3400221119, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400221120, 3400224767, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400224768, 3400228863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400228864, 3400232959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400232960, 3400245247, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400245248, 3400253439, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400253440, 3400257535, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400257536, 3400261631, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400261632, 3400263679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400265728, 3400267775, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400268800, 3400270847, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400271872, 3400273919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400273920, 3400275967, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400278016, 3400286207, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400286208, 3400294399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400294400, 3400310783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400310784, 3400335359, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400335360, 3400336383, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400337408, 3400339455, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400339456, 3400341503, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400341504, 3400343551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400343552, 3400351743, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400351744, 3400359935, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400359936, 3400368127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400368128, 3400388607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400388608, 3400392703, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400392704, 3400400895, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400400896, 3400401919, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400402944, 3400404991, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400404992, 3400409087, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400409088, 3400413183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400413184, 3400417279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400417280, 3400421375, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400421376, 3400423423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400425472, 3400429567, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400429568, 3400431615, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400433664, 3400434175, N'HK', N'Hong Kong') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434176, 3400434463, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434464, 3400434471, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434472, 3400434479, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434480, 3400434487, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434488, 3400434519, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434520, 3400434527, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434528, 3400434535, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434536, 3400434543, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434544, 3400434551, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434552, 3400434559, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434560, 3400434567, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434568, 3400434575, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434576, 3400434583, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434584, 3400434599, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434600, 3400434607, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434608, 3400434647, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434648, 3400434655, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434656, 3400434663, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434664, 3400434679, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434680, 3400434687, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434688, 3400434895, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434896, 3400434911, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434912, 3400434927, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434928, 3400434935, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434936, 3400434951, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434952, 3400434959, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434960, 3400434975, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434976, 3400434991, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400434992, 3400435007, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435008, 3400435071, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435072, 3400435087, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435088, 3400435095, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435096, 3400435119, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435120, 3400435143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435144, 3400435151, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435152, 3400435159, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435160, 3400435175, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435176, 3400435183, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435184, 3400435199, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435200, 3400435207, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435208, 3400435239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435240, 3400435263, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435264, 3400435391, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435392, 3400435423, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435424, 3400435439, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435440, 3400435455, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435456, 3400435575, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435576, 3400435639, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435640, 3400435647, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435648, 3400435663, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435664, 3400435711, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400435712, 3400436479, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400436480, 3400437247, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437248, 3400437375, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437376, 3400437439, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437440, 3400437527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437528, 3400437543, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437544, 3400437551, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437552, 3400437591, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437592, 3400437599, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437600, 3400437607, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437608, 3400437615, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437616, 3400437631, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437632, 3400437647, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437648, 3400437655, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437656, 3400437663, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437664, 3400437671, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437672, 3400437679, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437680, 3400437687, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437688, 3400437703, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437704, 3400437711, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437712, 3400437719, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437720, 3400437727, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437728, 3400437759, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437760, 3400437767, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437768, 3400437775, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437776, 3400437783, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437784, 3400437807, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437808, 3400437815, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437816, 3400437823, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437824, 3400437831, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437832, 3400437847, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437848, 3400437887, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437888, 3400437895, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437896, 3400437903, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437904, 3400437911, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437912, 3400437927, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437928, 3400437935, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437936, 3400437951, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437952, 3400437959, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437960, 3400437967, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437968, 3400437975, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437976, 3400437983, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400437984, 3400438015, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438016, 3400438079, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438080, 3400438111, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438112, 3400438143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438144, 3400438175, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438176, 3400438399, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438400, 3400438591, N'BD', N'Bangladesh') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438592, 3400438783, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438784, 3400438815, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438816, 3400438831, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438832, 3400438839, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438840, 3400438847, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438848, 3400438863, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438864, 3400438871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438872, 3400438879, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438880, 3400438911, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438912, 3400438919, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438920, 3400438927, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438928, 3400438943, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438944, 3400438959, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438960, 3400438991, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400438992, 3400438999, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439000, 3400439007, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439008, 3400439023, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439024, 3400439039, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439040, 3400439295, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439296, 3400439551, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439552, 3400439711, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439712, 3400439743, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439744, 3400439807, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439808, 3400439871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439872, 3400439935, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400439936, 3400440063, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440064, 3400440079, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440080, 3400440087, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440088, 3400440095, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440096, 3400440111, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440112, 3400440127, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440128, 3400440135, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440136, 3400440143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440144, 3400440159, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440160, 3400440167, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440168, 3400440175, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440176, 3400440191, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440192, 3400440199, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440200, 3400440207, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440208, 3400440223, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440224, 3400440239, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440240, 3400440247, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440248, 3400440255, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440256, 3400440263, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440264, 3400440271, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440272, 3400440295, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440296, 3400440303, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440304, 3400440319, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440320, 3400440327, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440328, 3400440335, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440336, 3400440343, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440344, 3400440351, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440352, 3400440359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440360, 3400440367, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440368, 3400440375, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440376, 3400440383, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440384, 3400440391, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440392, 3400440415, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440416, 3400440431, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440432, 3400440439, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440440, 3400440447, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440448, 3400440455, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440456, 3400440463, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440464, 3400440467, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440468, 3400440475, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440476, 3400440479, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440480, 3400440487, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440488, 3400440495, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440496, 3400440499, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440500, 3400440507, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440508, 3400440519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440520, 3400440527, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440528, 3400440531, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440532, 3400440535, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440536, 3400440539, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440540, 3400440543, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440544, 3400440551, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440552, 3400440575, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440576, 3400440583, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440584, 3400440591, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440592, 3400440607, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440608, 3400440623, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440624, 3400440639, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440640, 3400440703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440704, 3400440712, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440713, 3400440719, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440720, 3400440727, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440728, 3400440735, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440736, 3400440743, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440744, 3400440750, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440751, 3400440751, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440752, 3400440759, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440760, 3400440767, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440768, 3400440775, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440776, 3400440783, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440784, 3400440792, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440793, 3400440799, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440800, 3400440808, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440809, 3400440815, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440816, 3400440823, N'AF', N'Afghanistan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440824, 3400440831, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440832, 3400440895, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440896, 3400440959, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400440960, 3400441023, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441024, 3400441055, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441056, 3400441063, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441064, 3400441071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441072, 3400441079, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441080, 3400441087, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441088, 3400441151, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441152, 3400441279, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441280, 3400441311, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441312, 3400441319, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441320, 3400441327, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441328, 3400441335, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441336, 3400441855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400441856, 3400450047, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400450048, 3400458239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400458240, 3400466431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400466432, 3400499199, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400499200, 3400503295, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400503296, 3400507391, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400507392, 3400515583, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400515584, 3400531967, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400531968, 3400534015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400536064, 3400548351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400548352, 3400581119, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400581120, 3400589311, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400589312, 3400597503, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400597504, 3400605695, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400605696, 3400607743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400607744, 3400608767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400609792, 3400630271, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400630272, 3400646655, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400646656, 3400648703, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400648704, 3400648831, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400648832, 3400648983, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400648984, 3400648987, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400648988, 3400649919, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400649920, 3400650047, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400650048, 3400652031, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400652032, 3400652287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400652288, 3400652439, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400652440, 3400652447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400652448, 3400652479, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400652480, 3400652543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400652544, 3400654207, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400654208, 3400654335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400654336, 3400654695, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400654696, 3400654703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400654704, 3400654719, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400654720, 3400654735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400654736, 3400654847, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400654848, 3400663039, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400663040, 3400683519, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400683520, 3400691711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400691712, 3400695807, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400695808, 3400728575, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400728576, 3400736767, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400736768, 3400744959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400744960, 3400753151, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400753152, 3400761343, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400761344, 3400769535, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400769536, 3400773631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400773632, 3400775679, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400775680, 3400777727, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400777728, 3400790015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400790016, 3400794111, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400794112, 3400802303, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400802304, 3400806399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400806400, 3400808447, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400808448, 3400810495, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400810496, 3400826879, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400826880, 3400835071, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400835072, 3400839167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400839168, 3400847359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400847360, 3400849407, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400849408, 3400851455, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400851456, 3400867839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400867840, 3400876031, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400876032, 3400884223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400884224, 3400888319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400888320, 3400892415, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400892416, 3400925183, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400925184, 3400933375, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400933376, 3400937471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400937472, 3400941567, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400941568, 3400966143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400966144, 3400974335, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400974336, 3400982527, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400982528, 3400990719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400990720, 3400998911, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3400998912, 3401003007, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401003008, 3401007103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401007104, 3401011199, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401011200, 3401015295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401015296, 3401023487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401023488, 3401056255, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401056256, 3401400319, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401400320, 3401404415, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401404416, 3401408511, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401408512, 3401416703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401416704, 3401420799, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401420800, 3401424895, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401424896, 3401428991, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401428992, 3401431039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401431040, 3401433087, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401433088, 3401441279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401441280, 3401449471, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401449472, 3401515007, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401515008, 3401515263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401515264, 3401515519, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401515520, 3401516031, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401517056, 3401519103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401519104, 3401523199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401523200, 3401527295, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401527296, 3401529343, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401531392, 3401539583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401539584, 3401543679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401543680, 3401545727, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401545728, 3401547775, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401547776, 3401580543, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401580544, 3401642495, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401642496, 3401642751, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3401642752, 3402629119, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3402629120, 3403162623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3403162624, 3403162655, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3403162656, 3403162831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3403162832, 3403163647, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3403163648, 3403163903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3403163904, 3403165695, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3403165696, 3404857954, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3404857955, 3404857955, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3404857956, 3404857966, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3404857967, 3404857967, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3404857968, 3405774847, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3405774848, 3406071807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406071808, 3406073855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406073856, 3406384639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406384640, 3406385151, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406385152, 3406434303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406434304, 3406436351, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406436352, 3406591487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406591488, 3406591743, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406591744, 3406617599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406617600, 3406617855, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406617856, 3406618111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406618624, 3406625023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406625024, 3406625279, N'NF', N'Norfolk Island') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406625280, 3406696959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406696960, 3406697215, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406697216, 3406734847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406734848, 3406735103, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406735104, 3406746623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406746624, 3406746879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406746880, 3406950399, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406950400, 3406951423, N'NF', N'Norfolk Island') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406951424, 3406961151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406961152, 3406961407, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3406961408, 3407045887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407045888, 3407046143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407046144, 3407057663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407057664, 3407057919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407057920, 3407096831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407096832, 3407097087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407097088, 3407112447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407112448, 3407112703, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407112704, 3407152895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407152896, 3407153151, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407153152, 3407157559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157560, 3407157563, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157564, 3407157579, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157580, 3407157583, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157584, 3407157611, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157612, 3407157647, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157648, 3407157703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157704, 3407157715, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157716, 3407157723, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157724, 3407157759, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407157760, 3407158015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158016, 3407158047, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158048, 3407158051, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158052, 3407158055, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158056, 3407158063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158064, 3407158079, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158080, 3407158095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158096, 3407158127, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158128, 3407158143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158144, 3407158151, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158152, 3407158167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158168, 3407158175, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158176, 3407158207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158208, 3407158223, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158224, 3407158239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158240, 3407158271, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407158272, 3407159091, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159092, 3407159095, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159096, 3407159111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159112, 3407159151, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159152, 3407159191, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159192, 3407159195, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159196, 3407159199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159200, 3407159215, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159216, 3407159231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159232, 3407159239, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159240, 3407159263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159264, 3407159295, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407159296, 3407268863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407268864, 3407269119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407269120, 3407498495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407498496, 3407498751, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407498752, 3407524607, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407524608, 3407524863, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407524864, 3407604479, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407604480, 3407604735, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407604736, 3407608715, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407608716, 3407608736, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407608737, 3407732223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407732224, 3407732479, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407732480, 3407750655, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407750656, 3407751167, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407751168, 3407753215, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407753216, 3407753727, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407753728, 3407796991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407796992, 3407797247, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407797248, 3407798271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407798272, 3407798783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407798784, 3407808511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407808512, 3407809023, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407809024, 3407828991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407828992, 3407829503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407829504, 3407837183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407837184, 3407837439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407837440, 3407866367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407866368, 3407866623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407866624, 3407873023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407873024, 3407873535, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407873536, 3407987711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407987968, 3407988223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407988224, 3407988735, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3407988736, 3408023807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3408023808, 3408024063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3408024064, 3408041983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3408041984, 3408042495, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3408042496, 3408042751, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3408042752, 3409418495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409418496, 3409418751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409418752, 3409505023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409505024, 3409505279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409505280, 3409510367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409510368, 3409510383, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409510384, 3409547519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409547520, 3409547775, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409547776, 3409802831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409802832, 3409802847, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409802848, 3409838335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409838336, 3409838591, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409838592, 3409969151, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3409969152, 3410755583, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410755584, 3410771967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410771968, 3410780159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410780160, 3410788351, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410788352, 3410792447, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410792448, 3410796543, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410800640, 3410804735, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410804736, 3410821119, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410821120, 3410853887, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410853888, 3410862079, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410862080, 3410866175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410866176, 3410866431, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410866432, 3410866687, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410866688, 3410866943, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410866944, 3410867199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410868224, 3410870271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410870272, 3410874367, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410874368, 3410886655, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410886656, 3410887679, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410887680, 3410887935, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410887936, 3410888703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410888704, 3410890751, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410890752, 3410894847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410894848, 3410898943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410898944, 3410903039, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410903040, 3410911231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410911232, 3410915327, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410915328, 3410919423, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410919424, 3410927615, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410927616, 3410931711, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410931712, 3410935807, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410935808, 3410939903, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410939904, 3410943999, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410944000, 3410952191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410952192, 3410956287, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410956288, 3410958335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410960384, 3410964479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410964480, 3410968575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410968576, 3410984959, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3410984960, 3411017727, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411017728, 3411018751, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411019776, 3411021823, N'ID', N'Indonesia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411021824, 3411023871, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411023872, 3411025919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411025920, 3411030015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411030016, 3411032063, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411034112, 3411050495, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411052544, 3411054591, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411054592, 3411058687, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411058688, 3411062783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411062784, 3411063039, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411063040, 3411063295, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411063296, 3411064831, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411066880, 3411083263, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411083264, 3411087359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411087360, 3411091455, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411091456, 3411099647, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411099648, 3411107839, N'MM', N'Myanmar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411107840, 3411111935, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411111936, 3411116031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411116032, 3411124223, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411124224, 3411128319, N'MM', N'Myanmar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411128320, 3411130367, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411130368, 3411132415, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411132416, 3411144703, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411144704, 3411146751, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411147776, 3411149311, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411149312, 3411149823, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411150848, 3411152895, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411152896, 3411154943, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411154944, 3411156991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411156992, 3411161087, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411161088, 3411165183, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411165184, 3411173375, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411173376, 3411177471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411177472, 3411189759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411189760, 3411197951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411197952, 3411202047, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411202048, 3411204095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411206144, 3411210239, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411210240, 3411212287, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411213312, 3411215359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411216384, 3411218431, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411218432, 3411220479, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411220480, 3411226623, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411226624, 3411228671, N'IO', N'British Indian Ocean Territory') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411228672, 3411230719, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411230720, 3411247103, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411247104, 3411255295, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411255296, 3411263487, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411263488, 3411275775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411275776, 3411277823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411278848, 3411296255, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411296256, 3411312639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411312640, 3411313151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411313152, 3411313663, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411314688, 3411316735, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411316736, 3411318783, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411318784, 3411320831, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411320832, 3411337215, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411337216, 3411341311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411341312, 3411345407, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411345408, 3411410943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411410944, 3411435519, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411435520, 3411443711, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411443712, 3411460095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411460096, 3411464191, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411464192, 3411466239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411468288, 3411470335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411470336, 3411472383, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411472384, 3411474431, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411475456, 3411475967, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411476480, 3411509247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411509248, 3411542015, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411542016, 3411550207, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411550208, 3411558399, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411558400, 3411558911, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411558912, 3411558927, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411558928, 3411558943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411558944, 3411558959, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411558960, 3411558975, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411558976, 3411558983, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411558984, 3411559007, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559008, 3411559015, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559016, 3411559023, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559024, 3411559031, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559032, 3411559035, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559036, 3411559039, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559040, 3411559063, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559064, 3411559071, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559072, 3411559079, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559080, 3411559087, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559088, 3411559095, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559096, 3411559103, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559104, 3411559111, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559112, 3411559135, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559136, 3411559143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559144, 3411559167, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559168, 3411559199, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559200, 3411559231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559232, 3411559295, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559296, 3411559303, N'ID', N'Indonesia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559304, 3411559311, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559312, 3411559343, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559344, 3411559359, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559360, 3411559423, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559424, 3411559455, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559456, 3411559487, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559488, 3411559551, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559552, 3411559679, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559680, 3411559935, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411559936, 3411560031, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411560032, 3411560063, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411560064, 3411560319, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411560320, 3411560447, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411560448, 3411562047, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562048, 3411562111, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562112, 3411562495, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562496, 3411562559, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562560, 3411562591, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562592, 3411562607, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562608, 3411562623, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562624, 3411562751, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411562752, 3411563015, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563016, 3411563023, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563024, 3411563047, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563048, 3411563055, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563056, 3411563135, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563136, 3411563143, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563144, 3411563183, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563184, 3411563191, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563192, 3411563247, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563248, 3411563255, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563256, 3411563263, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563264, 3411563519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563520, 3411563775, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411563776, 3411564031, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564032, 3411564055, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564056, 3411564071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564072, 3411564087, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564088, 3411564095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564096, 3411564119, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564120, 3411564191, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564192, 3411564199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564200, 3411564239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564240, 3411564247, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564248, 3411564255, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564256, 3411564263, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564264, 3411564287, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564288, 3411564543, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564544, 3411564551, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564552, 3411564559, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564560, 3411564567, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564568, 3411564587, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564588, 3411564623, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564624, 3411564639, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564640, 3411564647, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564648, 3411564663, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564664, 3411564671, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564672, 3411564703, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564704, 3411564711, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564712, 3411564743, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564744, 3411564751, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564752, 3411564767, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564768, 3411564775, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411564776, 3411565055, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411565056, 3411565063, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411565064, 3411565071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411565072, 3411565311, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411565312, 3411566591, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411566592, 3411570687, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411570688, 3411572735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411574784, 3411582975, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411582976, 3411587071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411587072, 3411591167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411591168, 3411599359, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411599360, 3411607551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411607552, 3411608575, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411609600, 3411611647, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411611648, 3411615743, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411615744, 3411623935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411623936, 3411640319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411640320, 3411642367, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411642880, 3411643135, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411643136, 3411643391, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411646464, 3411648511, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411648512, 3411656703, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411656704, 3411673087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411673088, 3411674111, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411675136, 3411677183, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411677184, 3411679231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411679232, 3411681279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411681280, 3411689471, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411689472, 3411705855, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411705856, 3411730431, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411730432, 3411738623, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411738624, 3411746815, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411746816, 3411755007, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411755008, 3411763199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411763200, 3411767295, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411767296, 3411769343, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411769344, 3411771391, N'CN', N'China') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411771392, 3411773439, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411773440, 3411773695, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411773696, 3411773951, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411773952, 3411774463, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411774464, 3411776511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411776512, 3411776767, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411776768, 3411777663, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411777664, 3411777791, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411777792, 3411779519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411779520, 3411779535, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411779536, 3411779583, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411779584, 3411787775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411787776, 3411795967, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411795968, 3411804159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411804160, 3411805183, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411806208, 3411808255, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411808256, 3411810303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411812352, 3411820543, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411820544, 3411836927, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411836928, 3411845119, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411845120, 3411853311, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411853312, 3411857407, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411857408, 3411857663, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411857664, 3411857919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411857920, 3411858175, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411858176, 3411858431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411858432, 3411858687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411858688, 3411858943, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411858944, 3411859455, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411859456, 3411860735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411860736, 3411861503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411861504, 3411869695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411869696, 3411943423, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411943424, 3411951615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411951616, 3411967999, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411968000, 3411984383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3411984384, 3412000767, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412000768, 3412002815, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412002816, 3412004863, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412004864, 3412017151, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412017152, 3412025343, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412025344, 3412033535, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412033536, 3412066303, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412066304, 3412213759, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412213760, 3412221951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412221952, 3412230143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412230144, 3412246527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412246528, 3412249855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412249856, 3412249863, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412249864, 3412249871, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412249872, 3412249879, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412249880, 3412249887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412249888, 3412249903, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412249904, 3412249983, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412249984, 3412250015, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250016, 3412250023, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250024, 3412250031, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250032, 3412250063, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250064, 3412250079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250080, 3412250111, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250112, 3412250367, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250368, 3412250375, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250376, 3412250383, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250384, 3412250399, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250400, 3412250431, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250432, 3412250447, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250448, 3412250479, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250480, 3412250495, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250496, 3412250503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250504, 3412250511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250512, 3412250527, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250528, 3412250559, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250560, 3412250623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250624, 3412250879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412250880, 3412254719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412254720, 3412262911, N'NR', N'Nauru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412262912, 3412264959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412264960, 3412267007, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412267008, 3412271103, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412271104, 3412273151, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412273152, 3412275199, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412275200, 3412279295, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412279296, 3412281343, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412281344, 3412283391, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412283392, 3412287487, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412287488, 3412295679, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412295680, 3412312063, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412312064, 3412320255, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412320256, 3412322303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412322304, 3412324351, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412324352, 3412326399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412327424, 3412327935, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412327936, 3412328191, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412328192, 3412328447, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412328448, 3412336639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412336640, 3412340735, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412340736, 3412342783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412344832, 3412348927, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412353024, 3412361215, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412361216, 3412362239, N'HK', N'Hong Kong') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412362240, 3412363263, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412363264, 3412369407, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412369408, 3412377599, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412377600, 3412381695, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412381696, 3412385791, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412385792, 3412393983, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412393984, 3412426751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412426752, 3412434943, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412434944, 3412443135, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412443136, 3412451327, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412451328, 3412594687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412594688, 3412596735, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412596736, 3412598783, N'MV', N'Maldives') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412602880, 3412606975, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412606976, 3412615167, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412615168, 3412656127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412656128, 3412672511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412672512, 3412680703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412680704, 3412688895, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412688896, 3412697087, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412697088, 3412705279, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412705280, 3412713471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412713472, 3412721663, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412721664, 3412787199, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412787200, 3412803583, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412803584, 3412819967, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412819968, 3412852735, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412852736, 3412918271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412918272, 3412926463, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412926464, 3412934655, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412934656, 3412951039, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3412951040, 3413000191, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413000192, 3413004287, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413004288, 3413008383, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413008384, 3413016575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413016576, 3413024767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413024768, 3413032959, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413032960, 3413037055, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413041152, 3413043199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413045248, 3413047295, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413047296, 3413098495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413102592, 3413106687, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413106688, 3413110783, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413114880, 3413119383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413119384, 3413119387, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413119388, 3413133311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413133312, 3413135359, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413135360, 3413139455, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413139456, 3413147647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413147648, 3413155839, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413155840, 3413164031, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413164032, 3413172223, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413172224, 3413180415, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413180416, 3413213183, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413213184, 3413229567, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413229568, 3413245951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413245952, 3413262335, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413262336, 3413270527, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413270528, 3413278719, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413278720, 3413295103, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413295104, 3413303295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413311488, 3413327871, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413327872, 3413344255, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413344256, 3413360639, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413360640, 3413377023, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413377024, 3413524479, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413524480, 3413540863, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413540864, 3413557247, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413557248, 3413565439, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413565440, 3413569535, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413573632, 3413573887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413573888, 3413574143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413574144, 3413574399, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413574400, 3413574655, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413574656, 3413575679, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413575680, 3413576703, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413576704, 3413576959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413576960, 3413577215, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413577216, 3413577727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413577728, 3413579775, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413579776, 3413582847, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413582848, 3413583871, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413583872, 3413584127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413584128, 3413584383, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413584384, 3413584895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413584896, 3413585919, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413585920, 3413586175, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413586176, 3413586687, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413639168, 3413704703, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413704704, 3413737471, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413737472, 3413753855, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413753856, 3413762047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413762048, 3413770239, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413770240, 3413786623, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413786624, 3413835775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413835776, 3413843967, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413843968, 3413848063, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413848064, 3413850111, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413852160, 3413868543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413868544, 3413884927, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413884928, 3413893119, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413893120, 3413899199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413899200, 3413899203, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413899204, 3413901311, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413901312, 3413902335, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413903360, 3413905407, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413905408, 3413907455, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413907456, 3413917695, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413917696, 3413925887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413925888, 3413934079, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413934080, 3413946367, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413946368, 3413948415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413950464, 3413966847, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3413966848, 3414050303, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414050304, 3414050815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414050816, 3414098175, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414098176, 3414098191, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414098192, 3414155519, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414155520, 3414155775, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414155776, 3414163455, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414163456, 3414171647, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414171648, 3414179839, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414179840, 3414188031, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414188032, 3414204415, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414204416, 3414220799, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414220800, 3414222847, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414224896, 3414226943, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414227968, 3414230015, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414233088, 3414235135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414237184, 3414245375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414245376, 3414253567, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414253568, 3414257663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414261760, 3414269951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414269952, 3414278143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414278144, 3414294527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414294528, 3414302719, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414302720, 3414310911, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414310912, 3414327295, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414327296, 3414335487, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414335488, 3414339583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414343680, 3414360063, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414360064, 3414376447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414376448, 3414409215, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414409216, 3414413311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414413312, 3414417407, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414417408, 3414425599, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414425600, 3414433791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414433792, 3414441983, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414441984, 3414450175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414450176, 3414458367, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414458368, 3414466559, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414466560, 3414474751, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414474752, 3414478847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414478848, 3414482943, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414482944, 3414491135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414491136, 3414523903, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414523904, 3414532095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414540288, 3414554623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414555648, 3414556671, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414556672, 3414605823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414605824, 3414616063, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414616064, 3414618111, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414618112, 3414620159, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414621184, 3414638591, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414638592, 3414646783, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414646784, 3414654975, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414654976, 3414663167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414663168, 3414667263, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3414671360, 3415080959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415080960, 3415083007, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415083008, 3415083519, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415083520, 3415084031, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415084032, 3415084543, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415084544, 3415085055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415085056, 3415087615, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415087616, 3415087871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415087872, 3415088127, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415088128, 3415089151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415089152, 3415097343, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415097344, 3415105535, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415105536, 3415113727, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415113728, 3415121919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415121920, 3415130111, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415130112, 3415138303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415138304, 3415146495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415146496, 3415162879, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415162880, 3415171071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415171072, 3415179263, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415179264, 3415187455, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415187456, 3415191551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415195648, 3415220223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415220224, 3415224319, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415224320, 3415228415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415228416, 3415236607, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415236608, 3415244799, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415244800, 3415277567, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415285760, 3415293951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415293952, 3415302143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415302144, 3415306239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415306240, 3415308287, N'TH', N'Thailand') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415308288, 3415310335, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415310336, 3415326719, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415326720, 3415334911, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415334912, 3415343103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415343104, 3415425023, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415425024, 3415433215, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415433216, 3415435263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415437312, 3415441407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415441408, 3415474175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415474176, 3415490559, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415490560, 3415494655, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415498752, 3415506943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415506944, 3415556095, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415556096, 3415564287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415564288, 3415568383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415572480, 3415605247, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415605248, 3415752703, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415752704, 3415760895, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415760896, 3415769087, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415769088, 3415777279, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415777280, 3415785471, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415785472, 3415793663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415793664, 3415801855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415801856, 3415802879, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415803904, 3415805951, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415805952, 3415807999, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415808000, 3415810047, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415810048, 3415814143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415818240, 3415822335, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415822336, 3415826431, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415826432, 3415834623, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415834624, 3415838719, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415838720, 3415842815, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415842816, 3415846911, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415851008, 3415867391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3415867392, 3416047615, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416047616, 3416063999, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416064000, 3416131583, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416131584, 3416133631, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416133632, 3416135679, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416135680, 3416137727, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416137728, 3416145919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416145920, 3416154111, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416154112, 3416260607, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416260608, 3416261119, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416261120, 3416261631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416262656, 3416264703, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416264704, 3416268799, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416268800, 3416272895, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416272896, 3416274943, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416274944, 3416276991, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416276992, 3416285183, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416285184, 3416289279, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416289280, 3416293375, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416297472, 3416301567, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416301568, 3416317951, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416317952, 3416326143, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416326144, 3416327167, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416328192, 3416330239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416330240, 3416334335, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416334336, 3416342527, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416342528, 3416367103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416375296, 3416383487, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416383488, 3416391679, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416391680, 3416457215, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416457216, 3416460799, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416460800, 3416461055, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416461056, 3416465663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416465664, 3416465919, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416465920, 3416471039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416471040, 3416471295, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416471296, 3416473727, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416473728, 3416473855, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416473856, 3416473887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416473888, 3416474111, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474112, 3416474239, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474240, 3416474375, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474376, 3416474383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474384, 3416474407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474408, 3416474415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474416, 3416474639, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474640, 3416474671, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474672, 3416474687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474688, 3416474719, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474720, 3416474743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474744, 3416474751, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474752, 3416474775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474776, 3416474783, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474784, 3416474847, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474848, 3416474855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416474856, 3416475135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475136, 3416475167, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475168, 3416475199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475200, 3416475263, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475264, 3416475455, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475456, 3416475487, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475488, 3416475615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475616, 3416475647, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475648, 3416475903, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475904, 3416475919, N'SG', N'Singapore') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475920, 3416475951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475952, 3416475959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416475960, 3416476031, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476032, 3416476063, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476064, 3416476103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476104, 3416476127, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476128, 3416476207, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476208, 3416476239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476240, 3416476863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476864, 3416476927, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416476928, 3416477199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477200, 3416477207, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477208, 3416477215, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477216, 3416477239, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477240, 3416477247, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477248, 3416477759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477760, 3416477823, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477824, 3416477887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477888, 3416477951, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477952, 3416477983, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416477984, 3416478143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478144, 3416478175, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478176, 3416478303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478304, 3416478335, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478336, 3416478655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478656, 3416478671, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478672, 3416478703, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478704, 3416478783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478784, 3416478799, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478800, 3416478847, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478848, 3416478911, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478912, 3416478927, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416478928, 3416479103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416479104, 3416479231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416479232, 3416481575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481576, 3416481583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481584, 3416481823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481824, 3416481839, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481840, 3416481855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481856, 3416481871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481872, 3416481903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481904, 3416481935, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416481936, 3416482047, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482048, 3416482079, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482080, 3416482159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482160, 3416482191, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482192, 3416482255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482256, 3416482287, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482288, 3416482591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482592, 3416482607, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482608, 3416482671, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482672, 3416482687, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482688, 3416482703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482704, 3416482719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482720, 3416482784, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482785, 3416482815, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416482816, 3416483167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483168, 3416483199, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483200, 3416483231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483232, 3416483295, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483296, 3416483327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483328, 3416483391, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483392, 3416483407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483408, 3416483423, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483424, 3416483567, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483568, 3416483583, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483584, 3416483647, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483648, 3416483711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483712, 3416483775, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483776, 3416483839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483840, 3416483847, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483848, 3416483863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483864, 3416483871, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483872, 3416483903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483904, 3416483911, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483912, 3416483943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483944, 3416483951, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483952, 3416483959, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483960, 3416483967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483968, 3416483975, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416483976, 3416484023, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484024, 3416484039, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484040, 3416484055, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484056, 3416484143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484144, 3416484159, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484160, 3416484191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484192, 3416484223, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484224, 3416484239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484240, 3416484255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484256, 3416484271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484272, 3416484287, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484288, 3416484319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484320, 3416484335, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484336, 3416484351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484352, 3416484367, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484368, 3416484479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484480, 3416484607, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484608, 3416484671, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484672, 3416484735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484736, 3416484799, N'JP', N'Japan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484800, 3416484863, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416484864, 3416485823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485824, 3416485855, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485856, 3416485887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485888, 3416485903, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485904, 3416485911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485912, 3416485927, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485928, 3416485935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485936, 3416485943, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485944, 3416485967, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485968, 3416485975, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416485976, 3416486023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416486024, 3416486039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416486040, 3416486063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416486064, 3416486119, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416486120, 3416486127, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416486128, 3416486143, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416486144, 3416487167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487168, 3416487175, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487176, 3416487183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487184, 3416487199, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487200, 3416487303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487304, 3416487327, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487328, 3416487359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487360, 3416487383, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487384, 3416487391, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487392, 3416487415, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487416, 3416487423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487424, 3416487487, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416487488, 3416488451, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488452, 3416488453, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488454, 3416488578, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488579, 3416488579, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488580, 3416488580, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488581, 3416488581, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488582, 3416488582, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488583, 3416488583, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488584, 3416488584, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416488585, 3416489471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489472, 3416489727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489728, 3416489731, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489732, 3416489735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489736, 3416489751, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489752, 3416489773, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489774, 3416489791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489792, 3416489823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489824, 3416489983, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416489984, 3416506367, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416506368, 3416514559, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416514560, 3416522751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416522752, 3416588287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416588288, 3416653823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416653824, 3416679543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416679544, 3416679551, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416679552, 3416684175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416684176, 3416684183, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416684184, 3416686591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416686592, 3416694783, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416694784, 3416702975, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416702976, 3416707071, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416711168, 3416719359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416719360, 3416727551, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416727552, 3416735743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416735744, 3416752127, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416752128, 3416784895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416784896, 3416793087, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416793088, 3416797183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416801280, 3416817663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416817664, 3416850431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416850432, 3416851455, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416852480, 3416854527, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416854528, 3416856575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416858624, 3416862719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416862720, 3416864767, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416864768, 3416864895, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416864896, 3416865023, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865024, 3416865151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865152, 3416865279, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865280, 3416865295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865296, 3416865407, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865408, 3416865535, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865536, 3416865655, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865656, 3416865791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416865792, 3416866815, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416866816, 3416883199, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416883200, 3416915967, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416915968, 3416920063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416924160, 3416928255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416932352, 3416936447, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416936448, 3416938495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416940544, 3416948735, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416948736, 3416981503, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416981504, 3416982527, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416983552, 3416985599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416985600, 3416989695, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416989696, 3416993791, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3416997888, 3417014271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417014272, 3417022463, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417022464, 3417030655, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417030656, 3417034751, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417038848, 3417042943, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417042944, 3417047039, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417047040, 3417055231, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417055232, 3417112575, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417112576, 3417128959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417128960, 3417135103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417135104, 3417137151, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417137152, 3417145343, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417145344, 3417178111, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417178112, 3417179135, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417180160, 3417182207, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417182208, 3417184255, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417186304, 3417194495, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417194496, 3417198591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417198592, 3417200639, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417200640, 3417202687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417202688, 3417210879, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417210880, 3417227263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417227264, 3417243647, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417243648, 3417244671, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417245696, 3417247743, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417247744, 3417251839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417251840, 3417260031, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417260032, 3417264127, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417264128, 3417268223, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417268224, 3417272319, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417272320, 3417274367, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417276416, 3417284607, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417284608, 3417288703, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417292800, 3417309183, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417309184, 3417323519, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417323520, 3417324543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417324544, 3417331711, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417331712, 3417331967, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417331968, 3417333759, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417333760, 3417337855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417341952, 3417374719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417374720, 3417440255, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417440256, 3417706095, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417706096, 3417706099, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417706100, 3417716655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417716656, 3417716659, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417716660, 3417833471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417833472, 3417849855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417849856, 3417853951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417853952, 3417858047, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417858048, 3417866239, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417866240, 3417915391, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417915392, 3417939967, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417939968, 3417948159, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417948160, 3417964543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3417964544, 3418030079, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418030080, 3418062847, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418062848, 3418065023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418065024, 3418065039, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418065040, 3418071039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418071040, 3418079231, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418079232, 3418095615, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418095616, 3418111999, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418112000, 3418128383, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418128384, 3418136575, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418136576, 3418144767, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418144768, 3418148863, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418152960, 3418155007, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418155008, 3418157055, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418157056, 3418161663, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418161664, 3418162431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418162432, 3418162687, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418162688, 3418163199, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418163200, 3418165247, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418165248, 3418167295, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418169344, 3418177535, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418177536, 3418181631, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418181632, 3418183679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418185728, 3418189823, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418193920, 3418202111, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418202112, 3418206207, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418206208, 3418208255, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418208256, 3418210303, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418210304, 3418218495, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418218496, 3418230783, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418230784, 3418232831, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418234880, 3418235903, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418236928, 3418241023, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418241024, 3418243071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418243072, 3418251263, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418251264, 3418255359, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418259456, 3418267647, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418267648, 3418271743, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418271744, 3418273791, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418273792, 3418275839, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418275840, 3418279935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418279936, 3418281983, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418284032, 3418285055, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418285056, 3418285311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418285312, 3418288127, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418288128, 3418290175, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418290176, 3418290431, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418290432, 3418290687, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418290688, 3418291199, N'TH', N'Thailand') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418291200, 3418291711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418291712, 3418292735, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418292736, 3418292991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418294272, 3418296319, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418296320, 3418300415, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418300416, 3418300927, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418302464, 3418304511, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418304512, 3418306559, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418306560, 3418308607, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418308608, 3418324991, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418324992, 3418326015, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418327040, 3418329087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418329088, 3418331135, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418333184, 3418345471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418345472, 3418353663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418357760, 3418365951, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418365952, 3418374143, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418374144, 3418382335, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418382336, 3418392319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418392320, 3418392335, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418392336, 3418392351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418392352, 3418392383, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418392384, 3418392575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418392576, 3418392831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418392832, 3418393087, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393088, 3418393103, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393104, 3418393119, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393120, 3418393143, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393144, 3418393159, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393160, 3418393663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393664, 3418393679, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393680, 3418393711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393712, 3418393727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393728, 3418393887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393888, 3418393911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393912, 3418393935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393936, 3418393951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393952, 3418393983, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418393984, 3418394015, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394016, 3418394047, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394048, 3418394063, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394064, 3418394079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394080, 3418394095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394096, 3418394111, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394112, 3418394367, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394368, 3418394623, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394624, 3418394879, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418394880, 3418395679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418395680, 3418395695, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418395696, 3418395711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418395712, 3418395743, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418395744, 3418395839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418395840, 3418395903, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418395904, 3418396543, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396544, 3418396671, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396672, 3418396703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396704, 3418396711, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396712, 3418396719, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396720, 3418396735, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396736, 3418396783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396784, 3418396799, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396800, 3418396816, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396817, 3418396831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396832, 3418396847, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418396848, 3418397839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418397840, 3418397911, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418397912, 3418397951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418397952, 3418398015, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418398016, 3418398079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418398080, 3418398207, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418398208, 3418399231, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418399232, 3418399359, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418399360, 3418399439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418399440, 3418399471, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418399472, 3418399487, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418399488, 3418401535, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401536, 3418401599, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401600, 3418401615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401616, 3418401663, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401664, 3418401695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401696, 3418401711, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401712, 3418401727, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401728, 3418401791, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401792, 3418401807, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401808, 3418401855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401856, 3418401903, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401904, 3418401919, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401920, 3418401935, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401936, 3418401951, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418401952, 3418402015, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418402016, 3418402031, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418402032, 3418403071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403072, 3418403103, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403104, 3418403135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403136, 3418403151, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403152, 3418403327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403328, 3418403583, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403584, 3418403591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403592, 3418403599, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403600, 3418403615, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403616, 3418403623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403624, 3418403679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403680, 3418403711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403712, 3418403775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403776, 3418403783, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403784, 3418403839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403840, 3418403935, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403936, 3418403991, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418403992, 3418403999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404000, 3418404063, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404064, 3418404159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404160, 3418404175, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404176, 3418404191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404192, 3418404223, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404224, 3418404479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404480, 3418404607, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418404608, 3418405631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418405632, 3418405663, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418405664, 3418405855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418405856, 3418405887, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418405888, 3418406143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418406144, 3418406399, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418406400, 3418406783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418406784, 3418406799, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418406800, 3418406911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418406912, 3418423295, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418423296, 3418435711, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418435712, 3418435743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418435744, 3418453064, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418453065, 3418453065, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418453066, 3418453247, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418453248, 3418453375, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418453376, 3418456063, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418456064, 3418472447, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418472448, 3418480639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418480640, 3418488831, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418488832, 3418505215, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418505216, 3418506831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418506832, 3418506879, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418506880, 3418506895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418506896, 3418506911, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418506912, 3418507043, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418507044, 3418507047, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418507048, 3418507071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418507072, 3418507075, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418507076, 3418507903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418507904, 3418507919, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418507920, 3418508543, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418508544, 3418508591, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418508592, 3418508639, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418508640, 3418508671, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418508672, 3418508927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418508928, 3418509024, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418509025, 3418509055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418509056, 3418509119, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418509120, 3418510591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418510592, 3418510719, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418510720, 3418510943, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418510944, 3418510959, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418510960, 3418510991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418510992, 3418511007, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511008, 3418511087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511088, 3418511103, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511104, 3418511107, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511108, 3418511115, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511116, 3418511119, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511120, 3418511175, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511176, 3418511183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511184, 3418511191, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511192, 3418511199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511200, 3418511295, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511296, 3418511383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511384, 3418511399, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511400, 3418511407, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511408, 3418511415, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511416, 3418511423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511424, 3418511439, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418511440, 3418512191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418512192, 3418512239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418512240, 3418512991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418512992, 3418513015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513016, 3418513023, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513024, 3418513031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513032, 3418513039, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513040, 3418513047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513048, 3418513071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513072, 3418513103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513104, 3418513215, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513216, 3418513231, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513232, 3418513407, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418513408, 3418517503, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418517504, 3418519551, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418519552, 3418521599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418521600, 3418524574, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418524575, 3418524606, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418524607, 3418524638, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418524639, 3418578943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418578944, 3418583039, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418583040, 3418585087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418587136, 3418619903, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418619904, 3418621951, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418621952, 3418623999, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418624000, 3418626047, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418626048, 3418628095, N'KI', N'Kiribati') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418628096, 3418632191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418636288, 3418644991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418644992, 3418645247, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418645248, 3418645503, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418645504, 3418646015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418646016, 3418646271, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418646272, 3418646527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418646528, 3418646783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418646784, 3418647039, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418647040, 3418648575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418648576, 3418648591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418648592, 3418648655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418648656, 3418648783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418648784, 3418648799, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418648800, 3418648815, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418648816, 3418648831, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418648832, 3418649439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418649440, 3418649503, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418649504, 3418649519, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418649520, 3418649599, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418649600, 3418649887, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418649888, 3418649951, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418649952, 3418650719, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418650720, 3418650799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418650800, 3418650879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418650880, 3418651007, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418651008, 3418651903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418651904, 3418652159, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652160, 3418652163, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652164, 3418652167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652168, 3418652171, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652172, 3418652183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652184, 3418652207, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652208, 3418652415, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652416, 3418652671, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418652672, 3418750975, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418750976, 3418816511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418816512, 3418947583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418947584, 3418955775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418955776, 3418959871, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418963968, 3418988543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3418996736, 3419013119, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419013120, 3419062271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419062272, 3419070463, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419078656, 3419209727, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419209728, 3419275263, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419275264, 3419340799, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419340800, 3419344895, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419344896, 3419348991, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419348992, 3419353087, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419357184, 3419411455, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419411968, 3419412223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419412224, 3419412479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419412480, 3419414527, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419414528, 3419422719, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419422720, 3419439103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419439104, 3419456543, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456544, 3419456575, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456576, 3419456639, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456640, 3419456671, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456672, 3419456703, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456704, 3419456735, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456736, 3419456831, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456832, 3419456895, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456896, 3419456911, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456912, 3419456927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456928, 3419456943, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456944, 3419456959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419456960, 3419457023, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419457024, 3419457119, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419457120, 3419457215, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419457216, 3419471871, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419471872, 3419504639, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419504640, 3419508735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419508736, 3419512831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419512832, 3419516927, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419521024, 3419529215, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419529216, 3419537407, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419537408, 3419541503, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419541504, 3419553791, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419553792, 3419570175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419570176, 3419602943, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419602944, 3419611135, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419611136, 3419619327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419619328, 3419627519, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419635712, 3419643903, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419643904, 3419668479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419668480, 3419672575, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419672576, 3419674623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419676672, 3419684863, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419684864, 3419688959, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419688960, 3419693055, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419693056, 3419701247, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419701248, 3419709439, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419709440, 3419717631, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419717632, 3419734015, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419734016, 3419774975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419774976, 3419783167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419783168, 3419791359, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419791360, 3419795455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419799552, 3419873279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419873280, 3419877375, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419881472, 3419897855, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419897856, 3419906047, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419906048, 3419914239, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419914240, 3419922431, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419922432, 3419924479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419924480, 3419926527, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419926528, 3419930623, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419930624, 3419971583, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419971584, 3419979775, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419979776, 3419996159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3419996160, 3420020735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420020736, 3420028927, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420045312, 3420127231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420127232, 3420323839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420323840, 3420332031, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420332032, 3420334591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334592, 3420334623, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334624, 3420334639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334640, 3420334643, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334644, 3420334647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334648, 3420334655, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334656, 3420334719, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334720, 3420334847, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420334848, 3420335271, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335272, 3420335279, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335280, 3420335615, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335616, 3420335623, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335624, 3420335631, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335632, 3420335640, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335641, 3420335647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335648, 3420335871, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420335872, 3420336127, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336128, 3420336183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336184, 3420336199, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336200, 3420336207, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336208, 3420336223, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336224, 3420336255, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336256, 3420336287, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336288, 3420336319, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336320, 3420336351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336352, 3420336367, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336368, 3420336895, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420336896, 3420337151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337152, 3420337599, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337600, 3420337631, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337632, 3420337643, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337644, 3420337647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337648, 3420337663, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337664, 3420337727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337728, 3420337743, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337744, 3420337835, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337836, 3420337839, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420337840, 3420340019, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420340020, 3420340023, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420340024, 3420340143, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420340144, 3420340159, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420340160, 3420365823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420365824, 3420365855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420365856, 3420365887, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420365888, 3420366047, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366048, 3420366055, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366056, 3420366059, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366060, 3420366063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366064, 3420366079, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366080, 3420366335, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366336, 3420366447, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366448, 3420366463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366464, 3420366471, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366472, 3420366479, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366480, 3420366495, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366496, 3420366511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366512, 3420366527, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366528, 3420366591, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366592, 3420366639, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366640, 3420366647, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366648, 3420366719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366720, 3420366751, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366752, 3420366847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366848, 3420366871, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366872, 3420366879, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366880, 3420366911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366912, 3420366959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366960, 3420366975, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420366976, 3420367039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367040, 3420367055, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367056, 3420367103, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367104, 3420367359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367360, 3420367383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367384, 3420367423, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367424, 3420367487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367488, 3420367495, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367496, 3420367503, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367504, 3420367631, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367632, 3420367647, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367648, 3420367663, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367664, 3420367679, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367680, 3420367743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367744, 3420367775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367776, 3420367791, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367792, 3420367807, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367808, 3420367871, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420367872, 3420368015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368016, 3420368031, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368032, 3420368063, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368064, 3420368067, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368068, 3420368639, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368640, 3420368895, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368896, 3420368935, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368936, 3420368943, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420368944, 3420369007, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369008, 3420369023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369024, 3420369055, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369056, 3420369087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369088, 3420369139, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369140, 3420369223, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369224, 3420369239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369240, 3420369255, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369256, 3420369263, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369264, 3420369279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369280, 3420369343, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369344, 3420369407, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420369408, 3420370431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370432, 3420370527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370528, 3420370543, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370544, 3420370559, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370560, 3420370575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370576, 3420370591, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370592, 3420370623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370624, 3420370943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420370944, 3420371199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371200, 3420371455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371456, 3420371775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371776, 3420371807, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371808, 3420371823, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371824, 3420371839, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371840, 3420371879, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371880, 3420371887, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371888, 3420371895, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371896, 3420371903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371904, 3420371967, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420371968, 3420372223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420372224, 3420372735, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420372736, 3420372991, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420372992, 3420377087, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420377088, 3420389375, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420389376, 3420393471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420393472, 3420395519, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420395520, 3420397567, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420397568, 3420401663, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420401664, 3420413951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420413952, 3420422143, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420422144, 3420430335, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420430336, 3420434431, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420438528, 3420454911, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3420454912, 3422552063, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3422552064, 3422848511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3422848512, 3422848767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3422848768, 3422955519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3422955520, 3422956799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3422956800, 3423092735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423092736, 3423093759, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423093760, 3423094783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423094784, 3423095807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423095808, 3423143935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423143936, 3423145983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423145984, 3423154175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423154176, 3423156223, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423156224, 3423182847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423182848, 3423184895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423184896, 3423207663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423207664, 3423207671, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423207672, 3423208193, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423208194, 3423208383, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423208384, 3423221759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423221760, 3423222783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423222784, 3423236095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423236096, 3423238143, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423238144, 3423258623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423258624, 3423260671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423260672, 3423268863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423268864, 3423269887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423269888, 3423285247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423285248, 3423287295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423287296, 3423303679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423303680, 3423304703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423304704, 3423311871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423311872, 3423313919, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423313920, 3423338495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423371264, 3423375359, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423404032, 3423407871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423407872, 3423408127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423408128, 3423412223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423412224, 3423414271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423414272, 3423462655, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423462656, 3423462671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423462672, 3423473663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423473664, 3423474687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423474688, 3423493631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423493632, 3423493887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423493888, 3423496191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423496192, 3423497215, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423497216, 3423497247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423497248, 3423497327, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423497328, 3423497343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423497344, 3423497471, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423497472, 3423533055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423533056, 3423535103, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423535104, 3423543295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423543296, 3423545343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423545344, 3423571967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423571968, 3423574015, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423574016, 3423582207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423582208, 3423584351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584352, 3423584359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584360, 3423584399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584400, 3423584407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584408, 3423584423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584424, 3423584431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584432, 3423584447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584448, 3423584455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584456, 3423584463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584464, 3423584471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584472, 3423584623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584624, 3423584639, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584640, 3423584751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584752, 3423584767, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423584768, 3423585087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423585088, 3423585151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423585152, 3423586303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423586304, 3423602687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423602688, 3423603711, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423603712, 3423626239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423626240, 3423627263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423627264, 3423632383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423632384, 3423633407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423633408, 3423637503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423637504, 3423639551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423639552, 3423651839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423651840, 3423653887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423653888, 3423709183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423709184, 3423709439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423709440, 3423797247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423797248, 3423862783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3423862784, 3424378879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3424378880, 3424379135, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3424379136, 3424493823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3424493824, 3424494079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3424494080, 3424494335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3424494592, 3425173503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425173504, 3425304575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425304576, 3425697791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425697792, 3425699839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425699840, 3425828863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425828864, 3425867279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425867280, 3425867295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425867296, 3425894399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425894400, 3425910783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3425959936, 3426013183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3426013184, 3426013439, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3426013440, 3426387967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3426387968, 3426388991, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3426388992, 3427127295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427127296, 3427127551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427127552, 3427127807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427128064, 3427128831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427129344, 3427618303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427618304, 3427618559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427618560, 3427729407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427729408, 3427729663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427729664, 3427730431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427730432, 3427730687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427730688, 3427730943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427730944, 3427731455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427731456, 3427731711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427731712, 3427731967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427731968, 3427732223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427732224, 3427732479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427732480, 3427732735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427732736, 3427735039, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427735040, 3427735295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427735296, 3427736063, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427736064, 3427736319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427736320, 3427736575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427736576, 3427741951, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427741952, 3427742463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427742464, 3427742719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427742720, 3427742975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427742976, 3427743487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427743488, 3427743743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427743744, 3427743999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427744000, 3427744255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427744256, 3427745279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427745280, 3427745791, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427745792, 3427746047, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427746048, 3427746303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427746304, 3427746559, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427746560, 3427746815, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427746816, 3427747071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427747072, 3427747327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427747328, 3427747583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427747584, 3427747839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427747840, 3427748095, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427748096, 3427748351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427748352, 3427748607, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427748608, 3427749631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427749632, 3427749887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427749888, 3427750655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427750656, 3427750911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427750912, 3427751423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427751424, 3427751519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427751520, 3427752447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427752448, 3427752703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427752704, 3427752959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427752960, 3427753215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427753216, 3427753471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427753472, 3427753727, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427753728, 3427753983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427753984, 3427754239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427754240, 3427754495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427754496, 3427754751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427754752, 3427755007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427755008, 3427755263, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427755264, 3427755519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427755520, 3427755775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427755776, 3427756287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427756288, 3427756543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427756544, 3427756799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427756800, 3427757055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427757056, 3427757311, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427757312, 3427757567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427757568, 3427757823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427757824, 3427758079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427758080, 3427758591, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427758592, 3427758847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427758848, 3427759103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427759104, 3427759359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427759360, 3427759871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427759872, 3427760127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427760128, 3427760895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427760896, 3427761663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427761664, 3427761919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427761920, 3427762175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427762176, 3427762431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427762432, 3427762687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427762688, 3427763455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427763456, 3427763711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427763712, 3427763967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427763968, 3427764223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427764224, 3427764479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427764480, 3427765503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427765504, 3427765759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427765760, 3427766271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427766272, 3427766783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427766784, 3427767039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427767040, 3427767807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427767808, 3427769599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427769600, 3427770111, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427770112, 3427770367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427770368, 3427770623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427770624, 3427771391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427771392, 3427771647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427771648, 3427771903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427771904, 3427772415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427772416, 3427772671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427772672, 3427772927, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427772928, 3427773183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427773184, 3427773439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427773440, 3427773695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427773696, 3427773951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427773952, 3427774719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427774720, 3427775231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427775232, 3427775999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427776000, 3427776511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427776512, 3427776767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427776768, 3427777023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427777024, 3427777279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427777280, 3427777535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427777536, 3427777791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427777792, 3427778047, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427778048, 3427778303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427778304, 3427778559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427778560, 3427779071, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427779072, 3427779327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427779328, 3427780095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427780096, 3427780351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427780352, 3427781375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427781376, 3427781631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427781632, 3427781887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427781888, 3427782399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427782400, 3427782655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427782656, 3427783423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427783424, 3427783679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427783680, 3427783935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427783936, 3427784703, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427784704, 3427785215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427785216, 3427785471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427785472, 3427785727, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427785728, 3427786751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427786752, 3427787263, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427787264, 3427787775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427787776, 3427788031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427788032, 3427788287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427788288, 3427788799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427788800, 3427789567, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427789568, 3427790079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427790080, 3427790847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427790848, 3427791103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427791104, 3427791615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427791616, 3427791871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427791872, 3427792383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427792384, 3427792639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427792640, 3427793407, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427793408, 3427793919, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427793920, 3427794175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427794176, 3427794943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427794944, 3427831551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427831552, 3427831807, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427831808, 3427860479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3427860480, 3428025343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428025344, 3428025855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428025856, 3428057087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428057088, 3428286719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428286720, 3428286975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428286976, 3428296959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428296960, 3428297215, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428297472, 3428299519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428299520, 3428299775, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428299776, 3428306175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428306176, 3428306431, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428306432, 3428434943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428434944, 3428435199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428435200, 3428437503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428437504, 3428437759, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428437760, 3428496639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428496640, 3428497151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428497152, 3428581375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428581376, 3428646911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428646912, 3428679679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428712448, 3428743167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428743168, 3428744191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428744192, 3428751103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428751104, 3428751231, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428751232, 3428752383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428752384, 3428753407, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428753408, 3428756479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428756480, 3428756487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428756488, 3428818727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428818728, 3428818735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428818736, 3428894039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428894040, 3428894047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428894048, 3428958207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428958208, 3428962303, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3428962304, 3429171199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429171200, 3429236735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429236736, 3429396223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429396224, 3429396479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429396480, 3429408511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429408512, 3429408767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429408768, 3429411583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429411584, 3429411839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429411840, 3429892095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429892096, 3429957631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3429957632, 3430291295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430291296, 3430291327, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430291328, 3430313967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430313968, 3430313983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430313984, 3430319135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430319136, 3430319143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430319144, 3430328831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430328832, 3430329087, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430329088, 3430468607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430468608, 3430468863, N'AQ', N'Antarctica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430468864, 3430468871, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430468872, 3430701055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430701056, 3430702079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430702080, 3430705151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430705152, 3430706175, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430706176, 3430747903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430747904, 3430748159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430748160, 3430749951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430749952, 3430750207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430750208, 3430767615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430767616, 3430768383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430768384, 3430768895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430768896, 3430769151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430769152, 3430769407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430769408, 3430769663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430769664, 3430770943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430770944, 3430771199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430771200, 3430771711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430771712, 3430772223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430772224, 3430773247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430773248, 3430773503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430773504, 3430774271, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430774272, 3430774527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430774528, 3430777343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430777344, 3430777599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430777600, 3430777855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430777856, 3430778111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430778112, 3430778623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430778624, 3430778879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430778880, 3430779903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430779904, 3430780159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430780160, 3430780671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430780672, 3430780927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430780928, 3430782463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430782464, 3430782719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430782720, 3430793983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430793984, 3430794239, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430794240, 3430795007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430795008, 3430795263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430795264, 3430797823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430797824, 3430798079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430798080, 3430805759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430805760, 3430806015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430806016, 3430807295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430807296, 3430807551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430807552, 3430809087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430809088, 3430809343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430809344, 3430812159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430812672, 3430813183, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430813184, 3430842367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430842368, 3430842879, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430842880, 3430845439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430845440, 3430845951, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3430845952, 3431114495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431114496, 3431114751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431114752, 3431596031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431596032, 3431613439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431613440, 3431613695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431613696, 3431638783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431638784, 3431639039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431639040, 3431661567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431661568, 3431745023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431745024, 3431745279, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431745280, 3431745791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431745792, 3431746047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431746048, 3431746559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431746560, 3431746815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431746816, 3431747071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431747072, 3431747327, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431747328, 3431748607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431748608, 3431749119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431749120, 3431752703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431752704, 3431753215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431753216, 3431753471, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431753472, 3431755007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431755008, 3431759615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431759616, 3431759871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3431759872, 3432009215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432009216, 3432009471, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432009472, 3432106239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432106240, 3432106495, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432106496, 3432113407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432113408, 3432113663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432113664, 3432133887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432133888, 3432134143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432134144, 3432253439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432253440, 3432253951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432253952, 3432265983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432265984, 3432267263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432267264, 3432280063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432280064, 3432280319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432280320, 3432324607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432324608, 3432324863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432324864, 3432329215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432329216, 3432330239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432330240, 3432361983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432361984, 3432366079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432366080, 3432476415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432476416, 3432476671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432476672, 3432493823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432493824, 3432495103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432495104, 3432517119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432517120, 3432517631, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432517632, 3432520703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432520704, 3432520959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432520960, 3432585215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432585216, 3432585727, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432586240, 3432660991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432660992, 3432662527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432662528, 3432662531, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432662532, 3432663039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3432663040, 3433581312, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3433581313, 3433581567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3433581568, 3433955327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3433955328, 3434020863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434020864, 3434096063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434096064, 3434096079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434096080, 3434097919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434097920, 3434097983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434097984, 3434108639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434108640, 3434108671, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434108672, 3434112239, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434112240, 3434112255, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434112256, 3434117631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434117632, 3434117695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434117696, 3434131199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434131200, 3434131455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434131456, 3434133551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434133552, 3434133567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434133568, 3434133759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434133760, 3434133791, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434133792, 3434134015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434134016, 3434134079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434134080, 3434423295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434423296, 3434423303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434423304, 3434427391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434427392, 3434428415, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434428416, 3434433279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434433280, 3434433535, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434433536, 3434553343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434553344, 3434553599, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434553600, 3434571775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434571776, 3434573823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434573824, 3434575359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434575360, 3434575615, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434575616, 3434583039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434583040, 3434584063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434584064, 3434807295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434807296, 3434831359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434831360, 3434831615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434831616, 3434872831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434872832, 3434907647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434907648, 3434909695, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434909696, 3434913791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434913792, 3434914047, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434914048, 3434914303, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434914304, 3434914559, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434914560, 3434914815, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434914816, 3434915327, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434915328, 3434915583, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434915584, 3434915839, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434915840, 3434916095, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434916096, 3434916351, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434916352, 3434916607, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434916608, 3434917119, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434917120, 3434917375, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434917376, 3434917887, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434917888, 3434921983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3434938368, 3435069439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3435069440, 3435134975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3435134976, 3435236479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3435236480, 3435236495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3435236496, 3435331583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3435397120, 3436249087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436249088, 3436282367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436282368, 3436282623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436282624, 3436289791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436289792, 3436290047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436290048, 3436314623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436314624, 3436476415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436476416, 3436478463, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436478464, 3436697087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436697088, 3436697343, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436697344, 3436838911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436838912, 3436969983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3436969984, 3437232383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437232384, 3437232639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437232640, 3437242879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437242880, 3437243135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437243136, 3437249279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437249280, 3437249535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437249536, 3437259775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437259776, 3437260031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437260032, 3437262079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437262080, 3437262335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437262336, 3437263615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437263616, 3437263871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437263872, 3437266431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437266432, 3437266687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437266688, 3437279487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437279488, 3437279743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437279744, 3437281279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437281280, 3437281535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437281536, 3437292799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437292800, 3437293055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437293056, 3437296639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437296640, 3437296895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437296896, 3437297663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437297664, 3437331711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437331712, 3437331967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437331968, 3437334015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437334016, 3437334271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437334272, 3437341695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437341696, 3437341951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437341952, 3437358847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437358848, 3437359103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437359104, 3437428735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437428736, 3437691391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437691392, 3437691647, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437691648, 3437691903, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437691904, 3437692415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437692416, 3437692671, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437692672, 3437693439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437693440, 3437693695, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437693696, 3437693951, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437693952, 3437694207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437694208, 3437695231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437695232, 3437695999, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437696000, 3437696767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437696768, 3437697023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437697024, 3437697279, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437697280, 3437702911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437702912, 3437703167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437703168, 3437703423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437703424, 3437703679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437703680, 3437703935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437703936, 3437704191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437704192, 3437704703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437704704, 3437706495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437706496, 3437706751, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437706752, 3437707263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437707264, 3437707519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437707520, 3437707775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437707776, 3437708031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437708032, 3437708287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437708288, 3437708799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437708800, 3437709311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437709312, 3437709823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437709824, 3437710079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437710080, 3437710335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437710336, 3437712639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437712640, 3437713663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437713664, 3437713919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437713920, 3437714431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437714432, 3437715199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437715200, 3437715455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437715456, 3437715711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437715712, 3437715967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437715968, 3437716991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437716992, 3437717247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437717248, 3437718527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437718528, 3437720063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437720064, 3437723135, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437723136, 3437725183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437725184, 3437725695, N'MN', N'Mongolia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437725696, 3437726207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437726208, 3437726463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437726464, 3437726975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437726976, 3437731583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437731584, 3437731615, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437731616, 3437734399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437734400, 3437734655, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437734656, 3437736447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437736448, 3437737471, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437737472, 3437748223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437748224, 3437748479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437748480, 3437748991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437748992, 3437749247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437749248, 3437749503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437749504, 3437749759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437749760, 3437750015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437750016, 3437750271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437750272, 3437750527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437750528, 3437751551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437751552, 3437751807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437751808, 3437752063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437752064, 3437752319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437752320, 3437752575, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437752576, 3437755135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437755136, 3437755647, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437755648, 3437755903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437755904, 3437756159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437756160, 3437756415, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437756416, 3437961215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437961216, 3437965311, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3437965312, 3438026751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438149632, 3438215167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438215168, 3438217983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438217984, 3438218239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438218240, 3438218751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438219264, 3438280703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438280704, 3438542847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438542848, 3438545471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438545472, 3438545479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438545480, 3438545583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438545584, 3438545591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438545592, 3438549079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438549080, 3438549087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438549088, 3438550071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438550072, 3438550079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438550080, 3438550447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438550448, 3438550463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438550464, 3438552271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438552272, 3438552287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438552288, 3438570031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438570032, 3438570039, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438570040, 3438608383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438608384, 3438813183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438813184, 3438814207, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438814208, 3438895103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438895104, 3438896895, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3438896896, 3439070975, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439070976, 3439071135, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439071136, 3439182847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439182848, 3439183359, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439183360, 3439183871, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439183872, 3439219967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439219968, 3439220079, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439220080, 3439220087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439220088, 3439220159, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439220160, 3439220175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439220176, 3439220191, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3439220192, 3448168831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448168832, 3448168839, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448168840, 3448169263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448169264, 3448169279, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448169280, 3448169375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448169376, 3448169407, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448169408, 3448172927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448172928, 3448173055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173056, 3448173183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173184, 3448173311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173312, 3448173439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173440, 3448173567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173568, 3448173695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173696, 3448173823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173824, 3448173919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173920, 3448173935, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448173936, 3448175359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448175360, 3448175615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448175616, 3448244991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448244992, 3448245247, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448245248, 3448252415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448252416, 3448252671, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448252672, 3448257791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448257792, 3448258047, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448258048, 3448263423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263424, 3448263431, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263432, 3448263439, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263440, 3448263447, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263448, 3448263471, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263472, 3448263487, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263488, 3448263551, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263552, 3448263655, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263656, 3448263663, N'MS', N'Montserrat') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263664, 3448263743, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263744, 3448263871, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263872, 3448263935, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448263936, 3448303103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448303104, 3448303871, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448303872, 3448338687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448338688, 3448339455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448339456, 3448397983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448397984, 3448397999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448398000, 3448398335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448398336, 3448399103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448399104, 3448399359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448399360, 3448399871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448399872, 3448446975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448446976, 3448447231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3448447232, 3449001245, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449001246, 3449001246, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449001247, 3449159679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449159680, 3449290751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449290752, 3449598207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449598208, 3449598463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449598464, 3449769727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449769728, 3449769983, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449769984, 3449823231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449823232, 3449824255, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449824256, 3449835519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449835520, 3449836543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449836544, 3449843199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449843200, 3449843711, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449843712, 3449874687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449874688, 3449874943, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449874944, 3449910719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449910720, 3449910783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449910784, 3449923583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449923584, 3449923839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449923840, 3449960127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449960128, 3449960159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449960160, 3449974783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449974784, 3449976831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449976832, 3449994239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449994240, 3449994495, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3449994496, 3450217215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450217216, 3450217471, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450217472, 3450272511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450272512, 3450272767, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450272768, 3450773503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450773504, 3450777599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450777600, 3450929151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450929152, 3450932479, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450932480, 3450932735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450932736, 3450936319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450936320, 3450936351, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450936352, 3450956031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450956032, 3450956039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450956040, 3450957055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957056, 3450957063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957064, 3450957079, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957080, 3450957087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957088, 3450957151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957152, 3450957167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957168, 3450957199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957200, 3450957223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957224, 3450957231, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957232, 3450957247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957248, 3450957271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957272, 3450957279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450957280, 3450958079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450958080, 3450958143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450958144, 3450994687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3450994688, 3451027455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451027456, 3451031807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451031808, 3451032319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451032320, 3451032831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451032832, 3451033087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451033088, 3451041791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451041792, 3451170303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451170304, 3451170559, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451170560, 3451187967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451187968, 3451188223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451188224, 3451207423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451207424, 3451207679, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451207680, 3451236351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451236352, 3451236607, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451236608, 3451371519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451371520, 3451371775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451371776, 3451715583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451715584, 3451781119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451781120, 3451783935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451783936, 3451784191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451784192, 3451786751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451786752, 3451787263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451787264, 3451788031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451788032, 3451788287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451788288, 3451798783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451798784, 3451799039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451799040, 3451800063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451800064, 3451800319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451800320, 3451807231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451807232, 3451807487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451807488, 3451808511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451808512, 3451808767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451808768, 3451810815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451810816, 3451811327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451811328, 3451821567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451821568, 3451821823, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451821824, 3451824127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451824128, 3451824383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451824384, 3451827455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451827456, 3451827711, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451827712, 3451828479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451828480, 3451828735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451828736, 3451828991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451828992, 3451829247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451829248, 3451835903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451835904, 3451836159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451836160, 3451836415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451836416, 3451836671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451836672, 3451836927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451836928, 3451837183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451837184, 3451837695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451837696, 3451837951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451837952, 3451840255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451840256, 3451840767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451840768, 3451912191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3451912192, 3452174335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452174336, 3452436479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452436480, 3452502015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452502016, 3452764159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452764160, 3452764631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452764632, 3452764647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452764648, 3452764655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452764656, 3452764663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452764664, 3452768399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452768400, 3452768431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452768432, 3452768751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452768752, 3452768767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452768768, 3452770591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452770592, 3452770607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452770608, 3452770783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452770784, 3452770799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452770800, 3452776895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452776896, 3452776959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452776960, 3452785399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452785400, 3452785407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452785408, 3452787519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452787520, 3452787583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452787584, 3452791039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452791040, 3452791055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452791056, 3452798951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452798952, 3452798959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452798960, 3452810239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452810240, 3452810751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452810752, 3452818527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452818528, 3452818535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452818536, 3452818599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452818600, 3452818615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452818616, 3452818639, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452818640, 3452818647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452818648, 3452824575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452824576, 3452824607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452824608, 3452914175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452914176, 3452914431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452914432, 3452960767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3452993536, 3453026303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453026304, 3453034495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453034496, 3453038591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453042688, 3453073417, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453073418, 3453073427, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453073428, 3453091839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453091840, 3453101055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453101056, 3453101311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453101312, 3453149183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453149184, 3453149439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453149440, 3453159423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453159424, 3453159935, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453159936, 3453206527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453206528, 3453207551, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453207552, 3453207807, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453207808, 3453208575, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453208576, 3453208831, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453208832, 3453209599, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453209600, 3453209855, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453209856, 3453210367, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453210368, 3453210623, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453210624, 3453213183, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453213184, 3453214719, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453214720, 3453215231, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453215232, 3453215999, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453216000, 3453217023, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453217024, 3453217791, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453217792, 3453218815, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453218816, 3453370583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453370584, 3453370607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453370608, 3453370703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453370704, 3453370719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453370720, 3453371191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371192, 3453371199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371200, 3453371215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371216, 3453371223, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371224, 3453371463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371464, 3453371471, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371472, 3453371639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371640, 3453371663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371664, 3453371671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371672, 3453371679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371680, 3453371767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371768, 3453371783, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371784, 3453371807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371808, 3453371815, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371816, 3453371831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371832, 3453371839, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371840, 3453371967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371968, 3453371975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371976, 3453371983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453371984, 3453372047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372048, 3453372063, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372064, 3453372183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372184, 3453372191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372192, 3453372199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372200, 3453372231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372232, 3453372247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372248, 3453372263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372264, 3453372271, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372272, 3453372287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372288, 3453372327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372328, 3453372415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372416, 3453372439, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372440, 3453372535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372536, 3453372543, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372544, 3453372551, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372552, 3453372711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372712, 3453372727, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372728, 3453372735, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372736, 3453372743, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372744, 3453372767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372768, 3453372775, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372776, 3453372783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372784, 3453372791, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372792, 3453372951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372952, 3453372967, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372968, 3453372975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372976, 3453372991, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453372992, 3453373007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373008, 3453373023, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373024, 3453373095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373096, 3453373127, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373128, 3453373135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373136, 3453373143, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373144, 3453373239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373240, 3453373271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453373272, 3453374519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374520, 3453374527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374528, 3453374551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374552, 3453374559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374560, 3453374567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374568, 3453374583, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374584, 3453374591, N'CY', N'Cyprus') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374592, 3453374639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374640, 3453374647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374648, 3453374791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374792, 3453374807, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374808, 3453374815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374816, 3453374823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374824, 3453374871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374872, 3453374879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374880, 3453374927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374928, 3453374935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374936, 3453374983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453374984, 3453374999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375000, 3453375023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375024, 3453375047, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375048, 3453375095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375096, 3453375135, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375136, 3453375143, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375144, 3453375167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375168, 3453375191, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375192, 3453375215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375216, 3453375239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375240, 3453375255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375256, 3453375263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375264, 3453375279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375280, 3453375319, N'TK', N'Tokelau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375320, 3453375343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375344, 3453375375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375376, 3453375383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375384, 3453375407, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375408, 3453375415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375416, 3453375447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375448, 3453375487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375488, 3453375551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375552, 3453375559, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375560, 3453375575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375576, 3453375583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375584, 3453375591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375592, 3453375599, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375600, 3453375639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375640, 3453375647, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375648, 3453375783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375784, 3453375791, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375792, 3453375807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375808, 3453375887, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453375888, 3453375999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376000, 3453376255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376256, 3453376535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376536, 3453376543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376544, 3453376719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376720, 3453376727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376728, 3453376743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376744, 3453376751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376752, 3453376759, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376760, 3453376783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376784, 3453376791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376792, 3453376823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376824, 3453376831, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376832, 3453376839, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376840, 3453376847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376848, 3453376887, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376888, 3453376919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376920, 3453376927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376928, 3453376951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376952, 3453376959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376960, 3453376975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376976, 3453376983, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453376984, 3453377031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377032, 3453377039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377040, 3453377159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377160, 3453377167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377168, 3453377183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377184, 3453377191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377192, 3453377319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377320, 3453377327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377328, 3453377607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377608, 3453377615, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377616, 3453377671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377672, 3453377679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377680, 3453377815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377816, 3453377823, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377824, 3453377887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377888, 3453377903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453377904, 3453377999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378000, 3453378007, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378008, 3453378015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378016, 3453378031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378032, 3453378047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378048, 3453378055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378056, 3453378143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378144, 3453378151, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378152, 3453378271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378272, 3453378279, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378280, 3453378503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378504, 3453378511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378512, 3453378519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378520, 3453378535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453378536, 3453403135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453403136, 3453405951, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453405952, 3453406207, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453406208, 3453406463, N'TC', N'Turks and Caicos Islands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453406464, 3453406975, N'VC', N'Saint Vincent and the Grenadines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453406976, 3453407231, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453407232, 3453407743, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453407744, 3453408255, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453408256, 3453409023, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453409024, 3453409535, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453409536, 3453411327, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453411328, 3453415423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453419520, 3453607935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453607936, 3453616127, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453616128, 3453679103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453679104, 3453681407, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3453681408, 3454436351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454436352, 3454436607, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454436608, 3454497791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454497792, 3454498815, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454498816, 3454599167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454599168, 3454604799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454604800, 3454607359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454607360, 3454636799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454636800, 3454637055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454637056, 3454664703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454664704, 3454672895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454672896, 3454681087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454681088, 3454698823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454698824, 3454698839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454698840, 3454703135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454703136, 3454703143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454703144, 3454703255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454703256, 3454703263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454703264, 3454703319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454703320, 3454703327, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454703328, 3454705151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454705152, 3454705215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454705216, 3454708927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454708928, 3454708991, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454708992, 3454709495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454709496, 3454709503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454709504, 3454710551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454710552, 3454710559, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454710560, 3454710671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454710672, 3454710679, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454710680, 3454717551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454717552, 3454717559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454717560, 3454718767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454718768, 3454718775, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454718776, 3454718783, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454718784, 3454718959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454718960, 3454718967, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454718968, 3454725759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454725760, 3454725767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454725768, 3454727799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454727800, 3454727807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454727808, 3454730239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454730240, 3454732287, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454732288, 3454795775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454795776, 3454808831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454808832, 3454809087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454809088, 3454814975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454814976, 3454815231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454815232, 3454815743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454816256, 3454885887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454885888, 3454889983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454894080, 3454914559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454914560, 3454926847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3454926848, 3455096831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455096832, 3455097855, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455097856, 3455109119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455109120, 3455111167, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455111168, 3455115263, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455115264, 3455126527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455126528, 3455126783, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455126784, 3455132159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455132160, 3455133695, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455133696, 3455242407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455242408, 3455242415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455242416, 3455244847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455244848, 3455244855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455244856, 3455244863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455244864, 3455244895, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455244896, 3455320063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455320064, 3455322111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455322112, 3455328255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455328256, 3455329279, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455329280, 3455330815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455330816, 3455331327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455331328, 3455333887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455333888, 3455334399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455334400, 3455359231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455359232, 3455359487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455359488, 3455360671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455360672, 3455360687, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455360688, 3455418367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455418368, 3455418879, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455418880, 3455421439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455421440, 3455421951, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455421952, 3455551999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455552000, 3455552255, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455552256, 3455566079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455566080, 3455566335, N'EC', N'Ecuador') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455566336, 3455582207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455582208, 3455583743, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455583744, 3455584255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455584256, 3455584767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455584768, 3455588351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455588352, 3455588863, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455588864, 3455589119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455589120, 3455589375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455589376, 3455589631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455589632, 3455591679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455591680, 3455591935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455591936, 3455592191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455592192, 3455592447, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455592448, 3455592703, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455592704, 3455594239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455594240, 3455594495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455594496, 3455594751, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455594752, 3455595007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455595008, 3455595519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455595520, 3455595775, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455595776, 3455596031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455596032, 3455596543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455596544, 3455596799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455596800, 3455597311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455597312, 3455597567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455597568, 3455598847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455598848, 3455599103, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455599104, 3455599359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455599360, 3455599615, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455599616, 3455600127, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455600128, 3455600639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455600640, 3455600895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455600896, 3455601151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455601152, 3455601407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455601408, 3455601919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455601920, 3455602175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455602176, 3455602687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455602688, 3455615487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455615488, 3455616255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455616256, 3455616511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455616512, 3455616767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455616768, 3455617279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455617280, 3455619071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455619072, 3455619263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455619264, 3455619327, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455619328, 3455619839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455619840, 3455620095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455620096, 3455620287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455620288, 3455620351, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455620352, 3455621631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455621632, 3455622143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455622144, 3455624191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455624192, 3455624447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455624448, 3455627519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455627520, 3455628287, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455628288, 3455628543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455628544, 3455628799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455628800, 3455630847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455630848, 3455631103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455631104, 3455631359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455631360, 3455632639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455632640, 3455632895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455632896, 3455633407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455633408, 3455634431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455634432, 3455635455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455635456, 3455635711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455635712, 3455635967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455635968, 3455636223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455636224, 3455636479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455636480, 3455637759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455637760, 3455638271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455638272, 3455638527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455638528, 3455639551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455639552, 3455639807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455639808, 3455640063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455640064, 3455640319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455640320, 3455640575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455640576, 3455640831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455640832, 3455641087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455641088, 3455641343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455641344, 3455641599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455641600, 3455642879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455642880, 3455643135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455643136, 3455644159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455644160, 3455644415, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455644416, 3455644927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455644928, 3455645439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455645440, 3455645695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455645696, 3455645951, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455645952, 3455646719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455646720, 3455646975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455646976, 3455647231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455647232, 3455647487, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455647488, 3455647743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455647744, 3455713279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455713280, 3455844351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455844352, 3455852031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455852032, 3455852543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455852544, 3455909631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3455909632, 3456303103, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3456303104, 3456311295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3456311296, 3456892927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3456892928, 3456958463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3456958464, 3457551871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457551872, 3457552127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457552128, 3457553151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457553152, 3457553663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457553664, 3457554175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457554176, 3457554431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457554432, 3457555711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457555712, 3457555967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457555968, 3457564927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457564928, 3457565183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457565184, 3457575167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457575168, 3457575423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457575424, 3457577727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457577728, 3457578239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457578240, 3457580543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457580544, 3457580799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457580800, 3457582591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457582592, 3457582847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457582848, 3457592319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457592320, 3457592575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457592576, 3457595391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457595392, 3457595903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457595904, 3457596671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457596672, 3457597695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457597696, 3457598207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457598208, 3457598463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457598464, 3457600511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457600512, 3457600767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457600768, 3457683455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457683456, 3457684479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457684480, 3457723535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457723536, 3457723551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457723552, 3457859839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457859840, 3457860095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457860096, 3457861375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457861376, 3457861631, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457861632, 3457862847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457862848, 3457862911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457862912, 3457936895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457936896, 3457937407, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457937408, 3457938431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457938432, 3457938943, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3457938944, 3458561023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458561024, 3458561535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458561536, 3458765631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458765632, 3458765695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458765696, 3458766015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458766016, 3458766079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458766080, 3458811903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458813952, 3458818047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458818048, 3458820095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458822144, 3458823701, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823702, 3458823717, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823718, 3458823725, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823726, 3458823733, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823734, 3458823765, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823766, 3458823781, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823782, 3458823813, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823814, 3458823846, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823847, 3458823862, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823863, 3458823870, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823871, 3458823934, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823935, 3458823943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823944, 3458823967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823968, 3458823991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458823992, 3458824015, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458824016, 3458824959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458824960, 3458825215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3458825216, 3459055615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459055616, 3459121151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459121152, 3459186687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459186688, 3459252223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459252224, 3459256831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459256832, 3459257087, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459257088, 3459257343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459257344, 3459258367, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459258368, 3459259391, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459259392, 3459264767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459264768, 3459265023, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459265024, 3459266559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459266560, 3459266623, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459266624, 3459266655, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459266656, 3459267071, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459267072, 3459267327, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459267328, 3459267583, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459267584, 3459267839, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459267840, 3459268095, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459268096, 3459268607, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459268608, 3459272447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459272448, 3459272703, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459272704, 3459273727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459273728, 3459274751, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459274752, 3459275775, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459275776, 3459276799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459276800, 3459277823, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459277824, 3459278847, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459278848, 3459285247, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459285248, 3459285311, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459285312, 3459285375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459285376, 3459286271, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459286272, 3459287807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459287808, 3459288063, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459288064, 3459290111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459290112, 3459290623, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459290624, 3459295231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459295232, 3459296255, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459296256, 3459312639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459312640, 3459312687, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459312688, 3459312767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459312768, 3459312895, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459312896, 3459325951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459325952, 3459326207, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459326208, 3459326463, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459326464, 3459327487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459327488, 3459327999, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459328000, 3459329023, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459329024, 3459330047, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459330048, 3459330559, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459330560, 3459331071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459331072, 3459331583, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459331584, 3459332607, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459332608, 3459333119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459333120, 3459333631, N'PW', N'Palau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459333632, 3459333887, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459333888, 3459334399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459334400, 3459334655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459334656, 3459335423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459335424, 3459335679, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459335680, 3459335935, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459335936, 3459336191, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459336192, 3459336447, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459336448, 3459336703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459336704, 3459336959, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459336960, 3459337215, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459337216, 3459337471, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459337472, 3459337727, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459337728, 3459337983, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459337984, 3459338239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459338240, 3459338495, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459338496, 3459339263, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459339264, 3459339519, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459339520, 3459339775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459339776, 3459340031, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459340032, 3459340287, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459340288, 3459340543, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459340544, 3459340799, N'FM', N'Micronesia, Federated States of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459340800, 3459341055, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459341056, 3459341311, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459341312, 3459341567, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459341568, 3459341823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459341824, 3459342079, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459342080, 3459342335, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459342336, 3459342591, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459342592, 3459342847, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459342848, 3459343103, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459343104, 3459343359, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459343360, 3459343439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459343440, 3459343455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459343456, 3459343591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459343592, 3459343599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459343600, 3459343615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459343616, 3459344127, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459344128, 3459345663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459345664, 3459346175, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459346176, 3459346431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459346432, 3459346687, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459346688, 3459346943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459346944, 3459348223, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459348224, 3459348479, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459348480, 3459348735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459348736, 3459348991, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459348992, 3459349503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459349504, 3459350527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459350528, 3459352575, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459352576, 3459352831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459352832, 3459353087, N'FM', N'Micronesia, Federated States of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459353088, 3459353343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459353344, 3459354623, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459354624, 3459357183, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459357184, 3459357439, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459357440, 3459357695, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459357696, 3459357951, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459357952, 3459358207, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459358208, 3459358719, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459358720, 3459358975, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459358976, 3459359999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459360000, 3459360511, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459360512, 3459362815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459362816, 3459364863, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459364864, 3459366911, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459366912, 3459367167, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459367168, 3459367423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459367424, 3459367455, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459367456, 3459367535, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459367536, 3459367551, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459367552, 3459367647, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459367648, 3459367935, N'VE', N'Venezuela') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459367936, 3459367999, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459368000, 3459368063, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459368064, 3459368095, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459368096, 3459368703, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459368704, 3459368959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459368960, 3459371007, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459371008, 3459373055, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459373056, 3459373311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459373312, 3459375103, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459375104, 3459376127, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459376128, 3459448831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459448832, 3459458047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459461120, 3459502079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459506176, 3459510271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459512320, 3459514367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459514368, 3459590143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459592192, 3459596287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459596288, 3459614719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459616768, 3459620863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459620864, 3459622911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459624960, 3459629055, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459629056, 3459731455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459731456, 3459735551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459735552, 3459745535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459745536, 3459745791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3459745792, 3460104703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460104704, 3460105215, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460105216, 3460111871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460111872, 3460111887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460111888, 3460113039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460113040, 3460113047, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460113048, 3460114431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460114432, 3460116479, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460116480, 3460161535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460161536, 3460163583, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460163584, 3460374527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460374528, 3460375551, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460375552, 3460408359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460408360, 3460408367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460408368, 3460408847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460408848, 3460408855, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460408856, 3460409199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460409200, 3460409215, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460409216, 3460409951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460409952, 3460409967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460409968, 3460410455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460410456, 3460410463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460410464, 3460412671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460412672, 3460412687, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460412688, 3460413015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460413016, 3460413023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460413024, 3460413535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460413536, 3460413543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460413544, 3460453631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460453632, 3460453887, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460453888, 3460507647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460507648, 3460507903, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460507904, 3460891135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460891136, 3460891199, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460891200, 3460891919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460891920, 3460891935, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460891936, 3460891967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460891968, 3460891999, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892000, 3460892031, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892032, 3460892095, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892096, 3460892127, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892128, 3460892159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892160, 3460892223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892224, 3460892271, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892272, 3460892287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892288, 3460892415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460892416, 3460893439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460893440, 3460893695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460893696, 3460894223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894224, 3460894239, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894240, 3460894335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894336, 3460894367, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894368, 3460894463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894464, 3460894719, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894720, 3460894735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894736, 3460894751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894752, 3460894783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894784, 3460894975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460894976, 3460895231, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460895232, 3460895487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460895488, 3460896255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460896256, 3460896511, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460896512, 3460896767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460896768, 3460897023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460897024, 3460897279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460897280, 3460897535, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460897536, 3460899327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460899328, 3460899583, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460899584, 3460900607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460900608, 3460900671, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460900672, 3460900735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460900736, 3460900799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460900800, 3460900831, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460900832, 3460901375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460901376, 3460901631, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460901632, 3460902143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460902144, 3460902271, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460902272, 3460903215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903216, 3460903231, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903232, 3460903239, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903240, 3460903263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903264, 3460903295, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903296, 3460903359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903360, 3460903423, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903424, 3460903807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903808, 3460903871, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903872, 3460903935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460903936, 3460904063, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904064, 3460904079, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904080, 3460904191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904192, 3460904223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904224, 3460904255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904256, 3460904319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904320, 3460904447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904448, 3460904479, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904480, 3460904591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904592, 3460904607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904608, 3460904639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904640, 3460904703, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904704, 3460904735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904736, 3460904751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460904752, 3460905255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905256, 3460905263, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905264, 3460905295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905296, 3460905311, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905312, 3460905407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905408, 3460905471, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905472, 3460905743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905744, 3460905759, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905760, 3460905791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905792, 3460905823, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460905824, 3460906047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460906048, 3460906079, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460906080, 3460906111, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460906112, 3460906143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460906144, 3460906495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460906496, 3460906559, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460906560, 3460907263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460907264, 3460907519, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460907520, 3460908287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460908288, 3460908543, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460908544, 3460908799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460908800, 3460910335, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460910336, 3460910591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460910592, 3460910847, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460910848, 3460911167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460911168, 3460911199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460911200, 3460912127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460912128, 3460912383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460912384, 3460912639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460912640, 3460912895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460912896, 3460913407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460913408, 3460913439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460913440, 3460913471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460913472, 3460913663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460913664, 3460913951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460913952, 3460913983, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460913984, 3460914047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460914048, 3460914111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460914112, 3460916223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460916224, 3460916479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460916480, 3460916735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460916736, 3460916991, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460916992, 3460917023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917024, 3460917135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917136, 3460917151, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917152, 3460917183, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917184, 3460917343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917344, 3460917359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917360, 3460917423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917424, 3460917439, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917440, 3460917759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460917760, 3460918015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918016, 3460918207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918208, 3460918239, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918240, 3460918271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918272, 3460918527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918528, 3460918687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918688, 3460918719, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918720, 3460918783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460918784, 3460919039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460919040, 3460919295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460919296, 3460919535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460919536, 3460919543, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460919544, 3460919551, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460919552, 3460920319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460920320, 3460920575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460920576, 3460920831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460920832, 3460921343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460921344, 3460921599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460921600, 3460921855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460921856, 3460923391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923392, 3460923647, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923648, 3460923679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923680, 3460923711, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923712, 3460923743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923744, 3460923775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923776, 3460923807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923808, 3460923839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923840, 3460923871, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460923872, 3460924159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460924160, 3460924175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460924176, 3460924223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460924224, 3460924287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460924288, 3460924415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460924416, 3460924607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460924608, 3460924671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460924672, 3460925183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460925184, 3460925695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460925696, 3460925951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460925952, 3460926207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460926208, 3460926463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460926464, 3460926719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460926720, 3460926975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460926976, 3460927103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460927104, 3460927231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460927232, 3460929023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460929024, 3460929279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460929280, 3460929535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460929536, 3460929791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460929792, 3460930047, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460930048, 3460931007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460931008, 3460931071, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460931072, 3460931199, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460931200, 3460931247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460931248, 3460931327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460931328, 3460931583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460931584, 3460931839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460931840, 3460932095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460932096, 3460932351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460932352, 3460932607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460932608, 3460932863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460932864, 3460933119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460933120, 3460933375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460933376, 3460933439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460933440, 3460933679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460933680, 3460933695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460933696, 3460933823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460933824, 3460933887, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460933888, 3460934143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460934144, 3460934655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460934656, 3460934783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460934784, 3460934911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460934912, 3460935167, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460935168, 3460935199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460935200, 3460935231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460935232, 3460935295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460935296, 3460935423, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460935424, 3460935679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460935680, 3460935935, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460935936, 3460936191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460936192, 3460936447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460936448, 3460936703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460936704, 3460936959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460936960, 3460937215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460937216, 3460937471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460937472, 3460937727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460937728, 3460937983, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460937984, 3460938239, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460938240, 3460938495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460938496, 3460939039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939040, 3460939071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939072, 3460939103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939104, 3460939263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939264, 3460939519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939520, 3460939711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939712, 3460939775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939776, 3460939903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939904, 3460939935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939936, 3460939967, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460939968, 3460940287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940288, 3460940351, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940352, 3460940415, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940416, 3460940479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940480, 3460940511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940512, 3460940543, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940544, 3460940559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940560, 3460940567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940568, 3460940607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940608, 3460940639, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460940640, 3460941311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460941312, 3460941375, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460941376, 3460941439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460941440, 3460941567, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460941568, 3460941823, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460941824, 3460942079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460942080, 3460942335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460942336, 3460943359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460943360, 3460943615, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460943616, 3460943871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460943872, 3460944383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944384, 3460944447, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944448, 3460944479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944480, 3460944511, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944512, 3460944543, N'TH', N'Thailand') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944544, 3460944575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944576, 3460944671, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944672, 3460944767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944768, 3460944895, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460944896, 3460945151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460945152, 3460945663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460945664, 3460945919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460945920, 3460946687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460946688, 3460946943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460946944, 3460946975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460946976, 3460947199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460947200, 3460947455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460947456, 3460947711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460947712, 3460947967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460947968, 3460948095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460948096, 3460948159, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460948160, 3460948735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460948736, 3460948799, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460948800, 3460948863, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460948864, 3460948927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460948928, 3460948959, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460948960, 3460949023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460949024, 3460949055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460949056, 3460949183, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460949184, 3460950271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460950272, 3460950527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460950528, 3460950591, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460950592, 3460950671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460950672, 3460950687, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460950688, 3460950991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460950992, 3460951007, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951008, 3460951295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951296, 3460951551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951552, 3460951559, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951560, 3460951567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951568, 3460951583, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951584, 3460951743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951744, 3460951751, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951752, 3460951759, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951760, 3460951823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951824, 3460951831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951832, 3460951855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951856, 3460951871, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951872, 3460951935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951936, 3460951951, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460951952, 3460952007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952008, 3460952015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952016, 3460952255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952256, 3460952287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952288, 3460952319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952320, 3460952575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952576, 3460952831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952832, 3460952895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952896, 3460952927, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952928, 3460952959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460952960, 3460953023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953024, 3460953111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953112, 3460953119, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953120, 3460953135, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953136, 3460953151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953152, 3460953167, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953168, 3460953183, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953184, 3460953199, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953200, 3460953231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953232, 3460953247, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953248, 3460953279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953280, 3460953343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953344, 3460953599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953600, 3460953615, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953616, 3460953623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953624, 3460953631, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953632, 3460953647, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953648, 3460953663, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953664, 3460953727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953728, 3460953855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460953856, 3460954111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954112, 3460954191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954192, 3460954207, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954208, 3460954367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954368, 3460954431, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954432, 3460954463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954464, 3460954479, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954480, 3460954527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954528, 3460954559, N'KP', N'Korea, Democratic People''s Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954560, 3460954623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954624, 3460954879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460954880, 3460955135, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460955136, 3460955391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460955392, 3460955423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460955424, 3460955455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460955456, 3460955487, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460955488, 3460955519, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460955520, 3460955583, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3460955584, 3461021695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461021696, 3461031935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461031936, 3461032191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461032192, 3461087231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461087232, 3461408767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461410816, 3461414911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461414912, 3461513215, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461513216, 3461513727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461513728, 3461513983, N'BF', N'Burkina Faso') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461513984, 3461514495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461514496, 3461514751, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461514752, 3461516287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461516288, 3461516543, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461516544, 3461517311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461517312, 3461554175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461554176, 3461556223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461558272, 3461808127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461808128, 3461873663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461873664, 3461897727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461897728, 3461897983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461897984, 3461905407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461905408, 3461905663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461905664, 3461940735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461940736, 3461940991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461940992, 3461948159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461948160, 3461948415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461948416, 3461948927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461948928, 3461949183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461949184, 3461949695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461949696, 3461950207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461950208, 3461950719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461950720, 3461951231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461951232, 3461953535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461953536, 3461953791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461953792, 3461968127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461968128, 3461968383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461968384, 3461970431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461970432, 3461970687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461970688, 3461972223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461972224, 3461972479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461972480, 3461977855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461977856, 3461978111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461978112, 3461984767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461984768, 3461985023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461985024, 3461992703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461992704, 3461992959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461992960, 3461999871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3461999872, 3462000127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462000128, 3462000895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462000896, 3462001151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462001152, 3462001919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462001920, 3462002431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462002432, 3462148607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462148608, 3462148863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462148864, 3462160895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462160896, 3462161151, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462161152, 3462163967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462163968, 3462164223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462164224, 3462168319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462168320, 3462168575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462168576, 3462169599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462169600, 3462169855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462169856, 3462170623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462170624, 3462171135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462171136, 3462171391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462171392, 3462171647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462171648, 3462173695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462173696, 3462173951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462173952, 3462174463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462174464, 3462174719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462174720, 3462179839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462179840, 3462180095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462180096, 3462181375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462181376, 3462182143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462182144, 3462191871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462191872, 3462192127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462192128, 3462194175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462194176, 3462194431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462194432, 3462231039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462231040, 3462231295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462231296, 3462231807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462231808, 3462232063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462232064, 3462268415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462268416, 3462268671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462268672, 3462276863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462276864, 3462277119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462277120, 3462290175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462290176, 3462290431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462290432, 3462314239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462314240, 3462314495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462314496, 3462321407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462321408, 3462321663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462321664, 3462321919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462321920, 3462322175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462322176, 3462323711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462323712, 3462323967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462323968, 3462339071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462339072, 3462339583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462339584, 3462340607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462340608, 3462340863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462340864, 3462350847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462350848, 3462351103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462351104, 3462593791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462593792, 3462594559, N'GN', N'Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462594560, 3462605823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462605824, 3462608895, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462608896, 3462718975, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462718976, 3462719007, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462719008, 3462719039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462719040, 3462719071, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462719072, 3462859519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462859520, 3462859775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462859776, 3462991183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462991184, 3462991191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3462991192, 3463004159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463004160, 3463006207, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463006208, 3463032319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463032320, 3463032831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463032832, 3463043071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463043072, 3463044095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463044096, 3463089151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463089152, 3463090175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463090176, 3463116799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463116800, 3463118847, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463118848, 3463156735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463156736, 3463157759, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463157760, 3463184383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463184384, 3463229327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463229328, 3463229335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463229336, 3463249919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463249920, 3463480063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463480064, 3463480319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463480320, 3463518207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463518208, 3463520255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463520256, 3463536639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463536640, 3463540735, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463540736, 3463583567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463583568, 3463583583, N'UM', N'United States Minor Outlying Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463583584, 3463602687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463602688, 3463602943, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463602944, 3463708671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463708672, 3463774207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3463774208, 3464167423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464167424, 3464183807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464183808, 3464185759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464185760, 3464185791, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464185792, 3464195871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464195872, 3464195879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464195880, 3464195887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464195888, 3464195895, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464195896, 3464195911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464195912, 3464195919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464195920, 3464208383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464208384, 3464216575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464216576, 3464382463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464384512, 3464388607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464388608, 3464548367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548368, 3464548375, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548376, 3464548391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548392, 3464548399, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548400, 3464548415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548416, 3464548431, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548432, 3464548479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548480, 3464548599, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548600, 3464548607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548608, 3464548863, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464548864, 3464549119, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549120, 3464549375, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549376, 3464549391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549392, 3464549399, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549400, 3464549415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549416, 3464549439, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549440, 3464549503, N'MS', N'Montserrat') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549504, 3464549519, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549520, 3464549551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549552, 3464549567, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549568, 3464549639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549640, 3464549679, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549680, 3464549687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549688, 3464549727, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549728, 3464549759, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549760, 3464549855, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549856, 3464549863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549864, 3464549871, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549872, 3464549919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549920, 3464549927, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549928, 3464549935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549936, 3464549943, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549944, 3464549951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464549952, 3464550015, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464550016, 3464550047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464550048, 3464550127, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464550128, 3464550143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464550144, 3464550399, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464550400, 3464604159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464604160, 3464604223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464604224, 3464626175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464626176, 3464650751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464650752, 3464663039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464663040, 3464691711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464691712, 3464769535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464769536, 3464773631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3464773632, 3465154559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465154560, 3465158655, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465158656, 3465177087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465177088, 3465179135, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465179136, 3465438207, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465438208, 3465438463, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465438464, 3465475071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465475072, 3465475583, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465475584, 3465476351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465476352, 3465476607, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465476608, 3465510911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465510912, 3465543679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3465543680, 3466148351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466148352, 3466148863, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466148864, 3466158079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466158080, 3466166271, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466166272, 3466204415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466204416, 3466204543, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466204544, 3466204607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466204608, 3466204671, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466204672, 3466489855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466489856, 3466490111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466490112, 3466555199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466555200, 3466555215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466555216, 3466558207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466558208, 3466558463, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466558464, 3466560255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466560256, 3466560511, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466560512, 3466647039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466647040, 3466647047, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466647048, 3466657791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466657792, 3466709247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466709248, 3466709503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466709504, 3466723327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466723328, 3466734847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466734848, 3466735103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466735104, 3466756095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466756096, 3466772479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466772480, 3466846207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466846208, 3466854399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3466854400, 3467051007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467051008, 3467116543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467116544, 3467145351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145352, 3467145359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145360, 3467145743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145744, 3467145751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145752, 3467145791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145792, 3467145807, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145808, 3467145815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145816, 3467145823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145824, 3467145831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145832, 3467145839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145840, 3467145847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145848, 3467145855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467145856, 3467146495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467146496, 3467146559, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467146560, 3467146591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467146592, 3467146655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467146656, 3467146671, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467146672, 3467378687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467378688, 3467444223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467444224, 3467550719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467558912, 3467563007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467575296, 3467619935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467619936, 3467619967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467619968, 3467706367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467706368, 3467902975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467902976, 3467952127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467952128, 3467956223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467956224, 3467961503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467961504, 3467961519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3467961520, 3468034047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468034048, 3468036095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468036096, 3468036351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468036352, 3468036607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468036608, 3468036863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468036864, 3468037375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468037376, 3468037887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468037888, 3468038143, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468038144, 3468038655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468038656, 3468038911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468038912, 3468039167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468039168, 3468039423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468039424, 3468041215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468041216, 3468041471, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468041472, 3468041727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468041728, 3468041983, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468041984, 3468042367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468042368, 3468042431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468042432, 3468042495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468042496, 3468042751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468042752, 3468043135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468043136, 3468043263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468043264, 3468044543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468044544, 3468044799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468044800, 3468044927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468044928, 3468045055, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468045056, 3468045311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468045312, 3468045695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468045696, 3468045823, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468045824, 3468046079, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468046080, 3468046335, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468046336, 3468046591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468046592, 3468046719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468046720, 3468046847, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468046848, 3468047103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468047104, 3468047359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468047360, 3468047615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468047616, 3468047743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468047744, 3468047807, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468047808, 3468047871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468047872, 3468047887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468047888, 3468047999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468048000, 3468048127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468048128, 3468048383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468048384, 3468048639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468048640, 3468049407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468049408, 3468049663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468049664, 3468049919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468049920, 3468050175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468050176, 3468050431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468050432, 3468050687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468050688, 3468050943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468050944, 3468051007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468051008, 3468051231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468051232, 3468051263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468051264, 3468051327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468051328, 3468052479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468052480, 3468052735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468052736, 3468052991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468052992, 3468053247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468053248, 3468053503, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468053504, 3468053759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468053760, 3468054015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468054016, 3468054271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468054272, 3468055295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468055296, 3468055551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468055552, 3468055807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468055808, 3468056063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468056064, 3468056319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468056320, 3468056575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468056576, 3468056831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468056832, 3468056959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468056960, 3468057023, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468057024, 3468057087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468057088, 3468057215, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468057216, 3468057375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468057376, 3468057599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468057600, 3468057855, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468057856, 3468058111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058112, 3468058175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058176, 3468058239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058240, 3468058367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058368, 3468058368, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058369, 3468058432, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058433, 3468058559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058560, 3468058623, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058624, 3468058687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058688, 3468058719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468058720, 3468059647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468059648, 3468059903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468059904, 3468060159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468060160, 3468060671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468060672, 3468060927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468060928, 3468060991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468060992, 3468061119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468061120, 3468061183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468061184, 3468061695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468061696, 3468061951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468061952, 3468062079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468062080, 3468062143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468062144, 3468062335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468062336, 3468062399, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468062400, 3468062463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468062464, 3468062719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468062720, 3468063231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468063232, 3468063359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468063360, 3468063423, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468063424, 3468063487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468063488, 3468063743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468063744, 3468063999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064000, 3468064255, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064256, 3468064511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064512, 3468064527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064528, 3468064543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064544, 3468064575, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064576, 3468064639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064640, 3468064703, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064704, 3468064735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064736, 3468064767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468064768, 3468065023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468065024, 3468065279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468065280, 3468065535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468065536, 3468065791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468065792, 3468065919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468065920, 3468065951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468065952, 3468065983, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468065984, 3468065999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066000, 3468066015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066016, 3468066047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066048, 3468066239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066240, 3468066271, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066272, 3468066319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066320, 3468066327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066328, 3468066367, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066368, 3468066399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066400, 3468066463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066464, 3468066495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066496, 3468066527, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066528, 3468066559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066560, 3468066623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468066624, 3468067263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067264, 3468067295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067296, 3468067327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067328, 3468067359, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067360, 3468067391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067392, 3468067399, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067400, 3468067551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067552, 3468067567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067568, 3468067759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067760, 3468067775, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468067776, 3468068095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468068096, 3468068351, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468068352, 3468068527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468068528, 3468068543, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468068544, 3468068863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468068864, 3468069631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468069632, 3468071791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468071792, 3468071807, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468071808, 3468071871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468071872, 3468071887, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468071888, 3468072351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468072352, 3468072383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468072384, 3468073183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468073184, 3468073215, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468073216, 3468073727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468073728, 3468073791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468073792, 3468073855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468073856, 3468073919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468073920, 3468074463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468074464, 3468074479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468074480, 3468075919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468075920, 3468075935, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468075936, 3468075967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468075968, 3468075999, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468076000, 3468076031, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468076032, 3468076191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468076192, 3468076207, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468076208, 3468076223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468076224, 3468076287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468076288, 3468077631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468077632, 3468077663, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468077664, 3468079327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468079328, 3468079359, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468079360, 3468079487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468079488, 3468079551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468079552, 3468081407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468081408, 3468081663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468081664, 3468081919, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468081920, 3468082431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468082432, 3468082687, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468082688, 3468083311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468083312, 3468083327, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468083328, 3468083391, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468083392, 3468083663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468083664, 3468083679, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468083680, 3468083967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468083968, 3468084223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468084224, 3468084735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468084736, 3468084991, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468084992, 3468085055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085056, 3468085119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085120, 3468085183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085184, 3468085191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085192, 3468085199, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085200, 3468085247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085248, 3468085279, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085280, 3468085311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085312, 3468085375, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085376, 3468085439, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085440, 3468085503, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085504, 3468085535, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085536, 3468085551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085552, 3468085567, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085568, 3468085599, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085600, 3468085607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085608, 3468085623, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085624, 3468085663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085664, 3468085695, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085696, 3468085759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468085760, 3468086015, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468086016, 3468086143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468086144, 3468086271, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468086272, 3468086783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468086784, 3468086799, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468086800, 3468086879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468086880, 3468086911, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468086912, 3468087807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468087808, 3468088063, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088064, 3468088191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088192, 3468088207, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088208, 3468088223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088224, 3468088231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088232, 3468088335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088336, 3468088351, N'JP', N'Japan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088352, 3468088383, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088384, 3468088415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088416, 3468088431, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088432, 3468088959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088960, 3468088991, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468088992, 3468089023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468089024, 3468089055, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468089056, 3468089663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468089664, 3468089695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468089696, 3468089823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468089824, 3468089855, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468089856, 3468090623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090624, 3468090687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090688, 3468090719, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090720, 3468090727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090728, 3468090735, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090736, 3468090751, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090752, 3468090815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090816, 3468090879, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468090880, 3468091135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468091136, 3468091199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468091200, 3468091391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468091392, 3468091647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468091648, 3468091903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468091904, 3468091935, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468091936, 3468092031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468092032, 3468092063, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468092064, 3468092127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468092128, 3468092159, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468092160, 3468093247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093248, 3468093263, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093264, 3468093279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093280, 3468093287, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093288, 3468093343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093344, 3468093375, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093376, 3468093391, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093392, 3468093407, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093408, 3468093439, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093440, 3468093695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093696, 3468093951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468093952, 3468094207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468094208, 3468094223, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468094224, 3468094271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468094272, 3468094303, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468094304, 3468094335, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468094336, 3468095135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468095136, 3468095167, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468095168, 3468095231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468095232, 3468095487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468095488, 3468096255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468096256, 3468096383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468096384, 3468096447, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468096448, 3468096479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468096480, 3468096511, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468096512, 3468096767, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468096768, 3468096895, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468096896, 3468097023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468097024, 3468098047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468098048, 3468098079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468098080, 3468098111, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468098112, 3468098239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468098240, 3468098271, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468098272, 3468099327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468099328, 3468099583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468099584, 3468296191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468296192, 3468361727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468361728, 3468427359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468427360, 3468427375, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468427376, 3468427935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468427936, 3468427967, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468427968, 3468428191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428192, 3468428207, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428208, 3468428415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428416, 3468428447, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428448, 3468428543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428544, 3468428559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428560, 3468428607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428608, 3468428671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428672, 3468428927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428928, 3468428991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468428992, 3468429343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468429344, 3468429359, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468429360, 3468430495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468430496, 3468430527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468430528, 3468431999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468432000, 3468432063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468432064, 3468432175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468432176, 3468432191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468432192, 3468432671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468432672, 3468432687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468432688, 3468443647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468443648, 3468460031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468460032, 3468464127, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468468224, 3468472319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468476416, 3468545791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468545792, 3468546047, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468546048, 3468623871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468623872, 3468624527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468624528, 3468624543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468624544, 3468627247, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468627248, 3468627263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468627264, 3468627663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468627664, 3468627679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468627680, 3468627839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468627840, 3468627855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468627856, 3468628143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468628144, 3468628159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468628160, 3468628511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468628512, 3468628607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468628608, 3468628927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468628928, 3468628991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468628992, 3468631551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468631552, 3468631583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468631584, 3468631599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468631600, 3468631615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468631616, 3468631743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468631744, 3468631775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468631776, 3468632143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468632144, 3468632159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468632160, 3468632967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468632968, 3468632975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468632976, 3468633639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468633640, 3468633647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468633648, 3468633791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468633792, 3468633855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468633856, 3468634375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468634376, 3468634383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468634384, 3468635207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468635208, 3468635215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468635216, 3468635583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468635584, 3468635647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468635648, 3468635919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468635920, 3468635935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468635936, 3468636927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468636928, 3468637055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468637056, 3468637495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468637496, 3468637503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468637504, 3468638143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468638144, 3468638159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468638160, 3468656639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3468656640, 3469055743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469055744, 3469055999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469056000, 3469176319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469176320, 3469176575, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469176576, 3469186303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469186304, 3469186559, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469186560, 3469893631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469893632, 3469901823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3469901824, 3470458879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470458880, 3470475263, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470475264, 3470558207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470558208, 3470559231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470559232, 3470610431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470610432, 3470614527, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470614528, 3470651391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470651392, 3470655487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470655488, 3470671871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470671872, 3470680063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470680064, 3470745855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470745856, 3470746111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470746112, 3470749951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470749952, 3470750207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470750208, 3470752767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470752768, 3470753023, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470753024, 3470754303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470754304, 3470754559, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470754560, 3470755839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470755840, 3470756095, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470756096, 3470756607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470756608, 3470756863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470756864, 3470761983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470761984, 3470770175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470770176, 3470778367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470778368, 3470786559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470786560, 3470794751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470794752, 3470802943, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470802944, 3470884863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470884864, 3470885887, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3470888960, 3471057919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471057920, 3471058943, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471058944, 3471059455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471059456, 3471060223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471060224, 3471060991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471060992, 3471061247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471061248, 3471061503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471061504, 3471061759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471061760, 3471204679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471204680, 3471204687, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471204688, 3471262719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471262720, 3471263743, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471263744, 3471265791, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471265792, 3471529215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471529216, 3471529983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471529984, 3471558655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471558656, 3471560703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471560704, 3471570943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471570944, 3471572991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3471572992, 3472367615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3472375808, 3472392191, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3472392192, 3472408575, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3472408576, 3472416767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3472424960, 3472990207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3472990208, 3472990463, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3472990464, 3473029631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473029632, 3473030399, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473030400, 3473039359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473039360, 3473041407, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473047552, 3473096192, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473096193, 3473096447, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473096448, 3473108991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473108992, 3473113087, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473113088, 3473276927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473276928, 3473342463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473342464, 3473703551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473703552, 3473703679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473703680, 3473755391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473755392, 3473755647, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473755648, 3473764799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473764800, 3473764815, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473764816, 3473764823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473764824, 3473764831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473764832, 3473765887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473765888, 3473766399, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473766400, 3473786111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473786112, 3473786127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473786128, 3473813567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473813568, 3473813599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473813600, 3473901055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473901056, 3473901311, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473901312, 3473917439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473917440, 3473917695, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3473917696, 3474046463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474046464, 3474046975, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474046976, 3474053119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474053120, 3474055167, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474055168, 3474193407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474193408, 3474193663, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474193664, 3474193919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474193920, 3474194431, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474194432, 3474391039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474391040, 3474456575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474456576, 3474463071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463072, 3474463087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463088, 3474463183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463184, 3474463199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463200, 3474463231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463232, 3474463487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463488, 3474463791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463792, 3474463807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463808, 3474463855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463856, 3474463871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463872, 3474463903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463904, 3474463919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474463920, 3474464255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474464256, 3474464767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474464768, 3474548223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474548224, 3474548479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474548480, 3474623599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474623600, 3474623615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3474623616, 3475111935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475111936, 3475120127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475120128, 3475124223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475124224, 3475243007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475243008, 3475589887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475589888, 3475590143, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475590144, 3475670015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670016, 3475670047, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670048, 3475670079, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670080, 3475670175, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670176, 3475670207, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670208, 3475670271, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670272, 3475670527, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670528, 3475670783, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670784, 3475670847, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475670848, 3475671039, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475671040, 3475681279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475681280, 3475685375, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475685376, 3475745503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475745504, 3475745535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475745536, 3475881983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475881984, 3475890175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475890176, 3475996671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3475996672, 3476029439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476029440, 3476041551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476041552, 3476041583, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476041584, 3476076319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476076320, 3476076351, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476076352, 3476111359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476111360, 3476111871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476111872, 3476221951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476221952, 3476223999, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476224000, 3476265855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476265856, 3476265919, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476265920, 3476348927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476348928, 3476349183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476349184, 3476418559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476418560, 3476419839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476419840, 3476419959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476419960, 3476420095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476420096, 3476420351, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476420352, 3476420607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476420608, 3476420863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476420864, 3476421887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476421888, 3476422143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476422144, 3476422655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476422656, 3476447231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476447232, 3476451343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476451344, 3476451375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476451376, 3476455423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476455424, 3476721159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721160, 3476721167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721168, 3476721207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721208, 3476721215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721216, 3476721279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721280, 3476721287, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721288, 3476721311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721312, 3476721319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721320, 3476721327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721328, 3476721359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721360, 3476721367, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721368, 3476721375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476721376, 3476722191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722192, 3476722207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722208, 3476722271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722272, 3476722319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722320, 3476722335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722336, 3476722351, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722352, 3476722399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722400, 3476722415, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722416, 3476722431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722432, 3476722463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476722464, 3476723263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476723264, 3476723271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476723272, 3476723967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476723968, 3476724095, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476724096, 3476724223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476724224, 3476724991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476724992, 3476725023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725024, 3476725247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725248, 3476725295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725296, 3476725303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725304, 3476725359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725360, 3476725399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725400, 3476725415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725416, 3476725431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725432, 3476725439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725440, 3476725455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725456, 3476725463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476725464, 3476881407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476881408, 3476946943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3476946944, 3477161503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161504, 3477161519, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161520, 3477161551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161552, 3477161567, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161568, 3477161615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161616, 3477161623, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161624, 3477161631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161632, 3477161663, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161664, 3477161775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161776, 3477161791, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477161792, 3477548287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477548288, 3477548295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3477548296, 3478114303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478114304, 3478118399, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478118400, 3478192127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478192128, 3478257663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478257664, 3478323391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478323392, 3478323399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478323400, 3478327423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478327424, 3478327431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478327432, 3478331519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478331520, 3478331647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478331648, 3478331839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478331840, 3478331847, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478331848, 3478332991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478332992, 3478332999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478333000, 3478347903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478347904, 3478348031, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478348032, 3478351895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478351896, 3478351903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478351904, 3478351951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478351952, 3478351967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478351968, 3478352111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478352112, 3478352119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478352120, 3478364159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478364160, 3478364167, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478364168, 3478364191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478364192, 3478364223, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478364224, 3478364255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478364256, 3478364271, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3478364272, 3479207935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479207936, 3479231199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479231200, 3479231207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479231208, 3479240703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479240704, 3479290063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290064, 3479290071, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290072, 3479290087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290088, 3479290095, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290096, 3479290631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290632, 3479290639, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290640, 3479290743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290744, 3479290751, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290752, 3479290767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290768, 3479290799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479290800, 3479291263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291264, 3479291287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291288, 3479291671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291672, 3479291679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291680, 3479291687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291688, 3479291695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291696, 3479291703, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291704, 3479291831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291832, 3479291847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291848, 3479291871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291872, 3479291879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291880, 3479291911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291912, 3479291919, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479291920, 3479292007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292008, 3479292015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292016, 3479292223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292224, 3479292231, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292232, 3479292239, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292240, 3479292671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292672, 3479292687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292688, 3479292815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292816, 3479292823, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479292824, 3479293007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293008, 3479293023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293024, 3479293031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293032, 3479293039, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293040, 3479293255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293256, 3479293263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293264, 3479293311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293312, 3479293319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479293320, 3479294223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294224, 3479294231, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294232, 3479294351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294352, 3479294367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294368, 3479294487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294488, 3479294495, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294496, 3479294559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294560, 3479294567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294568, 3479294663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294664, 3479294671, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294672, 3479294775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294776, 3479294783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479294784, 3479295015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479295016, 3479295023, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479295024, 3479295583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479295584, 3479295591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479295592, 3479295703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479295704, 3479295735, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479295736, 3479296071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479296072, 3479296079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479296080, 3479296095, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479296096, 3479296607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479296608, 3479296615, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479296616, 3479296671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479296672, 3479296679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479296680, 3479298047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298048, 3479298063, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298064, 3479298079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298080, 3479298199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298200, 3479298207, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298208, 3479298319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298320, 3479298327, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298328, 3479298399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298400, 3479298407, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298408, 3479298583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298584, 3479298591, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298592, 3479298599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298600, 3479298759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298760, 3479298767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479298768, 3479301663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479301664, 3479301679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479301680, 3479301687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479301688, 3479301695, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479301696, 3479301775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479301776, 3479301783, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479301784, 3479303759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479303760, 3479303767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479303768, 3479303951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479303952, 3479303975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479303976, 3479303983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479303984, 3479303991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479303992, 3479304319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304320, 3479304327, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304328, 3479304351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304352, 3479304359, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304360, 3479304447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304448, 3479304455, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304456, 3479304463, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304464, 3479304863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304864, 3479304871, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479304872, 3479305055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305056, 3479305071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305072, 3479305175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305176, 3479305183, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305184, 3479305215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305216, 3479305231, N'EG', N'Egypt') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305232, 3479305247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305248, 3479305255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305256, 3479305271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305272, 3479305279, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305280, 3479305983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479305984, 3479306015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479306016, 3479306031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479306032, 3479306039, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479306040, 3479568383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479568384, 3479633919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479633920, 3479789343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479789344, 3479789360, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479789361, 3479896063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479896064, 3479923071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479923072, 3479923079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479923080, 3479961599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3479961600, 3480223743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480223744, 3480225279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480225280, 3480225535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480225536, 3480256511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480256512, 3480284159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480284160, 3480284671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480284672, 3480416063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480416064, 3480416127, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480416128, 3480444927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480444928, 3480449023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480449024, 3480551423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480551424, 3480551679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480551680, 3480551935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480551936, 3480552191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480552192, 3480552447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480552448, 3480552703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480552704, 3480552959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480552960, 3480553215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480553216, 3480553343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480553344, 3480553470, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480553471, 3480553471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480553472, 3480553727, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480553728, 3480553983, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480553984, 3480554239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480554240, 3480554495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480554496, 3480554751, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480554752, 3480555263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480555264, 3480555519, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480555520, 3480555775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480555776, 3480556287, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480556288, 3480556543, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480556544, 3480557055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480557056, 3480557311, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480557312, 3480557567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480557568, 3480557823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480557824, 3480558079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480558080, 3480558591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480558592, 3480558847, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480558848, 3480559359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480559360, 3480559615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480559616, 3480560895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480560896, 3480561151, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480561152, 3480561919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480561920, 3480562175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480562176, 3480564735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480564736, 3480564991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480564992, 3480567039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480567040, 3480567551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480567552, 3480568319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480568320, 3480568575, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480568576, 3480568671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480568672, 3480568703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480568704, 3480568831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480568832, 3480569599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480569600, 3480569855, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480569856, 3480570111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480570112, 3480570367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480570368, 3480570623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480570624, 3480570879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480570880, 3480571391, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480571392, 3480571647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480571648, 3480571775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480571776, 3480573567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480573568, 3480573631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480573632, 3480573695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480573696, 3480574527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480574528, 3480574591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480574592, 3480575231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480575232, 3480575487, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480575488, 3480575743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480575744, 3480577023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480577024, 3480579327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480579328, 3480579583, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480579584, 3480579711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480579712, 3480579775, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480579776, 3480579839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480579840, 3480580095, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480580096, 3480580351, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480580352, 3480580607, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480580608, 3480580863, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480580864, 3480581119, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480581120, 3480581247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480581248, 3480581375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480581376, 3480581631, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480581632, 3480581887, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480581888, 3480582143, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480582144, 3480582399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480582400, 3480582655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480582656, 3480583423, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480583424, 3480585599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480585600, 3480585663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480585664, 3480587647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480587648, 3480587775, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480587776, 3480588799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480588800, 3480589055, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480589056, 3480590463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480590464, 3480590591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480590592, 3480591103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480591104, 3480591359, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480591360, 3480591423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480591424, 3480591487, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480591488, 3480591615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480591616, 3480592127, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480592128, 3480592383, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480592384, 3480592639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480592640, 3480592895, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480592896, 3480593151, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480593152, 3480593407, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480593408, 3480593663, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480593664, 3480593919, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480593920, 3480594175, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480594176, 3480594431, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480594432, 3480595711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480595712, 3480595967, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480595968, 3480596991, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480596992, 3480597247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480597248, 3480598271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480598272, 3480598527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480598528, 3480599039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480599040, 3480599295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480599296, 3480599551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480599552, 3480599807, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480599808, 3480600575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480600576, 3480601087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480601088, 3480601343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480601344, 3480601599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480601600, 3480601855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480601856, 3480602111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480602112, 3480602879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480602880, 3480603647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480603648, 3480603903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480603904, 3480604159, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480604160, 3480604671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480604672, 3480604927, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480604928, 3480605183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480605184, 3480605439, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480605440, 3480605695, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480605696, 3480605951, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480605952, 3480606207, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480606208, 3480606463, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480606464, 3480606719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480606720, 3480606975, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480606976, 3480607231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480607232, 3480607487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480607488, 3480610303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480610304, 3480610559, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480610560, 3480610815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480610816, 3480610943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480610944, 3480611071, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480611072, 3480611327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480611328, 3480611583, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480611584, 3480611839, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480611840, 3480612095, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480612096, 3480612351, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480612352, 3480613631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480613632, 3480839423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480839424, 3480840191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480840192, 3480907263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480907264, 3480907775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480907776, 3480968191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480968192, 3480968447, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3480968448, 3481029375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481029376, 3481029631, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481029632, 3481032959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481032960, 3481033727, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481033728, 3481039359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481039360, 3481039871, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481039872, 3481665535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481665536, 3481731071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481731072, 3481812991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481812992, 3481822063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481822064, 3481822079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481822080, 3481829375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481829376, 3481993215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481993216, 3481993783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481993784, 3481993791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481993792, 3481993887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481993888, 3481993895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481993896, 3481995279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995280, 3481995287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995288, 3481995303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995304, 3481995311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995312, 3481995519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995520, 3481995527, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995528, 3481995543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995544, 3481995551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481995552, 3481998591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481998592, 3481998847, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3481998848, 3482014079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482014080, 3482014207, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482014208, 3482018815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482018816, 3482019071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482019072, 3482022783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482022784, 3482022847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482022848, 3482043735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482043736, 3482043743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482043744, 3482048191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482048192, 3482048255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482048256, 3482058751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482058752, 3482195711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482195712, 3482195967, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482195968, 3482583039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482583040, 3482632191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482632192, 3482755081, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755082, 3482755091, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755092, 3482755101, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755102, 3482755111, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755112, 3482755211, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755212, 3482755221, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755222, 3482755241, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755242, 3482755251, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755252, 3482755377, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755378, 3482755387, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755388, 3482755397, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755398, 3482755407, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755408, 3482755417, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755418, 3482755497, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755498, 3482755507, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755508, 3482755517, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755518, 3482755593, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755594, 3482755613, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755614, 3482755623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755624, 3482755633, N'AQ', N'Antarctica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755634, 3482755643, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755644, 3482755653, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755654, 3482755683, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755684, 3482755693, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755694, 3482755703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755704, 3482755753, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755754, 3482755763, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755764, 3482755773, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755774, 3482755783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755784, 3482755793, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755794, 3482755849, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755850, 3482755859, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755860, 3482755939, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755940, 3482755949, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755950, 3482755959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482755960, 3482756009, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756010, 3482756019, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756020, 3482756029, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756030, 3482756039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756040, 3482756155, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756156, 3482756165, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756166, 3482756175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756176, 3482756185, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756186, 3482756255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756256, 3482756265, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756266, 3482756285, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756286, 3482756295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756296, 3482756305, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756306, 3482756335, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756336, 3482756361, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756362, 3482756371, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756372, 3482756381, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756382, 3482756401, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756402, 3482756411, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756412, 3482756421, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756422, 3482756431, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756432, 3482756491, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756492, 3482756501, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756502, 3482756511, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756512, 3482756521, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756522, 3482756531, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756532, 3482756541, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756542, 3482756617, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756618, 3482756627, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756628, 3482756637, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756638, 3482756647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756648, 3482756657, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756658, 3482756667, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756668, 3482756677, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756678, 3482756687, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756688, 3482756717, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756718, 3482756727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756728, 3482756757, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756758, 3482756767, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756768, 3482756893, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756894, 3482756903, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756904, 3482756913, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756914, 3482756923, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482756924, 3482757169, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757170, 3482757179, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757180, 3482757269, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757270, 3482757279, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757280, 3482757289, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757290, 3482757309, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757310, 3482757319, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757320, 3482757385, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757386, 3482757395, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757396, 3482757415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757416, 3482757425, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757426, 3482757435, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757436, 3482757445, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757446, 3482757455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757456, 3482757465, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757466, 3482757505, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757506, 3482757515, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757516, 3482757525, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757526, 3482757535, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757536, 3482757545, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757546, 3482757555, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757556, 3482757565, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757566, 3482757575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757576, 3482757585, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757586, 3482757651, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757652, 3482757661, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757662, 3482757671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757672, 3482757681, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757682, 3482757691, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757692, 3482757701, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757702, 3482757711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757712, 3482757721, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757722, 3482757731, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757732, 3482757741, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757742, 3482757751, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757752, 3482757811, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757812, 3482757821, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482757822, 3482758351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482758352, 3482758367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482758368, 3482758499, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482758500, 3482758527, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482758528, 3482759275, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482759276, 3482759305, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482759306, 3482759823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482759824, 3482759831, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482759832, 3482760035, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760036, 3482760047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760048, 3482760319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760320, 3482760335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760336, 3482760351, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760352, 3482760385, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760386, 3482760423, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760424, 3482760447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760448, 3482760703, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760704, 3482760799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760800, 3482760815, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760816, 3482760823, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760824, 3482760831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760832, 3482760863, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760864, 3482760927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760928, 3482760959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482760960, 3482761503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482761504, 3482761519, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482761520, 3482761599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482761600, 3482761727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482761728, 3482761935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482761936, 3482761951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482761952, 3482762339, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762340, 3482762351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762352, 3482762360, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762361, 3482762368, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762369, 3482762437, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762438, 3482762445, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762446, 3482762463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762464, 3482762479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762480, 3482762489, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482762490, 3482775551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482775552, 3482779647, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482779648, 3482910719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482910720, 3482927103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3482927104, 3483296004, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483296005, 3483296005, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483296006, 3483435007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483435008, 3483533311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483533312, 3483631615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483631616, 3483697151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483697152, 3483791359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791360, 3483791407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791408, 3483791415, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791416, 3483791423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791424, 3483791599, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791600, 3483791607, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791608, 3483791735, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791736, 3483791743, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791744, 3483791783, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791784, 3483791791, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791792, 3483791831, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791832, 3483791839, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791840, 3483791855, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791856, 3483791863, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791864, 3483791983, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483791984, 3483791999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483792000, 3483793407, N'PR', N'Puerto Rico') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483793408, 3483793919, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483793920, 3483795455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483795456, 3483828223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483828224, 3483836415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483836416, 3483877375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483877376, 3483893759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483893760, 3483895935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483895936, 3483896063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483896064, 3483950751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483950752, 3483950759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3483950760, 3484320815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484320816, 3484320823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484320824, 3484418047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484418048, 3484450815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484450816, 3484483583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484483584, 3484647423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484647424, 3484663807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484663808, 3484746815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484746816, 3484746943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484746944, 3484749823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484753920, 3484762111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484762112, 3484775743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484775744, 3484775775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484775776, 3484777663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484777664, 3484777695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484777696, 3484778495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484778496, 3484847295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484847296, 3484847311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484847312, 3484884991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484884992, 3484893183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3484893184, 3485220863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485220864, 3485229055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485229056, 3485327359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485327360, 3485335551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485335552, 3485442047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485442048, 3485446143, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485446144, 3485597695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485597696, 3485695999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485696000, 3485724671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485724672, 3485728767, N'A1', N'Anonymous Proxy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485728768, 3485885127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485885128, 3485885141, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485885142, 3485886917, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485886918, 3485886931, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485886932, 3485887747, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485887748, 3485887777, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3485887778, 3486023679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486023680, 3486031871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486031872, 3486040063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486056448, 3486307583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486307584, 3486307711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486307712, 3486501951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486501952, 3486501967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486501968, 3486580735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486580736, 3486580991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486580992, 3486581503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486581504, 3486581759, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486581760, 3486582015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486582016, 3486582271, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486582272, 3486582527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486582528, 3486582783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486582784, 3486583039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486583040, 3486583295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486583296, 3486583807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486583808, 3486584063, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486584064, 3486584319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486584320, 3486584831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486584832, 3486585343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486585344, 3486585599, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486585600, 3486586367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486586368, 3486586623, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486586624, 3486586879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486586880, 3486587135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486587136, 3486587391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486587392, 3486587647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486587648, 3486587903, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486587904, 3486588415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486588416, 3486588671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486588672, 3486589119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486589120, 3486589151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486589152, 3486589247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486589248, 3486589279, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486589280, 3486589951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486589952, 3486590207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486590208, 3486590463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486590464, 3486591743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486591744, 3486591999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486592000, 3486592063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486592064, 3486592255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486592256, 3486592511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486592512, 3486593023, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486593024, 3486593279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486593280, 3486593791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486593792, 3486594047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594048, 3486594303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594304, 3486594559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594560, 3486594719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594720, 3486594751, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594752, 3486594783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594784, 3486594815, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594816, 3486594943, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486594944, 3486595071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486595072, 3486595327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486595328, 3486595583, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486595584, 3486595839, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486595840, 3486596095, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486596096, 3486596351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486596352, 3486596607, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486596608, 3486596735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486596736, 3486596799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486596800, 3486596863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486596864, 3486597119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486597120, 3486597375, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486597376, 3486597631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486597632, 3486597887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486597888, 3486598591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486598592, 3486598655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486598656, 3486598911, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486598912, 3486599167, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486599168, 3486599423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486599424, 3486599679, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486599680, 3486599935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486599936, 3486600447, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486600448, 3486601215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486601216, 3486601471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486601472, 3486601535, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486601536, 3486601727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486601728, 3486601983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486601984, 3486602239, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486602240, 3486602431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486602432, 3486602495, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486602496, 3486603007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603008, 3486603263, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603264, 3486603295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603296, 3486603327, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603328, 3486603391, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603392, 3486603407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603408, 3486603423, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603424, 3486603455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603456, 3486603519, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603520, 3486603775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486603776, 3486604031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604032, 3486604287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604288, 3486604543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604544, 3486604575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604576, 3486604607, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604608, 3486604615, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604616, 3486604671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604672, 3486604735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486604736, 3486605055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486605056, 3486605311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486605312, 3486605567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486605568, 3486606079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486606080, 3486606335, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486606336, 3486606591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486606592, 3486606847, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486606848, 3486607359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486607360, 3486607615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486607616, 3486607871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486607872, 3486608127, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486608128, 3486608383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486608384, 3486608639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486608640, 3486608895, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486608896, 3486609151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486609152, 3486609663, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486609664, 3486609919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486609920, 3486610175, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486610176, 3486610431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486610432, 3486610687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486610688, 3486610943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486610944, 3486611199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486611200, 3486611215, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486611216, 3486611455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486611456, 3486611711, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486611712, 3486611775, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486611776, 3486611967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486611968, 3486612223, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486612224, 3486612479, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486612480, 3486612607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486612608, 3486612735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486612736, 3486612991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486612992, 3486613247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486613248, 3486613759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486613760, 3486614015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486614016, 3486614271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486614272, 3486614527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486614528, 3486614783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486614784, 3486615039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486615040, 3486615295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486615296, 3486615551, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486615552, 3486615871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486615872, 3486615903, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486615904, 3486615935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486615936, 3486615967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486615968, 3486616319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486616320, 3486616831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486616832, 3486617215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486617216, 3486617343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486617344, 3486617599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486617600, 3486617855, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486617856, 3486618111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486618112, 3486618367, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486618368, 3486618623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486618624, 3486618879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486618880, 3486619135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486619136, 3486619391, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486619392, 3486619647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486619648, 3486619903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486619904, 3486620159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486620160, 3486620415, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486620416, 3486620671, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486620672, 3486620927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486620928, 3486621183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486621184, 3486621439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486621440, 3486621695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486621696, 3486621951, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486621952, 3486622207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486622208, 3486622463, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486622464, 3486622719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486622720, 3486622975, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486622976, 3486623231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486623232, 3486623487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486623488, 3486623743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486623744, 3486623999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486624000, 3486624255, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486624256, 3486624511, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486624512, 3486624767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486624768, 3486625023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625024, 3486625055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625056, 3486625087, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625088, 3486625151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625152, 3486625183, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625184, 3486625279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625280, 3486625535, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625536, 3486625791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486625792, 3486626047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486626048, 3486626303, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486626304, 3486626559, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486626560, 3486626567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486626568, 3486626591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486626592, 3486626623, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486626624, 3486627071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486627072, 3486627327, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486627328, 3486627583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486627584, 3486627839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486627840, 3486628095, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486628096, 3486628351, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486628352, 3486628607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486628608, 3486628863, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486628864, 3486629375, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486629376, 3486629631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486629632, 3486629887, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486629888, 3486630143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486630144, 3486631679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486631680, 3486631935, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486631936, 3486632447, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486632448, 3486632703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486632704, 3486632959, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486632960, 3486633215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486633216, 3486633471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486633472, 3486633599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486633600, 3486633727, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486633728, 3486633983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486633984, 3486634239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486634240, 3486634495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486634496, 3486634751, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486634752, 3486635007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486635008, 3486635263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486635264, 3486635519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486635520, 3486635775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486635776, 3486636031, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486636032, 3486636287, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486636288, 3486636543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486636544, 3486636799, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486636800, 3486637055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486637056, 3486637311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486637312, 3486637823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486637824, 3486638335, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486638336, 3486638591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486638592, 3486638847, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486638848, 3486639103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486639104, 3486639359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486639360, 3486639615, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486639616, 3486640127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486640128, 3486640383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486640384, 3486640639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486640640, 3486642175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486642176, 3486642431, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486642432, 3486642687, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486642688, 3486642943, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486642944, 3486646015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486646016, 3486646143, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486646144, 3486646271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486646272, 3486662655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486662656, 3486699519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486699520, 3486699775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486699776, 3486700399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486700400, 3486700407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486700408, 3486700439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486700440, 3486700447, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486700448, 3486700479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486700480, 3486700503, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486700504, 3486701311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486701312, 3486701567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486701568, 3486705919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486705920, 3486706175, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486706176, 3486706303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486706304, 3486706367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486706368, 3486706399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486706400, 3486706431, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3486706432, 3487039487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487039488, 3487105023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487105024, 3487189247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487189248, 3487189503, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487189504, 3487193599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487193600, 3487193855, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487193856, 3487197183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487197184, 3487197439, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487197440, 3487203071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487203072, 3487203327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487203328, 3487236095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487236096, 3487301631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487301632, 3487694847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487694848, 3487715583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487715584, 3487715839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487715840, 3487717375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487717376, 3487723519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487723520, 3487733247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487733248, 3487733503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487733504, 3487760383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487760384, 3487766527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487766528, 3487768575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487768576, 3487842303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487842304, 3487858687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487858688, 3487859199, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487859200, 3487861759, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487861760, 3487862015, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487862016, 3487862271, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487862272, 3487862783, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487862784, 3487863039, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487863040, 3487863807, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487863808, 3487875071, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487875072, 3487891455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487891456, 3487907839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487907840, 3487969791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487969792, 3487970047, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3487970048, 3488014335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488014336, 3488022527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488022528, 3488071679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488071680, 3488072703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488075776, 3488079871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488079872, 3488083967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488083968, 3488088063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488088064, 3488104447, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488112640, 3488118047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488118048, 3488118055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488118056, 3488120831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488120832, 3488285791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488285792, 3488285823, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488285824, 3488285855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488285856, 3488285887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488285888, 3488285903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488285904, 3488286279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488286280, 3488286287, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488286288, 3488350207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488350208, 3488361215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488361216, 3488361471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488361472, 3488415743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488415744, 3488615935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488615936, 3488616191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488616192, 3488718847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488718848, 3488719999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488720000, 3488720063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488720064, 3488720095, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488720096, 3488720111, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488720112, 3488720639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488720640, 3488720895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488720896, 3488721151, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488721152, 3488721407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488721408, 3488722175, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488722176, 3488722431, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488722432, 3488722687, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488722688, 3488723199, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488723200, 3488727039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488727040, 3488901887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488901888, 3488902143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488902144, 3488940031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488940032, 3488956415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488956416, 3488989183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3488989184, 3489005567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489005568, 3489039119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039120, 3489039135, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039136, 3489039151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039152, 3489039199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039200, 3489039231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039232, 3489039295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039296, 3489039359, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039360, 3489039367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039368, 3489039375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039376, 3489039383, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039384, 3489039391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039392, 3489039399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039400, 3489039455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039456, 3489039487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039488, 3489039503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039504, 3489039519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039520, 3489039639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039640, 3489039647, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039648, 3489039663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039664, 3489039671, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039672, 3489039679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039680, 3489039695, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039696, 3489039703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039704, 3489039711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039712, 3489039743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039744, 3489039751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039752, 3489039775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039776, 3489039839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039840, 3489039871, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489039872, 3489041671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489041672, 3489041679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489041680, 3489041687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489041688, 3489041695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489041696, 3489042695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489042696, 3489042703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489042704, 3489042711, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489042712, 3489042719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489042720, 3489042743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489042744, 3489042751, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489042752, 3489043207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043208, 3489043215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043216, 3489043231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043232, 3489043263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043264, 3489043279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043280, 3489043327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043328, 3489043344, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043345, 3489043351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043352, 3489043359, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043360, 3489043391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043392, 3489043455, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043456, 3489043583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489043584, 3489045047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489045048, 3489045055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489045056, 3489045135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489045136, 3489045151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489045152, 3489045887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489045888, 3489045903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489045904, 3489136639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489136640, 3489267711, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489267712, 3489341439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489341440, 3489345535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489349632, 3489398783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489398784, 3489399039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489399040, 3489464319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489464320, 3489529855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489529856, 3489562623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489562624, 3489566719, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489566720, 3489574911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489579008, 3489673471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489673472, 3489673727, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489673728, 3489718271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489718272, 3489718527, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489718528, 3489719039, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489719040, 3489719191, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489719192, 3489719199, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489719200, 3489719551, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489719552, 3489719807, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489719808, 3489720063, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489720064, 3489720319, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489720320, 3489738751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489738752, 3489740799, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489740800, 3489749503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489749504, 3489749519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489749520, 3489753151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489753152, 3489753167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489753168, 3489756119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489756120, 3489756127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489756128, 3489761743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489761744, 3489761759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489761760, 3489775103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489775104, 3489775359, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489775360, 3489969151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489969152, 3489969663, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3489969664, 3490041503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490041504, 3490041535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490041536, 3490072575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490072576, 3490074623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490074624, 3490228735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490228736, 3490229247, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490229248, 3490263039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490263040, 3490267135, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490267136, 3490488319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490488320, 3490489343, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490489344, 3490653871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490653872, 3490653887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490653888, 3490732431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490732432, 3490732447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490732448, 3490863615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490863616, 3490863871, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490863872, 3490879231, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490879232, 3490879487, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490879488, 3490922495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490922496, 3490924543, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490924544, 3490974719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490974720, 3490975743, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3490975744, 3491226687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491226688, 3491226719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491226720, 3491381247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491381248, 3491389439, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491389440, 3491476991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491476992, 3491478527, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491478528, 3491508223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491508224, 3491512319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491512320, 3491594239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491594240, 3491596287, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491596288, 3491637247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491637248, 3491637759, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491637760, 3491639807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491639808, 3491639823, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491639824, 3491651583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491651584, 3491655679, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491655680, 3491736063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491736064, 3491736319, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491736320, 3491743743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491743744, 3491745791, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491745792, 3491780607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491780608, 3491781631, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491781632, 3491921663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491921664, 3491921919, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491921920, 3491955711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491955712, 3491956735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491956736, 3491959807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491959808, 3491960319, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491960320, 3491969023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491969024, 3491970047, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491970048, 3491971607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491971608, 3491971615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491971616, 3491971751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491971752, 3491971759, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491971760, 3491971951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491971952, 3491971967, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491971968, 3491973151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491973152, 3491973159, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491973160, 3491979263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491979264, 3491981823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3491981824, 3492005375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492005376, 3492005391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492005392, 3492005439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492005440, 3492005447, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492005448, 3492005463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492005464, 3492005487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492005488, 3492151295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492151296, 3492167679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492167680, 3492464175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492464176, 3492464191, N'LA', N'Lao People''s Democratic Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492464192, 3492472039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492472040, 3492472047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492472048, 3492472431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492472432, 3492472447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492472448, 3492474047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492474048, 3492474111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492474112, 3492669695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492669696, 3492671487, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492671488, 3492795775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492795776, 3492795903, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3492795904, 3493068799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493068800, 3493070847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493070848, 3493071871, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493071872, 3493072895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493072896, 3493073151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493073152, 3493073407, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493073408, 3493073663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493073664, 3493073919, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493073920, 3493074175, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493074176, 3493074431, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493074432, 3493078527, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493078528, 3493079039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493079040, 3493081087, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493081088, 3493081599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493081600, 3493082623, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493082624, 3493086207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493086208, 3493088767, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493088768, 3493089279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493089280, 3493089311, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493089312, 3493089343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493089344, 3493090815, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493090816, 3493091327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493091328, 3493092351, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493092352, 3493092607, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493092608, 3493093375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493093376, 3493093887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493093888, 3493094399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493094400, 3493094655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493094656, 3493096447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493096448, 3493096703, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493096704, 3493098495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493098496, 3493098751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493098752, 3493100559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493100560, 3493100575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493100576, 3493101567, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493101568, 3493866495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493866496, 3493867519, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493867520, 3493874687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493874688, 3493875711, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493875712, 3493936127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493936128, 3493937151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493937152, 3493939199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493939200, 3493941247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493941248, 3493982207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493982208, 3493984255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493984256, 3493986303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493986304, 3493987327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493987328, 3493990399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493990400, 3493991423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493991424, 3493998591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3493998592, 3494000639, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494000640, 3494003711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494003712, 3494004735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494004736, 3494009855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494009856, 3494010879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494010880, 3494014975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494014976, 3494017023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494017024, 3494035807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494035808, 3494035823, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494035824, 3494044671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494044672, 3494045695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494045696, 3494049791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494049792, 3494051839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494051840, 3494075391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494075392, 3494076415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494076416, 3494088703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494088704, 3494090751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494090752, 3494094847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494094848, 3494095871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494095872, 3494114303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494114304, 3494115327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494115328, 3494121471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494121472, 3494122495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494122496, 3494135807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494135808, 3494136831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494136832, 3494139903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494139904, 3494141951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494141952, 3494143999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494144000, 3494145023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3494145024, 3494154239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3495952384, 3495960575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3495968768, 3495976959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3495985152, 3496026111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496034304, 3496050687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496050688, 3496124415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496132608, 3496140799, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496148992, 3496181759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496181760, 3496189951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496198144, 3496285407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496285408, 3496285415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496285416, 3496286999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496287000, 3496287007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496287008, 3496296447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496296448, 3496304639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496312832, 3496873983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496873984, 3496878079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496886272, 3496890367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496902656, 3496943615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496951808, 3496959999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3496968192, 3497066495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3497066496, 3497082879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3497099264, 3497107455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3497132032, 3497164799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3497164800, 3497181183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3497181184, 3497803775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3497820160, 3497828351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498049536, 3498209791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498209792, 3498210815, N'GY', N'Guyana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498210816, 3498254335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498254336, 3498254367, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498254368, 3498254431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498254432, 3498254447, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498254448, 3498254591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498254592, 3498254847, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498254848, 3498283007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498287104, 3498292543, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498292544, 3498292551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498292552, 3498295295, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498295296, 3498336255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498336256, 3498344447, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498344448, 3498428415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498428416, 3498429439, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498429440, 3498429951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498429952, 3498430207, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498430208, 3498509055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498509056, 3498510335, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498510336, 3498513151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498513152, 3498513407, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498513408, 3498513919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498513920, 3498514431, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498514432, 3498587135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498587136, 3498588159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498588160, 3498599935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498599936, 3498600191, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498600192, 3498708991, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498708992, 3498713639, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498713640, 3498713647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498713648, 3498717183, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498721280, 3498760191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498760192, 3498762239, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498762240, 3498812415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498812416, 3498812671, N'PF', N'French Polynesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3498812672, 3499155455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499155456, 3499155711, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499155712, 3499156479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499156480, 3499156735, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499156736, 3499186591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499186592, 3499186623, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499186624, 3499299327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499299328, 3499299583, N'WS', N'Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499299584, 3499403263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499403264, 3499403775, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499403776, 3499436031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499436032, 3499436287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499436288, 3499437055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499437056, 3499437151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499437152, 3499437423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499437424, 3499437431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499437432, 3499450367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499450368, 3499451391, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499451392, 3499705343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499705344, 3499705855, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499705856, 3499706367, N'MG', N'Madagascar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499706368, 3499712511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499712512, 3499713535, N'GY', N'Guyana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499713536, 3499986943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499986944, 3499988991, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499988992, 3499995135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3499999232, 3500095999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500096000, 3500096031, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500096032, 3500126207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500126208, 3500126463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500126464, 3500126719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500126720, 3500144639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500144640, 3500144895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500144896, 3500274175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500274176, 3500274239, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500274240, 3500337663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500337664, 3500337919, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500337920, 3500351487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500351488, 3500359679, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500359680, 3500371583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500371584, 3500371599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500371600, 3500396831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500396832, 3500396863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500396864, 3500486655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500486656, 3500490751, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500490752, 3500613631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500613632, 3500614655, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500614656, 3500689407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500689408, 3500689919, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500689920, 3500707327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500707328, 3500707839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500707840, 3500724991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500724992, 3500725503, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500725504, 3500725759, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500725760, 3500726015, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500726016, 3500726271, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500726272, 3500794879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500794880, 3500795903, N'GY', N'Guyana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500795904, 3500921279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500921280, 3500921311, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3500921312, 3501522943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501522944, 3501588479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501588480, 3501728831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501728832, 3501728863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501728864, 3501732071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501732072, 3501732087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501732088, 3501747967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501747968, 3501748031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501748032, 3501809151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501809152, 3501809407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501809408, 3501817983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501817984, 3501818015, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3501818016, 3502002807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502002808, 3502002815, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502002816, 3502013919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502013920, 3502013927, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502013928, 3502013935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502013936, 3502013943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502013944, 3502045679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502045680, 3502045687, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502045688, 3502070775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502070776, 3502070783, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502070784, 3502082383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502082384, 3502082391, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502082392, 3502100255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502100256, 3502100263, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502100264, 3502144759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502144760, 3502144767, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502144768, 3502146927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502146928, 3502146935, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502146936, 3502159391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502159392, 3502159399, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502159400, 3502159407, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502159408, 3502159415, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502159416, 3502202159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502202160, 3502202167, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502202168, 3502202287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502202288, 3502202295, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502202296, 3502202647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502202648, 3502202655, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502202656, 3502207535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502207536, 3502207543, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502207544, 3502248431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502248432, 3502248439, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502248440, 3502418175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502418176, 3502418431, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502418432, 3502439167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502439168, 3502439423, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502439424, 3502470143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502470144, 3502471167, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502471168, 3502518783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502518784, 3502519295, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502519296, 3502541055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502541056, 3502541311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502541312, 3502545663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502545664, 3502545919, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502545920, 3502569215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502569216, 3502569471, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502569472, 3502683135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502683136, 3502683391, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502683392, 3502929663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502929664, 3502929919, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502929920, 3502993407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502993408, 3502993919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3502993920, 3503027327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503027328, 3503027359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503027360, 3503058431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503058432, 3503058447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503058448, 3503206399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503206400, 3503206911, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503206912, 3503215615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503215616, 3503215639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503215640, 3503222695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503222696, 3503222703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503222704, 3503227391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503227392, 3503227407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503227408, 3503250431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503250432, 3503250943, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503250944, 3503323135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503323136, 3503323647, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503323648, 3503323903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503323904, 3503372031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503372032, 3503372287, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503372288, 3503372799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503372800, 3503373311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503373312, 3503386111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503386112, 3503386367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503386368, 3503413871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503413872, 3503413887, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503413888, 3503454719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503454720, 3503454975, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503454976, 3503473151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503473152, 3503473663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503473664, 3503478783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503478784, 3503479039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503479040, 3503738879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503738880, 3503740927, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503740928, 3503757823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503757824, 3503758335, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503758336, 3503826087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503826088, 3503826095, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503826096, 3503890431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503890432, 3503894527, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503894528, 3503990783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503990784, 3503992831, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3503992832, 3504086015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504086016, 3504086527, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504086528, 3504136191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504136192, 3504138239, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504138240, 3504152319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504152320, 3504152383, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504152384, 3504193535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504193536, 3504194559, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504194560, 3504207871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504207872, 3504208127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504208128, 3504223743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504223744, 3504223999, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504224000, 3504521215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504521216, 3504521727, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504521728, 3504889343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504889344, 3504889855, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504889856, 3504893951, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504893952, 3504922623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504922624, 3504923391, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504923392, 3504928687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504928688, 3504928695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504928696, 3504932351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504932352, 3504932863, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3504932864, 3505004543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505004544, 3505012735, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505012736, 3505112063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505112064, 3505112319, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505112320, 3505112335, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505112336, 3505113087, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505113088, 3505119231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505119232, 3505119487, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505119488, 3505201151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505201152, 3505201407, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505201408, 3505220351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505220352, 3505220479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505220480, 3505227247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505227248, 3505227255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505227256, 3505270271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505270272, 3505270527, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505270528, 3505270783, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505270784, 3505416703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505416704, 3505417471, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505417472, 3505424383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505424384, 3505425407, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505425408, 3505432159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505432160, 3505432191, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505432192, 3505446271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505446272, 3505446399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505446400, 3505474559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505474560, 3505474815, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505474816, 3505511679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505511680, 3505511935, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505511936, 3505661951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505661952, 3505662463, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505662464, 3505664799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505664800, 3505664831, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505664832, 3505818623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505818624, 3505819647, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505819648, 3505938359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505938360, 3505938367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505938368, 3505999359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3505999360, 3506000127, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506000128, 3506043135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506043136, 3506044927, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506044928, 3506052543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506052544, 3506052559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506052560, 3506135263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506135264, 3506135295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506135296, 3506177967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506177968, 3506177983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506177984, 3506184191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506184192, 3506185215, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506185216, 3506192639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506192640, 3506192895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506192896, 3506194535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506194536, 3506194543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506194544, 3506198007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506198008, 3506198015, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506198016, 3506214159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506214160, 3506214175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506214176, 3506307631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506307632, 3506307647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506307648, 3506314655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506314656, 3506314687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506314688, 3506383999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506384000, 3506384031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506384032, 3506404351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506404352, 3506404863, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506404864, 3506421983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506421984, 3506422015, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506422016, 3506765823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506765824, 3506774559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774560, 3506774591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774592, 3506774631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774632, 3506774639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774640, 3506774655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774656, 3506774671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774672, 3506774831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774832, 3506774839, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506774840, 3506831359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506831360, 3506962431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506962432, 3506968447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506968448, 3506968575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506968576, 3506970367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506970368, 3506970623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506970624, 3506972799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506972800, 3506972927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506972928, 3506979071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506979072, 3506979327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506979328, 3506982911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506982912, 3506983423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3506983424, 3507000831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507000832, 3507001087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507001088, 3507021823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507021824, 3507022079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507022080, 3507022335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507022336, 3507023103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507023104, 3507085311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507085312, 3507091455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507091456, 3507093503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507093504, 3507101631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507101632, 3507101647, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507101648, 3507101919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507101920, 3507101935, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507101936, 3507107327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507107328, 3507107583, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507107584, 3507120527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507120528, 3507120543, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507120544, 3507129855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507129856, 3507129919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507129920, 3507134591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507134592, 3507134607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507134608, 3507139279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507139280, 3507139295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507139296, 3507145055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507145056, 3507145087, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507145088, 3507145567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507145568, 3507145599, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507145600, 3507148639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507148640, 3507148671, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507148672, 3507163775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507163776, 3507163791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507163792, 3507168263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507168264, 3507168271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507168272, 3507182159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507182160, 3507182175, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507182176, 3507290111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507290112, 3507355647, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507355648, 3507540015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507540016, 3507540031, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507540032, 3507585023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507585024, 3507586623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507586624, 3507586655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507586656, 3507598911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507598912, 3507598943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507598944, 3507601407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507601408, 3507634335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507634336, 3507634351, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507634352, 3507634383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507634384, 3507634399, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507634400, 3507634623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507634624, 3507634655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507634656, 3507635391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507635392, 3507635407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507635408, 3507636959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507636960, 3507636975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507636976, 3507637551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507637552, 3507637567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507637568, 3507639189, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639190, 3507639199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639200, 3507639385, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639386, 3507639395, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639396, 3507639515, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639516, 3507639525, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639526, 3507639671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639672, 3507639681, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639682, 3507639711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639712, 3507639721, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639722, 3507639741, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639742, 3507639751, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639752, 3507639761, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507639762, 3507642527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507642528, 3507642559, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507642560, 3507642591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507642592, 3507643007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643008, 3507643039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643040, 3507643175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643176, 3507643185, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643186, 3507643265, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643266, 3507643275, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643276, 3507643285, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643286, 3507643295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643296, 3507643315, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643316, 3507643325, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643326, 3507643461, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643462, 3507643471, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643472, 3507643521, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643522, 3507643531, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643532, 3507643601, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643602, 3507643611, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507643612, 3507644031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644032, 3507644063, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644064, 3507644127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644128, 3507644159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644160, 3507644511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644512, 3507644543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644544, 3507644591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644592, 3507644607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644608, 3507644639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644640, 3507644671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507644672, 3507645017, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645018, 3507645027, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645028, 3507645037, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645038, 3507645117, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645118, 3507645127, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645128, 3507645193, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645194, 3507645203, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645204, 3507645223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645224, 3507645233, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645234, 3507645333, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645334, 3507645343, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645344, 3507645353, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645354, 3507645423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645424, 3507645433, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645434, 3507645479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645480, 3507645489, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507645490, 3507646127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507646128, 3507646143, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507646144, 3507647807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507647808, 3507647871, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507647872, 3507649263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507649264, 3507649279, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507649280, 3507748863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507748864, 3507765247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507765248, 3507809279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507809280, 3507809535, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3507809536, 3508082687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508082688, 3508082943, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508082944, 3508085759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508085760, 3508086783, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508086784, 3508097279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508097280, 3508097535, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508097536, 3508098303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508098304, 3508098559, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508098560, 3508100607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508100608, 3508100863, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508100864, 3508110015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508110016, 3508110047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508110048, 3508110207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508110208, 3508110239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508110240, 3508110847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508110848, 3508111103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508111104, 3508111359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508111360, 3508111615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508111616, 3508114431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508114432, 3508114687, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508114688, 3508115807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508115808, 3508115839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508115840, 3508117439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508117440, 3508117503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508117504, 3508118527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508118528, 3508118559, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508118560, 3508118911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508118912, 3508118943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508118944, 3508120063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508120064, 3508120319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508120320, 3508123935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508123936, 3508123951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508123952, 3508126239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508126240, 3508126255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508126256, 3508126463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508126464, 3508126719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508126720, 3508130815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508130816, 3508130831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508130832, 3508131135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508131136, 3508131199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508131200, 3508133119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508133120, 3508133247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508133248, 3508137631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508137632, 3508137647, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508137648, 3508137695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508137696, 3508137711, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508137712, 3508219903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508220928, 3508221951, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508221952, 3508222975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508222976, 3508223999, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508224000, 3508224255, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508224256, 3508243967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508243968, 3508244223, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508244224, 3508273407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508273408, 3508273663, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508273664, 3508274719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508274720, 3508274751, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508274752, 3508275199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508275200, 3508275327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508275328, 3508275455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508275456, 3508275487, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508275488, 3508276991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508276992, 3508277247, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508277248, 3508277487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508277488, 3508277503, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508277504, 3508278527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508278528, 3508278783, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508278784, 3508279039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508279040, 3508279295, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508279296, 3508279551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508279552, 3508279807, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508279808, 3508280063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508280064, 3508280319, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508280320, 3508280575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508280576, 3508280831, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508280832, 3508281087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508281088, 3508281343, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508281344, 3508281599, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508281600, 3508281855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508281856, 3508282047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508282048, 3508282111, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508282112, 3508282367, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508282368, 3508282591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508282592, 3508282623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508282624, 3508282879, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508282880, 3508283135, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508283136, 3508283391, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508283392, 3508283647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508283648, 3508283903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508283904, 3508284159, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508284160, 3508284415, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508284416, 3508284671, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508284672, 3508284735, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508284736, 3508284927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508284928, 3508284991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508284992, 3508285087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285088, 3508285095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285096, 3508285119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285120, 3508285151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285152, 3508285823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285824, 3508285855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285856, 3508285887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285888, 3508285951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508285952, 3508286015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286016, 3508286079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286080, 3508286111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286112, 3508286207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286208, 3508286463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286464, 3508286719, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286720, 3508286847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286848, 3508286863, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286864, 3508286911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286912, 3508286927, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286928, 3508286943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286944, 3508286975, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508286976, 3508287039, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287040, 3508287055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287056, 3508287063, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287064, 3508287103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287104, 3508287167, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287168, 3508287231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287232, 3508287263, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287264, 3508287295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287296, 3508287359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508287360, 3508287999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508288000, 3508288127, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508288128, 3508288255, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508288256, 3508288511, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508288512, 3508288767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508288768, 3508289023, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508289024, 3508289279, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508289280, 3508289343, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508289344, 3508289407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508289408, 3508289471, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508289472, 3508289535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508289536, 3508289791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508289792, 3508290847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508290848, 3508290879, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508290880, 3508290895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508290896, 3508290911, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508290912, 3508290927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508290928, 3508290943, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508290944, 3508291263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508291264, 3508291327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508291328, 3508292095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508292096, 3508292351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508292352, 3508292415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508292416, 3508292447, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508292448, 3508292863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508292864, 3508294143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508294144, 3508294271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508294272, 3508294335, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508294336, 3508295439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295440, 3508295487, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295488, 3508295519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295520, 3508295551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295552, 3508295615, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295616, 3508295631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295632, 3508295647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295648, 3508295679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295680, 3508295935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508295936, 3508295999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296000, 3508296015, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296016, 3508296095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296096, 3508296127, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296128, 3508296191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296192, 3508296319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296320, 3508296447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296448, 3508296479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296480, 3508296495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296496, 3508296543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296544, 3508296559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296560, 3508296671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296672, 3508296703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296704, 3508296767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296768, 3508296831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296832, 3508296959, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508296960, 3508297215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508297216, 3508297407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508297408, 3508297471, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508297472, 3508297727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508297728, 3508297791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508297792, 3508298047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298048, 3508298079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298080, 3508298111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298112, 3508298159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298160, 3508298207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298208, 3508298223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298224, 3508298239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298240, 3508298495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298496, 3508298559, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298560, 3508298623, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298624, 3508298655, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298656, 3508298687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298688, 3508298751, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508298752, 3508299007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508299008, 3508299263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508299264, 3508299519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508299520, 3508299647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508299648, 3508299679, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508299680, 3508299775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508299776, 3508300031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300032, 3508300287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300288, 3508300543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300544, 3508300799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300800, 3508300863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300864, 3508300879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300880, 3508300895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300896, 3508300911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508300912, 3508301631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508301632, 3508301663, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508301664, 3508301823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508301824, 3508301951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508301952, 3508301983, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508301984, 3508301999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302000, 3508302079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302080, 3508302111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302112, 3508302207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302208, 3508302223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302224, 3508302239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302240, 3508302255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302256, 3508302335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302336, 3508302463, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302464, 3508302527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302528, 3508302623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302624, 3508302687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508302688, 3508303359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303360, 3508303391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303392, 3508303423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303424, 3508303439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303440, 3508303455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303456, 3508303471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303472, 3508303487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303488, 3508303551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303552, 3508303615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303616, 3508303871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303872, 3508303903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303904, 3508303935, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303936, 3508303950, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303951, 3508303951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303952, 3508303967, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303968, 3508303983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508303984, 3508303999, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508304000, 3508304383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508304384, 3508304639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508304640, 3508304703, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508304704, 3508304927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508304928, 3508304943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508304944, 3508305151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305152, 3508305215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305216, 3508305247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305248, 3508305263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305264, 3508305791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305792, 3508305823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305824, 3508305855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305856, 3508305871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508305872, 3508306431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508306432, 3508306687, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508306688, 3508306943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508306944, 3508307199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508307200, 3508307455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508307456, 3508307711, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508307712, 3508308991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508308992, 3508309247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508309248, 3508310527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508310528, 3508310783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508310784, 3508311039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508311040, 3508311295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508311296, 3508311807, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508311808, 3508311967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508311968, 3508311983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508311984, 3508312063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508312064, 3508312319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508312320, 3508312575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508312576, 3508312591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508312592, 3508312831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508312832, 3508313343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508313344, 3508313599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508313600, 3508313855, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508313856, 3508314367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314368, 3508314623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314624, 3508314879, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314880, 3508314911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314912, 3508314927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314928, 3508314943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314944, 3508314959, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314960, 3508314975, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508314976, 3508315135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508315136, 3508315391, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508315392, 3508315647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508315648, 3508315903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508315904, 3508316159, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508316160, 3508316415, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508316416, 3508316671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508316672, 3508316927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508316928, 3508317183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317184, 3508317199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317200, 3508317207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317208, 3508317231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317232, 3508317247, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317248, 3508317375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317376, 3508317439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317440, 3508317695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317696, 3508317951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508317952, 3508318463, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508318464, 3508318719, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508318720, 3508318975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508318976, 3508319487, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508319488, 3508319743, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508319744, 3508319999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508320000, 3508320255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508320256, 3508320383, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508320384, 3508320511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508320512, 3508320527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508320528, 3508320543, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508320544, 3508320767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508320768, 3508321791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508321792, 3508321823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508321824, 3508321855, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508321856, 3508321871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508321872, 3508321887, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508321888, 3508322111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322112, 3508322143, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322144, 3508322175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322176, 3508322191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322192, 3508322239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322240, 3508322303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322304, 3508322559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322560, 3508322815, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508322816, 3508323071, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508323072, 3508323135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508323136, 3508323327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508323328, 3508323583, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508323584, 3508323839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508323840, 3508324095, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508324096, 3508324351, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508324352, 3508324607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508324608, 3508324863, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508324864, 3508325119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508325120, 3508325375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508325376, 3508325471, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508325472, 3508325503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508325504, 3508325567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508325568, 3508325631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508325632, 3508325887, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508325888, 3508326399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508326400, 3508326655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508326656, 3508326911, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508326912, 3508327167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508327168, 3508327679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508327680, 3508327935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508327936, 3508328447, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508328448, 3508328703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508328704, 3508329471, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508329472, 3508329727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508329728, 3508329983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508329984, 3508330495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508330496, 3508331263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331264, 3508331519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331520, 3508331583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331584, 3508331711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331712, 3508331743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331744, 3508331775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331776, 3508331807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331808, 3508331839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331840, 3508331871, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508331872, 3508332031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508332032, 3508332287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508332288, 3508332543, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508332544, 3508332799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508332800, 3508333055, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508333056, 3508333183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508333184, 3508333311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508333312, 3508333823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508333824, 3508333951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508333952, 3508334079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508334080, 3508334207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508334208, 3508334335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508334336, 3508334463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508334464, 3508334527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508334528, 3508334591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508334592, 3508334847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508334848, 3508335103, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508335104, 3508335359, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508335360, 3508335615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508335616, 3508336127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508336128, 3508336383, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508336384, 3508336639, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508336640, 3508336895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508336896, 3508337151, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508337152, 3508337663, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508337664, 3508337919, N'KR', N'Korea, Republic of') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508337920, 3508338175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508338176, 3508338303, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508338304, 3508338335, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508338336, 3508338367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508338368, 3508338399, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508338400, 3508338431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508338432, 3508338687, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508338688, 3508404223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508404224, 3508761120, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508761121, 3508761136, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508761137, 3508761184, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508761185, 3508761200, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508761201, 3508780079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508780080, 3508780111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508780112, 3508780623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508780624, 3508780639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3508780640, 3509141503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509157888, 3509166079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509166080, 3509215231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509215232, 3509223423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509223424, 3509326271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509326272, 3509326287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509326288, 3509327695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509327696, 3509327711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509327712, 3509329407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509329408, 3509329663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509329664, 3509346303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509354496, 3509387263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509387264, 3509420031, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509420032, 3509518335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509518336, 3509583871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509583872, 3509731327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509731328, 3509739519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509739520, 3509773991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509773992, 3509774003, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774004, 3509774120, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774121, 3509774135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774136, 3509774138, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774139, 3509774163, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774164, 3509774169, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774170, 3509774185, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774186, 3509774263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774264, 3509774295, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774296, 3509774327, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774328, 3509774575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774576, 3509774591, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509774592, 3509775104, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775105, 3509775120, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775121, 3509775296, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775297, 3509775312, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775313, 3509775328, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775329, 3509775344, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775345, 3509775488, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775489, 3509775520, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775521, 3509775536, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775537, 3509775552, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775553, 3509775568, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775569, 3509775584, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775585, 3509775614, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775615, 3509775616, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775617, 3509775648, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775649, 3509775664, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775665, 3509775792, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775793, 3509775870, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775871, 3509775871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775872, 3509775879, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775880, 3509775943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775944, 3509775951, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775952, 3509775967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775968, 3509775975, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775976, 3509775983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509775984, 3509776128, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776129, 3509776192, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776193, 3509776224, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776225, 3509776256, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776257, 3509776288, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776289, 3509776352, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776353, 3509776382, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776383, 3509776393, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776394, 3509776432, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776433, 3509776679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776680, 3509776779, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776780, 3509776884, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776885, 3509776894, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776895, 3509776895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509776896, 3509777151, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509777152, 3509777449, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509777450, 3509777545, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509777546, 3509777584, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509777585, 3509777648, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509777649, 3509778207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509778208, 3509778239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509778240, 3509846015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509846016, 3509977087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3509977088, 3510020095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510020096, 3510021119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510021120, 3510239231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510239232, 3510240703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510240704, 3510240735, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510240736, 3510240767, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510240768, 3510241023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510241024, 3510241063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510241064, 3510241071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510241072, 3510242303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510242304, 3510242559, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510242560, 3510244863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510244864, 3510245375, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510245376, 3510245631, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510245632, 3510246399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510246400, 3510246655, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510246656, 3510246735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510246736, 3510246767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510246768, 3510249471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510249472, 3510249983, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510249984, 3510251007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510251008, 3510251263, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510251264, 3510251519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510251520, 3510252799, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510252800, 3510253311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510253312, 3510253567, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510253568, 3510253631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510253632, 3510254079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510254080, 3510254591, N'TO', N'Tonga') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510254592, 3510254847, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510254848, 3510255103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510255104, 3510255359, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510255360, 3510257663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510257664, 3510258175, N'TO', N'Tonga') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510258176, 3510258943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510258944, 3510259199, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510259200, 3510259711, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510259712, 3510260223, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510260224, 3510261503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510261504, 3510261759, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510261760, 3510262783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510262784, 3510263039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510263040, 3510264063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510264064, 3510264319, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510264320, 3510264575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510264576, 3510264831, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510264832, 3510265855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510265856, 3510266111, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510266112, 3510268671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510268672, 3510268927, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510268928, 3510269823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510269824, 3510269951, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510269952, 3510270719, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510270720, 3510270975, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510270976, 3510271999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510272000, 3510284423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510284424, 3510284431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510284432, 3510308863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510312960, 3510317055, N'A1', N'Anonymous Proxy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510321152, 3510321663, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510321664, 3510321919, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510321920, 3510322175, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510322176, 3510323199, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510323200, 3510324223, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510324224, 3510325247, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510325248, 3510326271, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510326272, 3510327295, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510327296, 3510328319, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510328320, 3510328575, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510328576, 3510328831, N'MS', N'Montserrat') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510328832, 3510329599, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510329600, 3510329855, N'MS', N'Montserrat') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510329856, 3510331391, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510331392, 3510331903, N'DM', N'Dominica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510331904, 3510333439, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510337536, 3510338436, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510338437, 3510338452, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510338453, 3510468631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468632, 3510468639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468640, 3510468719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468720, 3510468727, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468728, 3510468759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468760, 3510468767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468768, 3510468847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468848, 3510468855, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468856, 3510468863, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468864, 3510468895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468896, 3510468903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468904, 3510468911, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510468912, 3510469023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469024, 3510469039, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469040, 3510469055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469056, 3510469063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469064, 3510469071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469072, 3510469087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469088, 3510469095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469096, 3510469103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469104, 3510469119, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469120, 3510469167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469168, 3510469175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469176, 3510469183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469184, 3510469191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469192, 3510469199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469200, 3510469223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469224, 3510469231, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469232, 3510469247, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469248, 3510469263, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469264, 3510469279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469280, 3510469295, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469296, 3510469343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469344, 3510469351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469352, 3510469359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469360, 3510469367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469368, 3510469375, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469376, 3510469399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469400, 3510469407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469408, 3510469487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469488, 3510469495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469496, 3510469519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469520, 3510469527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469528, 3510469567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469568, 3510469575, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469576, 3510469599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469600, 3510469607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469608, 3510469615, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469616, 3510469623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469624, 3510469631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469632, 3510469719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469720, 3510469727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469728, 3510469743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469744, 3510469751, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469752, 3510469767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469768, 3510469775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469776, 3510469815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469816, 3510469831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469832, 3510469855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469856, 3510469863, N'UM', N'United States Minor Outlying Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469864, 3510469871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469872, 3510469887, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469888, 3510469895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469896, 3510469903, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469904, 3510469919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469920, 3510469927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469928, 3510469975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469976, 3510469983, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469984, 3510469991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510469992, 3510469999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470000, 3510470031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470032, 3510470039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470040, 3510470047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470048, 3510470055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470056, 3510470063, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470064, 3510470143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470144, 3510470151, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470152, 3510470159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470160, 3510470175, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470176, 3510470183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470184, 3510470295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470296, 3510470319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470320, 3510470327, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470328, 3510470351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470352, 3510470359, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470360, 3510470367, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470368, 3510470375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470376, 3510470383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470384, 3510470455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470456, 3510470463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470464, 3510470471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470472, 3510470623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470624, 3510470631, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470632, 3510470647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470648, 3510470655, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470656, 3510470743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470744, 3510470751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470752, 3510470767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470768, 3510470775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470776, 3510470783, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470784, 3510470799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470800, 3510470807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470808, 3510470815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470816, 3510470831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470832, 3510470855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470856, 3510470863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470864, 3510470871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470872, 3510470879, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470880, 3510470927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470928, 3510470935, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470936, 3510470959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470960, 3510470975, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510470976, 3510470999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471000, 3510471007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471008, 3510471039, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471040, 3510471119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471120, 3510471135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471136, 3510471183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471184, 3510471199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471200, 3510471207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471208, 3510471215, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471216, 3510471223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471224, 3510471231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471232, 3510471311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471312, 3510471319, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471320, 3510471407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471408, 3510471415, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471416, 3510471431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471432, 3510471439, N'AU', N'Australia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471440, 3510471455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471456, 3510471487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471488, 3510471511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471512, 3510471519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471520, 3510471535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471536, 3510471607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471608, 3510471615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471616, 3510471639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471640, 3510471647, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471648, 3510471703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471704, 3510471711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471712, 3510471751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471752, 3510471759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471760, 3510471791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471792, 3510471799, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471800, 3510471839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471840, 3510471847, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471848, 3510471871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471872, 3510471887, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471888, 3510471911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471912, 3510471919, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471920, 3510471951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471952, 3510471959, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471960, 3510471991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510471992, 3510471999, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472000, 3510472007, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472008, 3510472111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472112, 3510472119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472120, 3510472191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472192, 3510472207, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472208, 3510472215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472216, 3510472223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472224, 3510472231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472232, 3510472239, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472240, 3510472295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472296, 3510472303, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472304, 3510472447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472448, 3510472463, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472464, 3510472471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472472, 3510472479, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472480, 3510472511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472512, 3510472575, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472576, 3510472607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472608, 3510472631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472632, 3510472671, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472672, 3510472735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472736, 3510472743, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472744, 3510472751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472752, 3510472767, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472768, 3510472792, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472793, 3510472800, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472801, 3510472831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472832, 3510472919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472920, 3510472927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510472928, 3510473031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473032, 3510473039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473040, 3510473055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473056, 3510473071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473072, 3510473087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473088, 3510473095, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473096, 3510473103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473104, 3510473119, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473120, 3510473135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473136, 3510473143, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473144, 3510473151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473152, 3510473159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473160, 3510473175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473176, 3510473183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473184, 3510473199, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473200, 3510473215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473216, 3510473223, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473224, 3510473231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473232, 3510473239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473240, 3510473247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473248, 3510473343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473344, 3510473383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473384, 3510473407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473408, 3510473447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473448, 3510473463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473464, 3510473471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473472, 3510473511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473512, 3510473607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473608, 3510473615, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473616, 3510473623, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473624, 3510473647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473648, 3510473655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473656, 3510473695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473696, 3510473703, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510473704, 3510474039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474040, 3510474047, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474048, 3510474239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474240, 3510474271, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474272, 3510474287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474288, 3510474295, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474296, 3510474431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474432, 3510474447, N'TC', N'Turks and Caicos Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474448, 3510474479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474480, 3510474511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474512, 3510474591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474592, 3510474599, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474600, 3510474607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474608, 3510474615, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474616, 3510474711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474712, 3510474719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474720, 3510474783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474784, 3510474799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474800, 3510474871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474872, 3510474879, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474880, 3510474895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474896, 3510474903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474904, 3510474935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474936, 3510474943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510474944, 3510475151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510475152, 3510475159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510475160, 3510475167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510475168, 3510477063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477064, 3510477071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477072, 3510477087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477088, 3510477111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477112, 3510477311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477312, 3510477319, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477320, 3510477327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477328, 3510477335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477336, 3510477343, N'MO', N'Macau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477344, 3510477375, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477376, 3510477487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477488, 3510477495, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477496, 3510477503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477504, 3510477519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477520, 3510477535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477536, 3510477543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477544, 3510477815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477816, 3510477823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477824, 3510477903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477904, 3510477911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477912, 3510477919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477920, 3510477927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477928, 3510477975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477976, 3510477983, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510477984, 3510478007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478008, 3510478015, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478016, 3510478023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478024, 3510478127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478128, 3510478135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478136, 3510478143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478144, 3510478175, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478176, 3510478231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478232, 3510478239, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478240, 3510478271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478272, 3510478279, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478280, 3510478311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478312, 3510478319, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478320, 3510478495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478496, 3510478527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478528, 3510478535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478536, 3510478543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478544, 3510478551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478552, 3510478559, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478560, 3510478567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478568, 3510478591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478592, 3510478599, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478600, 3510478631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478632, 3510478639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478640, 3510478655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478656, 3510478663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478664, 3510478671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478672, 3510478719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478720, 3510478735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478736, 3510478751, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478752, 3510478775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478776, 3510478783, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478784, 3510478855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478856, 3510478863, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478864, 3510478903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478904, 3510478919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478920, 3510478943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478944, 3510478951, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510478952, 3510479095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479096, 3510479103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479104, 3510479359, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479360, 3510479367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479368, 3510479375, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479376, 3510479407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479408, 3510479415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479416, 3510479439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479440, 3510479447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479448, 3510479455, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479456, 3510479503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479504, 3510479511, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479512, 3510479519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479520, 3510479535, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479536, 3510479575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479576, 3510479583, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479584, 3510479791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479792, 3510479799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479800, 3510479831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479832, 3510479839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479840, 3510479855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479856, 3510479863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479864, 3510479879, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479880, 3510479887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479888, 3510479903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479904, 3510479919, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479920, 3510479935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479936, 3510479943, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479944, 3510479951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479952, 3510479959, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479960, 3510479967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479968, 3510479975, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479976, 3510479991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510479992, 3510479999, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480000, 3510480047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480048, 3510480055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480056, 3510480103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480104, 3510480111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480112, 3510480119, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480120, 3510480415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480416, 3510480423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480424, 3510480431, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480432, 3510480439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480440, 3510480447, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480448, 3510480527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480528, 3510480535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480536, 3510480543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480544, 3510480575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480576, 3510480671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480672, 3510480735, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480736, 3510480815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480816, 3510480823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480824, 3510480839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480840, 3510480847, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480848, 3510480959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480960, 3510480967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480968, 3510480991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510480992, 3510481023, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481024, 3510481191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481192, 3510481199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481200, 3510481215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481216, 3510481231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481232, 3510481311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481312, 3510481319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481320, 3510481359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481360, 3510481375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481376, 3510481407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481408, 3510481415, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481416, 3510481679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481680, 3510481687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481688, 3510481711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481712, 3510481719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481720, 3510481727, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481728, 3510481743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481744, 3510481855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481856, 3510481871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481872, 3510481919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481920, 3510481927, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481928, 3510481935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510481936, 3510482111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510482112, 3510482143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510482144, 3510482151, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510482152, 3510501375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510534144, 3510559255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510559256, 3510559263, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510559264, 3510559327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510559328, 3510559359, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510559360, 3510897442, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510897443, 3510897443, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510897444, 3510935551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510935552, 3510943743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3510943744, 3511140351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511140352, 3511156735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511156736, 3511275615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511275616, 3511275631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511275632, 3511279743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511279744, 3511279775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511279776, 3511281087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511281088, 3511281119, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511281120, 3511282031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511282032, 3511282047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511282048, 3511282095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511282096, 3511282111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511282112, 3511286687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511286688, 3511286703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511286704, 3511287295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511287296, 3511287423, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511287424, 3511331199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511331200, 3511331231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511331232, 3511335231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511335232, 3511335263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511335264, 3511335295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511335296, 3511335423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511335424, 3511419951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511419952, 3511419959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511419960, 3511611135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511611136, 3511611391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511611392, 3511812095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511812096, 3511844863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511844864, 3511934927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511934928, 3511934935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3511934936, 3512139775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512139776, 3512156159, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512156160, 3512172543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512172544, 3512176639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512176640, 3512188927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512193024, 3512197119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512197120, 3512198703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512198704, 3512198719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512198720, 3512205311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512205312, 3512205567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512205568, 3512205823, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512205824, 3512206079, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512206080, 3512206335, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512206336, 3512207103, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512207104, 3512207231, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512207232, 3512207359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512207360, 3512209407, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512209408, 3512210943, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512210944, 3512211199, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512211200, 3512211455, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512211456, 3512221439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512221440, 3512221471, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512221472, 3512221695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512221696, 3512221759, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512221760, 3512221791, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512221792, 3512221951, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512221952, 3512222207, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512222208, 3512222239, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512222240, 3512222271, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512222272, 3512222335, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512222336, 3512222463, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512222464, 3512222975, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512222976, 3512223231, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512223232, 3512223487, N'LC', N'Saint Lucia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512223488, 3512223743, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512223744, 3512225791, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512225792, 3512227839, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512227840, 3512229887, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512229888, 3512230143, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512230144, 3512230271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512230272, 3512230287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512230288, 3512230399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512230400, 3512230431, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512230432, 3512230911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512230912, 3512231167, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512231168, 3512231199, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512231200, 3512231295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512231296, 3512231423, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512231424, 3512231679, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512231680, 3512231935, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512231936, 3512231967, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512231968, 3512232063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512232064, 3512232127, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512232128, 3512232191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512232192, 3512232223, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512232224, 3512232319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512232320, 3512232351, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512232352, 3512233215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512233216, 3512233471, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512233472, 3512233503, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512233504, 3512233599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512233600, 3512233631, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512233632, 3512233727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512233728, 3512233983, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512233984, 3512236031, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512236032, 3512236287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512236288, 3512237311, N'MR', N'Mauritania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512237312, 3512237823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512237824, 3512238079, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512238080, 3512240127, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512240128, 3512241663, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512241664, 3512242175, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512242176, 3512242431, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512242432, 3512242687, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512242688, 3512244991, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512244992, 3512246015, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512246016, 3512246783, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512246784, 3512247039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512247040, 3512247295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512247296, 3512248319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512248320, 3512248863, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512248864, 3512248927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512248928, 3512248959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512248960, 3512249023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512249024, 3512249055, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512249056, 3512249087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512249088, 3512249343, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512249344, 3512256511, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512256512, 3512258559, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512258560, 3512260607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512260608, 3512261631, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512261632, 3512262655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512262656, 3512263679, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512263680, 3512264703, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512264704, 3512267263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512267264, 3512268031, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512268032, 3512268543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512268544, 3512268799, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512268800, 3512269055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512269056, 3512269311, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512269312, 3512269567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512269568, 3512269823, N'HN', N'Honduras') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512269824, 3512270847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512270848, 3512336383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512336384, 3512369151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512369152, 3512385535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512385536, 3512405919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512405920, 3512405927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512405928, 3512418303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512418304, 3512451071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512451072, 3512467455, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512467456, 3512534015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512534016, 3512534079, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512534080, 3512535679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512535680, 3512535743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512535744, 3512535935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512535936, 3512536063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536064, 3512536191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536192, 3512536319, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536320, 3512536383, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536384, 3512536447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536448, 3512536511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536512, 3512536575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536576, 3512536703, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512536704, 3512537087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512537088, 3512537151, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512537152, 3512537215, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512537216, 3512537599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512537600, 3512537855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512537856, 3512537983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512537984, 3512538111, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512538112, 3512538495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512538496, 3512538623, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512538624, 3512539007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512539008, 3512539135, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512539136, 3512539327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512539328, 3512539391, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512539392, 3512539903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512539904, 3512540031, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512540032, 3512540287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512540288, 3512540295, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512540296, 3512540351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512540352, 3512540415, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512540416, 3512541055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541056, 3512541119, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541120, 3512541231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541232, 3512541247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541248, 3512541279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541280, 3512541295, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541296, 3512541439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541440, 3512541583, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541584, 3512541599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541600, 3512541615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541616, 3512541631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541632, 3512541695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541696, 3512541921, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512541922, 3512542207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512542208, 3512542239, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512542240, 3512542719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512542720, 3512542751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512542752, 3512542975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512542976, 3512543023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512543024, 3512543743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512543744, 3512543903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512543904, 3512543999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544000, 3512544063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544064, 3512544071, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544072, 3512544079, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544080, 3512544087, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544088, 3512544095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544096, 3512544103, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544104, 3512544111, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544112, 3512544255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544256, 3512544335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544336, 3512544383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544384, 3512544447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544448, 3512544511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544512, 3512544527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544528, 3512544575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544576, 3512544639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544640, 3512544767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544768, 3512544799, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544800, 3512544831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544832, 3512544911, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512544912, 3512545023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545024, 3512545151, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545152, 3512545407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545408, 3512545439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545440, 3512545471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545472, 3512545663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545664, 3512545759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545760, 3512545791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545792, 3512545935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545936, 3512545983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512545984, 3512546047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546048, 3512546175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546176, 3512546303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546304, 3512546463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546464, 3512546559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546560, 3512546591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546592, 3512546607, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546608, 3512546623, N'JP', N'Japan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546624, 3512546631, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546632, 3512546687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546688, 3512546815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546816, 3512546879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546880, 3512546943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512546944, 3512547071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547072, 3512547103, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547104, 3512547231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547232, 3512547263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547264, 3512547327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547328, 3512547359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547360, 3512547391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547392, 3512547455, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547456, 3512547583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547584, 3512547839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547840, 3512547871, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512547872, 3512548095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548096, 3512548143, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548144, 3512548351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548352, 3512548479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548480, 3512548671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548672, 3512548703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548704, 3512548735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548736, 3512548863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548864, 3512548991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512548992, 3512549087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549088, 3512549119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549120, 3512549247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549248, 3512549311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549312, 3512549375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549376, 3512549567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549568, 3512549631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549632, 3512549695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549696, 3512549727, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549728, 3512549759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549760, 3512549887, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512549888, 3512550015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550016, 3512550031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550032, 3512550143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550144, 3512550175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550176, 3512550255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550256, 3512550271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550272, 3512550399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550400, 3512550415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550416, 3512550911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512550912, 3512551167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512551168, 3512551423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512551424, 3512551551, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512551552, 3512552191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512552192, 3512552447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512552448, 3512552559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512552560, 3512552703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512552704, 3512552959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512552960, 3512553111, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512553112, 3512553471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512553472, 3512553663, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512553664, 3512553727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512553728, 3512553855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512553856, 3512553983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512553984, 3512554751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512554752, 3512554767, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512554768, 3512555775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512555776, 3512556287, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556288, 3512556415, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556416, 3512556479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556480, 3512556543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556544, 3512556799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556800, 3512556831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556832, 3512556847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556848, 3512556863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556864, 3512556927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512556928, 3512557055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512557056, 3512557311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512557312, 3512557567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512557568, 3512557911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512557912, 3512557919, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512557920, 3512557951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512557952, 3512558015, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558016, 3512558079, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558080, 3512558591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558592, 3512558719, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558720, 3512558783, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558784, 3512558847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558848, 3512558911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558912, 3512558959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558960, 3512558975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512558976, 3512559039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512559040, 3512559071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512559072, 3512559103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512559104, 3512559135, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512559136, 3512559231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512559232, 3512559359, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512559360, 3512560127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512560128, 3512560257, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512560258, 3512560383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512560384, 3512560511, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512560512, 3512561151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561152, 3512561279, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561280, 3512561407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561408, 3512561535, N'HK', N'Hong Kong') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561536, 3512561663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561664, 3512561727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561728, 3512561791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561792, 3512561919, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512561920, 3512562175, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562176, 3512562239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562240, 3512562271, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562272, 3512562303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562304, 3512562367, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562368, 3512562431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562432, 3512562463, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562464, 3512562543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562544, 3512562559, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562560, 3512562943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512562944, 3512563071, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563072, 3512563135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563136, 3512563199, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563200, 3512563391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563392, 3512563455, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563456, 3512563711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563712, 3512563727, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563728, 3512563743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563744, 3512563775, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563776, 3512563807, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563808, 3512563967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512563968, 3512564095, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512564096, 3512564223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512564224, 3512564479, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512564480, 3512565119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512565120, 3512565247, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512565248, 3512565503, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512565504, 3512566527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512566528, 3512566655, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512566656, 3512567199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512567200, 3512567231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512567232, 3512567295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512567296, 3512567423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512567424, 3512567935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512567936, 3512568063, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512568064, 3512569087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512569088, 3512569215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512569216, 3512569983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512569984, 3512569999, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512570000, 3512570015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512570016, 3512570239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512570240, 3512570367, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512570368, 3512571775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512571776, 3512571903, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512571904, 3512571967, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512571968, 3512572927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512572928, 3512573055, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573056, 3512573151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573152, 3512573183, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573184, 3512573311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573312, 3512573375, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573376, 3512573439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573440, 3512573695, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573696, 3512573727, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573728, 3512573759, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573760, 3512573791, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573792, 3512573823, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573824, 3512573855, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573856, 3512573887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512573888, 3512574207, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512574208, 3512574719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512574720, 3512574975, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512574976, 3512575551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512575552, 3512575615, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512575616, 3512575743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512575744, 3512575999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576000, 3512576031, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576032, 3512576063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576064, 3512576127, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576128, 3512576255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576256, 3512576511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576512, 3512576767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576768, 3512576895, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512576896, 3512577023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577024, 3512577087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577088, 3512577279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577280, 3512577343, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577344, 3512577407, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577408, 3512577439, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577440, 3512577535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577536, 3512577599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577600, 3512577631, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577632, 3512577663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577664, 3512577727, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577728, 3512577791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577792, 3512577855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512577856, 3512578047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512578048, 3512578111, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512578112, 3512578559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512578560, 3512578720, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512578721, 3512578815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512578816, 3512578943, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512578944, 3512579071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512579072, 3512579199, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512579200, 3512579327, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512579328, 3512579455, N'KR', N'Korea, Republic of') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512579456, 3512579583, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512579584, 3512579839, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512579840, 3512579967, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512579968, 3512580031, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580032, 3512580095, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580096, 3512580223, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580224, 3512580287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580288, 3512580351, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580352, 3512580367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580368, 3512580415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580416, 3512580479, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580480, 3512580863, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580864, 3512580991, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512580992, 3512581055, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512581056, 3512581119, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512581120, 3512581247, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512581248, 3512581375, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512581376, 3512582143, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582144, 3512582207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582208, 3512582223, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582224, 3512582463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582464, 3512582527, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582528, 3512582655, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582656, 3512582719, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582720, 3512582783, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582784, 3512582911, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512582912, 3512583295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512583296, 3512583679, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512583680, 3512584447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512584448, 3512584479, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512584480, 3512585407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512585408, 3512585439, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512585440, 3512585887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512585888, 3512585919, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512585920, 3512585983, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512585984, 3512586175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512586176, 3512586239, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512586240, 3512586495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512586496, 3512586687, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512586688, 3512586751, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512586752, 3512587295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512587296, 3512587327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512587328, 3512587647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512587648, 3512587775, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512587776, 3512587903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512587904, 3512588031, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512588032, 3512588159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512588160, 3512588191, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512588192, 3512588223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512588224, 3512588287, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512588288, 3512588415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512588416, 3512588543, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512588544, 3512589407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512589408, 3512589567, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512589568, 3512589887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512589888, 3512589951, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512589952, 3512590015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512590016, 3512590079, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512590080, 3512590143, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512590144, 3512590207, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512590208, 3512590847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512590848, 3512590975, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512590976, 3512591103, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512591104, 3512591359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512591360, 3512592383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512592384, 3512592895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512592896, 3512593151, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593152, 3512593279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593280, 3512593407, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593408, 3512593471, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593472, 3512593511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593512, 3512593519, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593520, 3512593663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593664, 3512593791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593792, 3512593887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593888, 3512593919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512593920, 3512594047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512594048, 3512594175, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512594176, 3512594431, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512594432, 3512594495, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512594496, 3512594559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512594560, 3512594687, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512594688, 3512594943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512594944, 3512595007, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512595008, 3512595199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512595200, 3512595455, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512595456, 3512595711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512595712, 3512595743, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512595744, 3512595775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512595776, 3512595839, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512595840, 3512596223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512596224, 3512596479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512596480, 3512596991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512596992, 3512597247, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512597248, 3512597759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512597760, 3512598015, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512598016, 3512598079, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512598080, 3512598143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512598144, 3512598271, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512598272, 3512598527, N'PH', N'Philippines') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512598528, 3512647679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512647680, 3512655871, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512655872, 3512690591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512690592, 3512690623, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512690624, 3512695839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512695840, 3512695871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512695872, 3512696831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512696832, 3512699647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512699648, 3512699775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512699776, 3512699967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512699968, 3512700079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512700080, 3512700143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512700144, 3512700159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512700160, 3512705023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512705024, 3512844287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512844288, 3512852479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512852480, 3512856575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512860672, 3512891135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512891136, 3512891167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512891168, 3512891199, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512891200, 3512891231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512891232, 3512891263, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512891264, 3512891327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512891328, 3512891359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512891360, 3512983551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512983552, 3512987647, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3512987648, 3513188351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513188352, 3513204735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513204736, 3513270271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513270272, 3513286655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513286656, 3513294847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513294848, 3513298943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513303040, 3513368575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513368576, 3513371135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513371136, 3513371391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513371392, 3513376767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513376768, 3513475071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513475072, 3513483263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513483264, 3513670911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513670912, 3513671167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513671168, 3513778175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513778176, 3513794559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3513794560, 3514007551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514007552, 3514040319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514040320, 3514335360, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335361, 3514335376, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335377, 3514335384, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335385, 3514335392, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335393, 3514335600, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335601, 3514335608, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335609, 3514335616, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335617, 3514335680, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335681, 3514335688, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335689, 3514335816, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335817, 3514335824, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335825, 3514335832, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335833, 3514335840, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335841, 3514335856, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335857, 3514335864, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335865, 3514335872, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514335873, 3514336280, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336281, 3514336288, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336289, 3514336408, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336409, 3514336416, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336417, 3514336464, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336465, 3514336472, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336473, 3514336496, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336497, 3514336504, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336505, 3514336688, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336689, 3514336704, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336705, 3514336768, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336769, 3514336776, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336777, 3514336992, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514336993, 3514337000, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514337001, 3514337152, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514337153, 3514337160, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514337161, 3514337168, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514337169, 3514337224, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514337225, 3514337232, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514337233, 3514348664, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514348665, 3514348672, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514348673, 3514348720, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514348721, 3514348728, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514348729, 3514348992, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514348993, 3514349040, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349041, 3514349056, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349057, 3514349064, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349065, 3514349104, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349105, 3514349112, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349113, 3514349144, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349145, 3514349152, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349153, 3514349296, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349297, 3514349304, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514349305, 3514367999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514368000, 3514433535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514433536, 3514589439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514589440, 3514589695, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514589696, 3514590207, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514590208, 3514590719, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514590720, 3514591103, N'SV', N'El Salvador') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514591104, 3514591487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514591488, 3514592255, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514592256, 3514597375, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514597376, 3514763423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514763424, 3514763439, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514763440, 3514763711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514763712, 3514763727, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514763728, 3514763775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514763776, 3514763791, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514763792, 3514764047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514764048, 3514764063, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514764064, 3514765823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514765824, 3514765855, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514765856, 3514765919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514765920, 3514765951, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514765952, 3514766111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766112, 3514766143, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766144, 3514766207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766208, 3514766271, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766272, 3514766303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766304, 3514766335, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766336, 3514766463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766464, 3514766495, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766496, 3514766879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766880, 3514766911, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514766912, 3514767199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514767200, 3514767231, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514767232, 3514767455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514767456, 3514767487, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514767488, 3514768127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514768128, 3514768191, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514768192, 3514769023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514769024, 3514769151, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514769152, 3514769215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514769216, 3514769279, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514769280, 3514775295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514775296, 3514775551, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514775552, 3514776063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514776064, 3514776319, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514776320, 3514776343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514776344, 3514776351, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514776352, 3514776407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514776408, 3514776415, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514776416, 3514781695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514781696, 3514782719, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514782720, 3514787583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514787584, 3514787839, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514787840, 3514791679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514791680, 3514793983, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514793984, 3514826751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514826752, 3514843135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514843136, 3514844151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514844152, 3514844159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3514844160, 3515145087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515145088, 3515145151, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515145152, 3515154943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515154944, 3515155199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515155200, 3515155455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515155456, 3515155711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515155712, 3515166719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515166720, 3515166975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515166976, 3515170991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515170992, 3515170999, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515171000, 3515185151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515185152, 3515185407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515185408, 3515301887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515301888, 3515318271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515318272, 3515358975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515358976, 3515359231, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515359232, 3515452775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515452776, 3515452783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515452784, 3515453055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515453056, 3515453071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515453072, 3515454399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515454400, 3515454463, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515454464, 3515455039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515455040, 3515455071, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515455072, 3515596799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515596800, 3515613183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515613184, 3515629567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515629568, 3515631615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515631616, 3515631623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515631624, 3515631647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515631648, 3515631655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515631656, 3515631671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515631672, 3515631743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515631744, 3515631775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515631776, 3515632191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632192, 3515632223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632224, 3515632391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632392, 3515632399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632400, 3515632407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632408, 3515632415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632416, 3515632479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632480, 3515632495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632496, 3515632639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515632640, 3515633663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515633664, 3515642271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515642272, 3515642319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515642320, 3515898367, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515898368, 3515898623, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515898624, 3515913631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515913632, 3515913663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515913664, 3515955375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515955376, 3515955391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515955392, 3515955503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515955504, 3515955519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515955520, 3515955551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515955552, 3515955567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515955568, 3515956319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515956320, 3515956335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515956336, 3515956383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515956384, 3515956399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515956400, 3515965439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515965440, 3515973631, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3515973632, 3516039167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516039168, 3516071935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516071936, 3516139007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516139008, 3516139263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516139264, 3516153855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516153856, 3516162047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516162048, 3516170239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516170240, 3516203007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516203008, 3516334079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516334080, 3516342271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516342272, 3516351055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516351056, 3516351087, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516351088, 3516351095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516351096, 3516351103, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516351104, 3516351255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516351256, 3516351271, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516351272, 3516355663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516355664, 3516355679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516355680, 3516357631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516357632, 3516357887, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516357888, 3516358399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516358400, 3516366847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516366848, 3516370943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516370944, 3516514303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516514304, 3516530687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516530688, 3516899327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516899328, 3516899847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516899848, 3516899855, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516899856, 3516899871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516899872, 3516899887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516899888, 3516899903, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516899904, 3516899935, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516899936, 3516900015, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516900016, 3516900031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516900032, 3516900063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516900064, 3516900351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516900352, 3516900607, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516900608, 3516900863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516900864, 3516901119, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516901120, 3516901887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516901888, 3516902399, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516902400, 3516902655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516902656, 3516902911, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516902912, 3516903167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516903168, 3516903423, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516903424, 3516907519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3516907520, 3517038591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517038592, 3517054975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517054976, 3517095935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517095936, 3517100031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517100032, 3517112319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517112320, 3517116159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517116160, 3517116415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517116416, 3517120511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517120512, 3517179903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517179904, 3517179935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517179936, 3517179943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517179944, 3517179951, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517179952, 3517180031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180032, 3517180039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180040, 3517180047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180048, 3517180079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180080, 3517180087, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180088, 3517180135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180136, 3517180143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180144, 3517180207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180208, 3517180223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180224, 3517180295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180296, 3517180303, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180304, 3517180575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180576, 3517180583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180584, 3517180591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180592, 3517180935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180936, 3517180943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180944, 3517180951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180952, 3517180959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180960, 3517180975, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517180976, 3517181055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181056, 3517181071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181072, 3517181095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181096, 3517181103, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181104, 3517181111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181112, 3517181119, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181120, 3517181263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181264, 3517181279, N'JP', N'Japan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181280, 3517181303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181304, 3517181319, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181320, 3517181343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181344, 3517181351, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181352, 3517181359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181360, 3517181375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181376, 3517181383, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181384, 3517181431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181432, 3517181439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181440, 3517181519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181520, 3517181527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181528, 3517181543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181544, 3517181551, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181552, 3517181559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181560, 3517181567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181568, 3517181639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181640, 3517181648, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181649, 3517181679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181680, 3517181687, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181688, 3517181695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181696, 3517181823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181824, 3517181855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181856, 3517181887, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181888, 3517181895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181896, 3517181919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181920, 3517181927, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181928, 3517181935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181936, 3517181943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517181944, 3517183039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183040, 3517183055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183056, 3517183087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183088, 3517183103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183104, 3517183175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183176, 3517183183, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183184, 3517183223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183224, 3517183359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183360, 3517183455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183456, 3517183487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183488, 3517183535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183536, 3517183551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183552, 3517183559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183560, 3517183567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183568, 3517183607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183608, 3517183615, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183616, 3517183631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183632, 3517183663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183664, 3517183671, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183672, 3517183679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183680, 3517183711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183712, 3517183775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183776, 3517183783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183784, 3517183839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183840, 3517183871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517183872, 3517183999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184000, 3517184031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184032, 3517184047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184048, 3517184063, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184064, 3517184151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184152, 3517184159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184160, 3517184207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184208, 3517184223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184224, 3517184231, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184232, 3517184239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184240, 3517184255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184256, 3517184383, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184384, 3517184415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184416, 3517184431, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184432, 3517184559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184560, 3517184575, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184576, 3517184655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184656, 3517184663, N'MH', N'Marshall Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184664, 3517184679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184680, 3517184687, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184688, 3517184703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184704, 3517184711, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184712, 3517184727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184728, 3517184735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184736, 3517184847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184848, 3517184855, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184856, 3517184863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184864, 3517184879, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184880, 3517184951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184952, 3517184959, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517184960, 3517309951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517309952, 3517313023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517313024, 3517382655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517382656, 3517448191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517448192, 3517523167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517523168, 3517523183, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517523184, 3517523671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517523672, 3517523679, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517523680, 3517523935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517523936, 3517523951, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517523952, 3517526015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517530112, 3517546495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517546496, 3517562879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517562880, 3517596671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517596672, 3517596927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517596928, 3517597183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517597184, 3517598207, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517598208, 3517598463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517598464, 3517599679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517599680, 3517599743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517599744, 3517600767, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517600768, 3517601279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517601280, 3517603327, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517603328, 3517603583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517603584, 3517603615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517603616, 3517603647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517603648, 3517603839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517603840, 3517603967, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517603968, 3517604351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517604352, 3517604863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517604864, 3517605775, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517605776, 3517605791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517605792, 3517606911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517606912, 3517607935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517607936, 3517609759, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517609760, 3517609791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517609792, 3517609855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517609856, 3517610127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517610128, 3517610143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517610144, 3517610175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517610176, 3517610207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517610208, 3517610239, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517610240, 3517610495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517610496, 3517611007, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611008, 3517611263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611264, 3517611303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611304, 3517611311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611312, 3517611327, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611328, 3517611343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611344, 3517611351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611352, 3517611359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611360, 3517611383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611384, 3517611455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611456, 3517611463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611464, 3517611471, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611472, 3517611487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611488, 3517611503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517611504, 3517612031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517612032, 3517644799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517644800, 3517710335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517710336, 3517718527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517718528, 3517720207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517720208, 3517720223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517720224, 3517722879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517722880, 3517722887, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517722888, 3517722895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517722896, 3517722903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517722904, 3517722951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517722952, 3517722959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517722960, 3517723031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723032, 3517723039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723040, 3517723111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723112, 3517723119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723120, 3517723127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723128, 3517723135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723136, 3517723167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723168, 3517723199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723200, 3517723711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723712, 3517723727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723728, 3517723791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723792, 3517723799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723800, 3517723807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723808, 3517723815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723816, 3517723839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723840, 3517723871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723872, 3517723887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723888, 3517723895, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723896, 3517723903, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723904, 3517723919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723920, 3517723927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723928, 3517723935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723936, 3517723943, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723944, 3517723951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723952, 3517723959, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723960, 3517723967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723968, 3517723975, N'KH', N'Cambodia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723976, 3517723983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517723984, 3517724015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724016, 3517724135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724136, 3517724143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724144, 3517724167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724168, 3517724175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724176, 3517724183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724184, 3517724191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724192, 3517724215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724216, 3517724223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724224, 3517724239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724240, 3517724255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724256, 3517724263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724264, 3517724271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724272, 3517724287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724288, 3517724303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724304, 3517724351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724352, 3517724359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724360, 3517724375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724376, 3517724383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724384, 3517724399, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724400, 3517724407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724408, 3517724679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724680, 3517724687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724688, 3517724711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724712, 3517724727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724728, 3517724735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724736, 3517724751, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724752, 3517724791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724792, 3517724799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724800, 3517724815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724816, 3517724823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724824, 3517724855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724856, 3517724863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517724864, 3517725247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725248, 3517725279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725280, 3517725439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725440, 3517725447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725448, 3517725455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725456, 3517725463, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725464, 3517725727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725728, 3517725759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725760, 3517725791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725792, 3517725823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517725824, 3517726607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517726608, 3517726623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517726624, 3517726719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517726720, 3517978671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517978672, 3517978679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517978680, 3517989407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989408, 3517989415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989416, 3517989487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989488, 3517989503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989504, 3517989695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989696, 3517989727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989728, 3517989975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989976, 3517989983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517989984, 3517990023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517990024, 3517990031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517990032, 3517990911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517990912, 3517991423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3517991424, 3518014479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518014480, 3518014495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518014496, 3518019423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518019424, 3518019455, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518019456, 3518062591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518062592, 3518066687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518066688, 3518374719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518374720, 3518374783, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518374784, 3518380223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518380224, 3518380287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518380288, 3518381055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518381056, 3518381311, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518381312, 3518381439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518381440, 3518381567, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518381568, 3518381631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518381632, 3518381823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518381824, 3518382079, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518382080, 3518431231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518431232, 3518439423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518439424, 3518463999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518464000, 3518472191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518472192, 3518485407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518485408, 3518485423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518485424, 3518894439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518894440, 3518894447, N'TK', N'Tokelau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518894448, 3518929535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518929536, 3518929599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518929600, 3518948559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518948560, 3518948591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518948592, 3518949887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518949888, 3518949951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518949952, 3518995695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518995696, 3518995703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3518995704, 3519000351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519000352, 3519000359, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519000360, 3519061295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519061296, 3519061311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519061312, 3519234047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519234048, 3519250431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519250432, 3519320975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519320976, 3519320983, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519320984, 3519340543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519340544, 3519344639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519344640, 3519381503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519381504, 3519397887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519397888, 3519399935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519399936, 3519400191, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519400192, 3519401471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519401472, 3519401727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519401728, 3519406127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406128, 3519406151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406152, 3519406207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406208, 3519406215, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406216, 3519406255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406256, 3519406263, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406264, 3519406295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406296, 3519406303, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406304, 3519406335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406336, 3519406359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406360, 3519406375, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406376, 3519406383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406384, 3519406391, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406392, 3519406407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406408, 3519406479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406480, 3519406487, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406488, 3519406503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406504, 3519406511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406512, 3519406527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406528, 3519406559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406560, 3519406695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406696, 3519406831, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406832, 3519406847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519406848, 3519407103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407104, 3519407135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407136, 3519407199, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407200, 3519407215, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407216, 3519407351, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407352, 3519407359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407360, 3519407583, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407584, 3519407591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407592, 3519407599, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407600, 3519407607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407608, 3519407615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407616, 3519407623, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519407624, 3519409111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409112, 3519409119, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409120, 3519409135, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409136, 3519409295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409296, 3519409303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409304, 3519409327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409328, 3519409335, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409336, 3519409407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409408, 3519409423, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409424, 3519409439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409440, 3519409455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409456, 3519409599, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409600, 3519409615, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409616, 3519409807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409808, 3519409815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409816, 3519409919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409920, 3519409927, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409928, 3519409943, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409944, 3519409951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519409952, 3519410175, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519410176, 3519410279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519410280, 3519410287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519410288, 3519410943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519410944, 3519411199, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519411200, 3519411327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519411328, 3519411391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519411392, 3519411711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519411712, 3519411967, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519411968, 3519412223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519412224, 3519412519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519412520, 3519412527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519412528, 3519412735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519412736, 3519412751, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519412752, 3519412799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519412800, 3519412815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519412816, 3519413759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519413760, 3519414271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519414272, 3519463423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519463424, 3519465983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519465984, 3519467519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519467520, 3519475711, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519475712, 3519476223, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519476224, 3519479807, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519479808, 3519566871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519566872, 3519566879, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519566880, 3519566943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519566944, 3519566951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519566952, 3519567087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567088, 3519567096, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567097, 3519567679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567680, 3519567687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567688, 3519567727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567728, 3519567735, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567736, 3519567759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567760, 3519567767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567768, 3519567831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567832, 3519567863, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519567864, 3519568911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519568912, 3519568919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519568920, 3519568927, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519568928, 3519568991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519568992, 3519568999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569000, 3519569071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569072, 3519569079, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569080, 3519569103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569104, 3519569111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569112, 3519569127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569128, 3519569135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569136, 3519569727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569728, 3519569735, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519569736, 3519578415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519578416, 3519578431, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519578432, 3519579583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519579584, 3519579591, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519579592, 3519579967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519579968, 3519579983, N'CY', N'Cyprus') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519579984, 3519580159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519580160, 3519582207, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519582208, 3519582735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519582736, 3519582743, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519582744, 3519586303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519586304, 3519586559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519586560, 3519592447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519592448, 3519594495, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519594496, 3519676415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519676416, 3519700559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519700560, 3519700567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519700568, 3519700575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519700576, 3519700607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519700608, 3519702319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519702320, 3519702327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519702328, 3519709183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519709184, 3519741951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519741952, 3519758335, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519758336, 3519791103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519799296, 3519799871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519799872, 3519799903, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519799904, 3519805119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519805120, 3519805183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519805184, 3519873023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519873024, 3519877295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519877296, 3519877311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519877312, 3519879679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879680, 3519879687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879688, 3519879767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879768, 3519879775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879776, 3519879807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879808, 3519879815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879816, 3519879863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879864, 3519879871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519879872, 3519880767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519880768, 3519880831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519880832, 3519881375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519881376, 3519881407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519881408, 3519889407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519905792, 3519934463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519934464, 3519938559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3519938560, 3520071823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520071824, 3520071839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520071840, 3520074671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520074672, 3520074687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520074688, 3520074783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520074784, 3520074815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520074816, 3520074847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520074848, 3520074863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520074864, 3520075311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520075312, 3520075327, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520075328, 3520075743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520075744, 3520075775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520075776, 3520081295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520081296, 3520081311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520081312, 3520081455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520081456, 3520081471, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520081472, 3520081743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520081744, 3520081759, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520081760, 3520082151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520082152, 3520082167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520082168, 3520088447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520088448, 3520088463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520088464, 3520092991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520092992, 3520093007, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520093008, 3520100031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520100032, 3520100039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520100040, 3520105503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520105504, 3520105535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520105536, 3520106335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520106336, 3520106351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520106352, 3520112975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520112976, 3520112991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520112992, 3520114399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520114400, 3520114407, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520114408, 3520121519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520121520, 3520121535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520121536, 3520339967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520339968, 3520348159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520348160, 3520356351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520356352, 3520364543, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520364544, 3520450943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520450944, 3520450959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520450960, 3520454655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520454656, 3520462847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520462848, 3520625615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520625616, 3520625630, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520625631, 3520625879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520625880, 3520625887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520625888, 3520626687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520626688, 3520634879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520634880, 3520668695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668696, 3520668703, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668704, 3520668767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668768, 3520668799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668800, 3520668831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668832, 3520668863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668864, 3520668902, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668903, 3520668918, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668919, 3520668926, N'DK', N'Denmark') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520668927, 3520675839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520675840, 3520683743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520683744, 3520683759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520683760, 3520683791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520683792, 3520683807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520683808, 3520688399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520688400, 3520688431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520688432, 3520691583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520691584, 3520691591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520691592, 3520692223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520692224, 3520749871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520749872, 3520749879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520749880, 3520937983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520937984, 3520954367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520954368, 3520958783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520958784, 3520958847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520958848, 3520966111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520966112, 3520966119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520966120, 3520978943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520978944, 3520979711, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520979712, 3520983039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520983040, 3520999423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3520999424, 3521003519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521003520, 3521028095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521036288, 3521044479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521044480, 3521048575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521048576, 3521074735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521074736, 3521074751, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521074752, 3521086207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521086208, 3521086463, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521086464, 3521098551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521098552, 3521098559, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521098560, 3521103231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521103232, 3521103263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521103264, 3521199103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521199104, 3521199167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521199168, 3521199215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521199216, 3521199223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521199224, 3521199231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521199232, 3521199239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521199240, 3521249279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521249280, 3521314815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521314816, 3521364735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521364736, 3521364815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521364816, 3521366783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521366784, 3521367039, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521367040, 3521371423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371424, 3521371455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371456, 3521371463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371464, 3521371495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371496, 3521371647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371648, 3521371679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371680, 3521371711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371712, 3521371759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371760, 3521371903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371904, 3521371911, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371912, 3521371919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371920, 3521371983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521371984, 3521371999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521372000, 3521372031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521372032, 3521372063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521372064, 3521372079, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521372080, 3521372095, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521372096, 3521372159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521372160, 3521377407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521377408, 3521377439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521377440, 3521904639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521921024, 3521965055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521965056, 3521966079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3521966080, 3522019327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522027520, 3522031871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522031872, 3522032127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522032128, 3522101247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522101248, 3522109439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522109440, 3522117631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522117632, 3522121983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522121984, 3522122239, N'AW', N'Aruba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522122240, 3522125823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522134016, 3522174975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522174976, 3522179071, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522179072, 3522181119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522183168, 3522195455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522195456, 3522199551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522199552, 3522598655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522598656, 3522598911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522598912, 3522759591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522759592, 3522759599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522759600, 3522763263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522763264, 3522763519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522763520, 3522768895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522768896, 3522769151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522769152, 3522769919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522769920, 3522770175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522770176, 3522807807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522807808, 3522807815, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522807816, 3522820863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522820864, 3522821119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522821120, 3522854911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522854912, 3522859999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522860000, 3522860031, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522860032, 3522861279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522861280, 3522861287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522861288, 3522871295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3522871296, 3523215359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523215360, 3523223551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523223552, 3523231743, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523231744, 3523248127, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523248128, 3523280895, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523280896, 3523297279, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523297280, 3523317759, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523317760, 3523330047, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523330048, 3523338239, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523338240, 3523342335, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523342336, 3523346431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523354624, 3523362815, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523362816, 3523379199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523379200, 3523395583, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523395584, 3523411967, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523411968, 3523477503, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523477504, 3523493887, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523493888, 3523497983, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523497984, 3523500031, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523502080, 3523510271, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523510272, 3523518463, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523518464, 3523526655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523526656, 3523530751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523530752, 3523532799, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523534848, 3523538943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523543040, 3523551231, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523555328, 3523557375, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523559424, 3523575807, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523575808, 3523583999, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523584000, 3523592479, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523592480, 3523592495, N'YE', N'Yemen') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523592496, 3523592511, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523592512, 3523592575, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523592576, 3523592703, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523592704, 3523593215, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593216, 3523593231, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593232, 3523593279, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593280, 3523593343, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593344, 3523593535, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593536, 3523593599, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593600, 3523593743, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593744, 3523593751, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593752, 3523593759, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593760, 3523593767, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593768, 3523593775, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593776, 3523593791, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593792, 3523593807, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593808, 3523593823, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593824, 3523593951, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593952, 3523593959, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593960, 3523593983, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523593984, 3523594239, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523594240, 3523595263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595264, 3523595391, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595392, 3523595519, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595520, 3523595583, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595584, 3523595591, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595592, 3523595599, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595600, 3523595631, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595632, 3523595647, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523595648, 3523596287, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596288, 3523596351, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596352, 3523596359, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596360, 3523596375, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596376, 3523596415, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596416, 3523596671, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596672, 3523596735, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596736, 3523596751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596752, 3523596759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596760, 3523596767, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596768, 3523596775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596776, 3523596783, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596784, 3523596791, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596792, 3523596815, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596816, 3523596831, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596832, 3523596863, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596864, 3523596927, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523596928, 3523597127, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523597128, 3523597311, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523597312, 3523597823, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523597824, 3523597951, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523597952, 3523597959, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523597960, 3523597983, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523597984, 3523597991, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523597992, 3523597999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523598000, 3523598031, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523598032, 3523598079, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523598080, 3523598207, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523598208, 3523598335, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523598336, 3523598847, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523598848, 3523598911, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523598912, 3523599103, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523599104, 3523599359, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523599360, 3523599615, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523599616, 3523599623, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523599624, 3523599631, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523599632, 3523599647, N'PK', N'Pakistan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523599648, 3523599871, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523599872, 3523600383, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523600384, 3523600895, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523600896, 3523601151, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523601152, 3523602431, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523602432, 3523602879, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523602880, 3523674111, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523674112, 3523682303, N'FJ', N'Fiji') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523682304, 3523686399, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523690496, 3523698687, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523698688, 3523698863, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523698864, 3523698879, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523698880, 3523698943, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523698944, 3523698975, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523698976, 3523699007, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523699008, 3523699071, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523699072, 3523699199, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523699200, 3523699711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523699712, 3523700223, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523700224, 3523700287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523700288, 3523700351, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523700352, 3523700415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523700416, 3523700671, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523700672, 3523700679, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523700680, 3523700735, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523700736, 3523701759, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523701760, 3523702783, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523702784, 3523702799, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523702800, 3523702807, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523702808, 3523702847, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523702848, 3523702871, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523702872, 3523702911, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523702912, 3523703039, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523703040, 3523703103, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523703104, 3523704703, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523704704, 3523704719, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523704720, 3523704751, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523704752, 3523704783, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523704784, 3523704791, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523704792, 3523704831, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523704832, 3523704839, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523704840, 3523706879, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523706880, 3523707039, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523707040, 3523707071, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523707072, 3523707103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523707104, 3523707119, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523707120, 3523707135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523707136, 3523707903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523707904, 3523708159, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708160, 3523708287, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708288, 3523708319, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708320, 3523708351, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708352, 3523708415, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708416, 3523708927, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708928, 3523708975, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708976, 3523708991, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523708992, 3523709183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523709184, 3523713023, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523713024, 3523713135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523713136, 3523713279, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523713280, 3523713535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523713536, 3523714047, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523714048, 3523714719, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523714720, 3523714799, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523714800, 3523714943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523714944, 3523715007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523715008, 3523715031, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523715032, 3523715071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523715072, 3523723263, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523723264, 3523725311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523725312, 3523731455, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523731456, 3523731503, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523731504, 3523731519, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523731520, 3523731567, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523731568, 3523731583, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523731584, 3523731615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523731616, 3523737599, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523737600, 3523738111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523738112, 3523739135, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523739136, 3523739455, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523739456, 3523739519, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523739520, 3523739551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523739552, 3523739575, N'AP', N'Asia/Pacific Region') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523739576, 3523739647, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3523739648, 3524001791, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524001792, 3524132863, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524132864, 3524145151, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524145152, 3524149247, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524149248, 3524157439, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524157440, 3524161535, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524165632, 3524247551, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524247552, 3524263935, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524263936, 3524296703, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524296704, 3524313087, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524313088, 3524329471, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524329472, 3524362239, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524362240, 3524395007, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524395008, 3524444159, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524444160, 3524460543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524460544, 3524526079, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524526080, 3524591615, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524591616, 3524722687, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524722688, 3524730879, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524730880, 3524739071, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524739072, 3524743167, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524743168, 3524747263, N'MP', N'Northern Mariana Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524747264, 3524755455, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524755456, 3524763647, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524763648, 3524781791, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524781792, 3524781823, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524781824, 3524788223, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524788224, 3524853759, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3524853760, 3525300739, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3525300740, 3525300743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3525300744, 3526361087, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526361088, 3526393855, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526393856, 3526397951, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526397952, 3526402047, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526402048, 3526410239, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526410240, 3526414335, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526414336, 3526416383, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526418432, 3526426623, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526426624, 3526557695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526557696, 3526754303, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526754304, 3526885375, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526885376, 3526893567, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526893568, 3526897663, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526897664, 3526899711, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526901760, 3526905855, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526909952, 3526918143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526918144, 3526922239, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526926336, 3526934527, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526934528, 3526942719, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526942720, 3526950911, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3526950912, 3527004159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3527008256, 3527016447, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3527016448, 3527933951, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3527933952, 3528392703, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528392704, 3528409087, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528409088, 3528425471, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528425472, 3528445951, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528450048, 3528458239, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528458240, 3528460575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528460576, 3528460591, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528460592, 3528464895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528464896, 3528465151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528465152, 3528470015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528470016, 3528470271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528470272, 3528474623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528474624, 3528482815, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528482816, 3528491007, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528491008, 3528505007, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528505008, 3528505023, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528505024, 3528506543, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528506544, 3528506559, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528506560, 3528507391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528507392, 3528589311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528589312, 3528720383, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528720384, 3528785919, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528785920, 3528851455, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528851456, 3528884223, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528884224, 3528908799, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528908800, 3528912895, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528916992, 3528933375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528933376, 3528949759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528949760, 3528966143, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528966144, 3528974335, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528978432, 3528982527, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3528982528, 3529011135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529011136, 3529011151, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529011152, 3529056255, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529056256, 3529064447, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529064448, 3529072639, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529072640, 3529080831, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529080832, 3529089023, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529089024, 3529097215, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529097216, 3529113599, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3529113600, 3531603967, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3531603968, 3534749695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3534749696, 3534880767, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3534880768, 3535273983, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535273984, 3535339519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535339520, 3535355903, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535355904, 3535364095, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535372288, 3535380479, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535388672, 3535405055, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535405056, 3535480703, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535480704, 3535480831, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535480832, 3535536127, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535536128, 3535798271, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535798272, 3535814655, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535822848, 3535831039, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535831040, 3535863807, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535863808, 3535880191, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535880192, 3535896575, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535896576, 3535929343, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535929344, 3535994879, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3535994880, 3536060415, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536060416, 3536322559, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536322560, 3536551935, N'TW', N'Taiwan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536551936, 3536568319, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536568320, 3536584703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536584704, 3536846847, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536846848, 3536928767, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536928768, 3536945151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536945152, 3536977919, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3536977920, 3537010687, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537010688, 3537027071, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537027072, 3537043455, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537043456, 3537047551, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537059840, 3537076223, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537076224, 3537174527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537174528, 3537190911, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537190912, 3537240063, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537240064, 3537305599, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537305600, 3537371135, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537371136, 3537895423, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3537895424, 3538943999, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3538944000, 3539271679, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3539271680, 3539304447, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3539304448, 3539337215, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3539337216, 3539353599, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3539353600, 3539402751, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3539402752, 3539435519, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3539435520, 3539451903, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3539468288, 3541303295, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3541303296, 3541565439, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3541565440, 3541696511, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3541696512, 3542089727, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3542089728, 3544186879, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3544186880, 3544711167, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3544711168, 3545235455, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3545235456, 3546808319, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3546808320, 3547856895, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3547856896, 3548905471, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3548905472, 3551002623, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3551002624, 3554544607, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3554544608, 3554544639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3554544640, 3556769791, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556769792, 3556786175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556786176, 3556794367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556794368, 3556794879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556794880, 3556795135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556795136, 3556795647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556795648, 3556795679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556795680, 3556795711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556795712, 3556795839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556795840, 3556795847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556795848, 3556797215, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797216, 3556797231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797232, 3556797255, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797256, 3556797271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797272, 3556797295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797296, 3556797303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797304, 3556797311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797312, 3556797319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797320, 3556797351, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797352, 3556797359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797360, 3556797375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797376, 3556797383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797384, 3556797415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797416, 3556797423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797424, 3556797727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797728, 3556797759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797760, 3556797791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797792, 3556797823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797824, 3556797871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797872, 3556797919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797920, 3556797927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797928, 3556797951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556797952, 3556798719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556798720, 3556798783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556798784, 3556798911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556798912, 3556798975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556798976, 3556799935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556799936, 3556800007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800008, 3556800015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800016, 3556800031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800032, 3556800071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800072, 3556800095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800096, 3556800111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800112, 3556800119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800120, 3556800127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800128, 3556800143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800144, 3556800151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800152, 3556800159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800160, 3556800175, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800176, 3556800255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800256, 3556800383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800384, 3556800415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800416, 3556800431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800432, 3556800503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800504, 3556800767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800768, 3556800863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800864, 3556800895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556800896, 3556801023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801024, 3556801279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801280, 3556801295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801296, 3556801311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801312, 3556801327, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801328, 3556801343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801344, 3556801351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801352, 3556801359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801360, 3556801375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801376, 3556801391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801392, 3556801407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801408, 3556801447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801448, 3556801455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801456, 3556801471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801472, 3556801487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801488, 3556801503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801504, 3556801519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801520, 3556801535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801536, 3556801791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556801792, 3556802111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802112, 3556802127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802128, 3556802367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802368, 3556802415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802416, 3556802423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802424, 3556802431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802432, 3556802463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802464, 3556802511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802512, 3556802535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802536, 3556802559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556802560, 3556810751, N'SD', N'Sudan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556810752, 3556818943, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556818944, 3556827135, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556827136, 3556843519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556843520, 3556847935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556847936, 3556847967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556847968, 3556851711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556851712, 3556868095, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556868096, 3556876287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556876288, 3556884479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556884480, 3556892671, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556892672, 3556900863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556900864, 3556909055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556909056, 3556925439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556925440, 3556933631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556933632, 3556941823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556941824, 3556950015, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556950016, 3556958207, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556958208, 3556966399, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556966400, 3556974591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556974592, 3556974863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556974864, 3556975103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556975104, 3556981759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556981760, 3556981887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556981888, 3556983039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556983040, 3556990975, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556990976, 3556999167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3556999168, 3557007359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557007360, 3557015551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557015552, 3557023743, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557023744, 3557023871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557023872, 3557023903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557023904, 3557023999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557024000, 3557024255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557024256, 3557025023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557025024, 3557025791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557025792, 3557026047, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557026048, 3557026303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557026304, 3557026815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557026816, 3557027071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557027072, 3557027839, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557027840, 3557027863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557027864, 3557028031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028032, 3557028047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028048, 3557028735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028736, 3557028799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028800, 3557028911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028912, 3557028935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028936, 3557028943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028944, 3557028991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557028992, 3557029059, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557029060, 3557029119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557029120, 3557029535, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557029536, 3557029567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557029568, 3557029951, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557029952, 3557030015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030016, 3557030079, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030080, 3557030143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030144, 3557030719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030720, 3557030751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030752, 3557030767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030768, 3557030783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030784, 3557030975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557030976, 3557031039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557031040, 3557031167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557031168, 3557031679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557031680, 3557031807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557031808, 3557031935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557031936, 3557033575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557033576, 3557033583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557033584, 3557034143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557034144, 3557034175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557034176, 3557040127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557040128, 3557048319, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557048320, 3557056511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557056512, 3557064703, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557064704, 3557072895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557072896, 3557081087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557081088, 3557085951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557085952, 3557086015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557086016, 3557086047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557086048, 3557086079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557086080, 3557086719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557086720, 3557086783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557086784, 3557086847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557086848, 3557089279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557089280, 3557113855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557113856, 3557130239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557130240, 3557138431, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557138432, 3557146623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557146624, 3557154815, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557154816, 3557171199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557171200, 3557172991, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557172992, 3557173503, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557173504, 3557173695, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557173696, 3557173703, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557173704, 3557173759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557173760, 3557174015, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557174016, 3557174527, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557174528, 3557179391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557179392, 3557213351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557213352, 3557213359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557213360, 3557228543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557228544, 3557236735, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557236736, 3557244927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557244928, 3557253119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557253120, 3557261311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557261312, 3557277695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557277696, 3557285887, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557285888, 3557294079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557294080, 3557302271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557302272, 3557310463, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557310464, 3557326847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557326848, 3557335039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557335040, 3557340927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557340928, 3557341183, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557341184, 3557341455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557341456, 3557341471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557341472, 3557343231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557343232, 3557351423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557351424, 3557359615, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557359616, 3557367807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557367808, 3557375999, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557376000, 3557384191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557384192, 3557392383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557392384, 3557400575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557400576, 3557408767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557408768, 3557416959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557416960, 3557425151, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557425152, 3557490687, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557490688, 3557497431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557497432, 3557497439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557497440, 3557507071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557507072, 3557515263, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557515264, 3557523455, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557523456, 3557531647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557531648, 3557539839, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557539840, 3557548031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557548032, 3557556223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557556224, 3557564415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557564416, 3557570319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557570320, 3557570335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557570336, 3557571295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557571296, 3557571315, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557571316, 3557572607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557572608, 3557580799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557580800, 3557585695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557585696, 3557585711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557585712, 3557588991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557588992, 3557597183, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557597184, 3557605375, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557605376, 3557613567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557613568, 3557621759, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557621760, 3557629951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557629952, 3557638143, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557638144, 3557646335, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557646336, 3557654527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557654528, 3557670911, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557670912, 3557679103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557679104, 3557687295, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557687296, 3557703679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557703680, 3557711871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557711872, 3557720063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557720064, 3557728255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557728256, 3557744639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557744640, 3557752831, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557752832, 3557761023, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557761024, 3557777407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557777408, 3557785599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557785600, 3557793791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557793792, 3557801983, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557801984, 3557810175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557810176, 3557818367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557818368, 3557826559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557826560, 3557834751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557834752, 3557842943, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557842944, 3557851135, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557851136, 3557859327, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557859328, 3557867519, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557867520, 3557875711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557875712, 3557883903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557883904, 3557892095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557892096, 3557900287, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557900288, 3557916671, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557916672, 3557924863, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557924864, 3557933055, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557933056, 3557941247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557941248, 3557957631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557957632, 3557965823, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557965824, 3557974015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557974016, 3557982207, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557982208, 3557990399, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557990400, 3557998591, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3557998592, 3558006783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558006784, 3558014975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558014976, 3558023167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558023168, 3558031359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558031360, 3558039551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558039552, 3558047743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558047744, 3558055935, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558055936, 3558064127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558064128, 3558067839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558067840, 3558067855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558067856, 3558080511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558080512, 3558096895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558096896, 3558113279, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558113280, 3558114767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558114768, 3558114775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558114776, 3558129663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558129664, 3558137855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558137856, 3558154239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558154240, 3558170623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558170624, 3558178815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558178816, 3558187007, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558187008, 3558195199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558195200, 3558195455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558195456, 3558196031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196032, 3558196127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196128, 3558196159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196160, 3558196191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196192, 3558196199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196200, 3558196239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196240, 3558196247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196248, 3558196280, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196281, 3558196287, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196288, 3558196319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196320, 3558196351, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196352, 3558196355, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196356, 3558196359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196360, 3558196415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196416, 3558196479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196480, 3558196495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196496, 3558196527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196528, 3558196595, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196596, 3558196735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558196736, 3558203391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558203392, 3558211583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558211584, 3558219775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558219776, 3558227967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558227968, 3558236159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558236160, 3558244351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558244352, 3558252543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558252544, 3558260735, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558260736, 3558269439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558269440, 3558269951, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558269952, 3558270463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558270464, 3558271231, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558271232, 3558271487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558271488, 3558276351, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558276352, 3558276863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558276864, 3558277119, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558277120, 3558285567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558285568, 3558285823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558285824, 3558285951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558285952, 3558286079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558286080, 3558286591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558286592, 3558286847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558286848, 3558287679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558287680, 3558287743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558287744, 3558287871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558287872, 3558287935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558287936, 3558287999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288000, 3558288063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288064, 3558288127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288128, 3558288191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288192, 3558288255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288256, 3558288319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288320, 3558288383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288384, 3558288427, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288428, 3558288511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288512, 3558288639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288640, 3558288671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288672, 3558288687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288688, 3558288703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288704, 3558288719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288720, 3558288895, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558288896, 3558289103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289104, 3558289119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289120, 3558289151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289152, 3558289407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289408, 3558289471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289472, 3558289487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289488, 3558289663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289664, 3558289727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289728, 3558289759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289760, 3558289919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558289920, 3558290175, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290176, 3558290431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290432, 3558290575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290576, 3558290591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290592, 3558290663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290664, 3558290671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290672, 3558290687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290688, 3558290943, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290944, 3558290959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290960, 3558290967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290968, 3558290975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290976, 3558290991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558290992, 3558291007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291008, 3558291023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291024, 3558291031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291032, 3558291135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291136, 3558291199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291200, 3558291215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291216, 3558291231, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291232, 3558291239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291240, 3558291247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291248, 3558291263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291264, 3558291279, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291280, 3558291455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291456, 3558291903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291904, 3558291967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558291968, 3558292223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558292224, 3558292287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558292288, 3558292543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558292544, 3558292607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558292608, 3558292735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558292736, 3558292863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558292864, 3558292871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558292872, 3558293503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558293504, 3558301695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558301696, 3558318079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558318080, 3558319889, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558319890, 3558319891, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558319892, 3558334463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558334464, 3558342655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558342656, 3558350847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558350848, 3558359039, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558359040, 3558367231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558367232, 3558367271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558367272, 3558367279, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558367280, 3558368063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368064, 3558368079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368080, 3558368095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368096, 3558368111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368112, 3558368127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368128, 3558368159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368160, 3558368191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368192, 3558368207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368208, 3558368223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368224, 3558368239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368240, 3558368255, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558368256, 3558372351, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558372352, 3558372607, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558372608, 3558372735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558372736, 3558373375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558373376, 3558375423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558375424, 3558383615, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558383616, 3558391807, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558391808, 3558399999, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558400000, 3558408191, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558408192, 3558416383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558416384, 3558424575, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558424576, 3558440959, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558440960, 3558449151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558449152, 3558457343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558457344, 3558457407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558457408, 3558457599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558457600, 3558457727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558457728, 3558465535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558465536, 3558473727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558473728, 3558506495, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558506496, 3558514687, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558514688, 3558522879, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558522880, 3558531071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558531072, 3558547455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558547456, 3558555647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558555648, 3558572031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558572032, 3558579839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558579840, 3558579871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558579872, 3558580223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558580224, 3558581119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558581120, 3558581151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558581152, 3558581423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558581424, 3558581439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558581440, 3558586303, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558586304, 3558586335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558586336, 3558588415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558588416, 3558596607, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558596608, 3558604799, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558604800, 3558612991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558612992, 3558621183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558621184, 3558629375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558629376, 3558637567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558637568, 3558645759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558645760, 3558653951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558653952, 3558662143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558662144, 3558670335, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558670336, 3558686719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558686720, 3558703103, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558703104, 3558711295, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558711296, 3558719487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558719488, 3558735871, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558735872, 3558744063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558744064, 3558752255, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558752256, 3558760447, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558760448, 3558768639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558768640, 3558785023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558785024, 3558793215, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558793216, 3558801407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558801408, 3558809599, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558809600, 3558817791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558817792, 3558819167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558819168, 3558819199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558819200, 3558821791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558821792, 3558821799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558821800, 3558821823, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558821824, 3558821831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558821832, 3558825983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558825984, 3558826831, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558826832, 3558826839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558826840, 3558827807, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558827808, 3558827815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558827816, 3558828287, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558828288, 3558828303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558828304, 3558830079, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558830080, 3558830335, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558830336, 3558831359, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558831360, 3558831615, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558831616, 3558832383, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558832384, 3558832639, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558832640, 3558834175, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558834176, 3558842367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558842368, 3558850559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558850560, 3558850815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558850816, 3558851327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851328, 3558851359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851360, 3558851391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851392, 3558851471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851472, 3558851479, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851480, 3558851807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851808, 3558851815, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851816, 3558851823, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558851824, 3558852095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558852096, 3558852607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558852608, 3558852991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558852992, 3558853119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853120, 3558853375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853376, 3558853407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853408, 3558853439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853440, 3558853467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853468, 3558853503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853504, 3558853511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853512, 3558853535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853536, 3558853547, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853548, 3558853615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853616, 3558853631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558853632, 3558854655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558854656, 3558854911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558854912, 3558854919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558854920, 3558854975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558854976, 3558855039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558855040, 3558855167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558855168, 3558855183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558855184, 3558855423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558855424, 3558855431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558855432, 3558855935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558855936, 3558856191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558856192, 3558856575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558856576, 3558856639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558856640, 3558856703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558856704, 3558858751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558858752, 3558865727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558865728, 3558865791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558865792, 3558865919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558865920, 3558865927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558865928, 3558866943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558866944, 3558899711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558899712, 3558916095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558916096, 3558924287, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558924288, 3558932479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558932480, 3558940671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558940672, 3558948863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558948864, 3558957055, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558957056, 3558965247, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558965248, 3558973439, N'NO', N'Norway') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558973440, 3558981631, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558981632, 3558981827, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558981828, 3558981887, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558981888, 3558984447, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558984448, 3558989823, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558989824, 3558998015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3558998016, 3559006207, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559006208, 3559014399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559014400, 3559030783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559030784, 3559038975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559038976, 3559047167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559047168, 3559063551, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559063552, 3559079935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559079936, 3559088127, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559088128, 3559088283, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559088284, 3559088287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559088288, 3559088919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559088920, 3559088927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559088928, 3559089563, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559089564, 3559089567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559089568, 3559089607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559089608, 3559089611, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559089612, 3559090519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559090520, 3559090527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559090528, 3559090895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559090896, 3559090899, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559090900, 3559091047, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091048, 3559091055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091056, 3559091131, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091132, 3559091135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091136, 3559091423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091424, 3559091427, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091428, 3559091507, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091508, 3559091511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091512, 3559091631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091632, 3559091635, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559091636, 3559092159, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092160, 3559092160, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092161, 3559092222, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092223, 3559092351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092352, 3559092367, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092368, 3559092383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092384, 3559092479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092480, 3559092735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092736, 3559092975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092976, 3559092991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559092992, 3559093083, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093084, 3559093087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093088, 3559093351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093352, 3559093355, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093356, 3559093671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093672, 3559093675, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093676, 3559093679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093680, 3559093695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559093696, 3559094071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559094072, 3559094079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559094080, 3559094415, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559094416, 3559094431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559094432, 3559095263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095264, 3559095295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095296, 3559095351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095352, 3559095359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095360, 3559095495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095496, 3559095551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095552, 3559095575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095576, 3559095583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095584, 3559095591, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095592, 3559095623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559095624, 3559096087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096088, 3559096095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096096, 3559096103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096104, 3559096107, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096108, 3559096123, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096124, 3559096127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096128, 3559096247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096248, 3559096251, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096252, 3559096319, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559096320, 3559103231, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559103232, 3559103487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559103488, 3559104511, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559104512, 3559112703, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559112704, 3559120895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559120896, 3559129087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559129088, 3559137279, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559137280, 3559145471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559145472, 3559153663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559153664, 3559177215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559177216, 3559177471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559177472, 3559177727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559177728, 3559178239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559178240, 3559186431, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559186432, 3559194623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559194624, 3559202815, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559202816, 3559211007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559211008, 3559219199, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559219200, 3559227391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559227392, 3559235583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559235584, 3559243775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559243776, 3559251967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559251968, 3559260159, N'NO', N'Norway') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559260160, 3559268351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559268352, 3559276543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559276544, 3559284735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559284736, 3559284895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559284896, 3559284911, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559284912, 3559288175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559288176, 3559288191, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559288192, 3559288207, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559288208, 3559288575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559288576, 3559290879, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559290880, 3559291391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559291392, 3559291647, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559291648, 3559291903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559291904, 3559292159, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559292160, 3559292927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559292928, 3559301119, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559301120, 3559309311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559309312, 3559317503, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559317504, 3559325695, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559325696, 3559333887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559333888, 3559342079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559342080, 3559350271, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559350272, 3559358463, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559358464, 3559366655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559366656, 3559374847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559374848, 3559383039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559383040, 3559391231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559391232, 3559399423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559399424, 3559407615, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559407616, 3559423999, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559424000, 3559432191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559432192, 3559440383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559440384, 3559448575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559448576, 3559456767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559456768, 3559464959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559464960, 3559473151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559473152, 3559489535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559489536, 3559490591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559490592, 3559490623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559490624, 3559490783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559490784, 3559490791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559490792, 3559490799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559490800, 3559491135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491136, 3559491167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491168, 3559491455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491456, 3559491583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491584, 3559491759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491760, 3559491771, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491772, 3559491779, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491780, 3559491839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491840, 3559491871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491872, 3559491903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491904, 3559491935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491936, 3559491967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559491968, 3559492023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559492024, 3559492031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559492032, 3559493119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493120, 3559493183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493184, 3559493247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493248, 3559493279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493280, 3559493311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493312, 3559493343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493344, 3559493349, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493350, 3559493359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559493360, 3559497727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559497728, 3559505919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559505920, 3559514111, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559514112, 3559522303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559522304, 3559530495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559530496, 3559538687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559538688, 3559546879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559546880, 3559555071, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559555072, 3559563263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559563264, 3559571455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559571456, 3559579647, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559579648, 3559586271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559586272, 3559586303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559586304, 3559587839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559587840, 3559596031, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559596032, 3559604223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559604224, 3559612415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559612416, 3559620607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559620608, 3559628799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559628800, 3559636991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559636992, 3559653375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559653376, 3559669759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559669760, 3559676927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559676928, 3559677951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559677952, 3559677959, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559677960, 3559678207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678208, 3559678391, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678392, 3559678407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678408, 3559678423, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678424, 3559678431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678432, 3559678439, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678440, 3559678463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678464, 3559678639, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678640, 3559678647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678648, 3559678655, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678656, 3559678719, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678720, 3559678903, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678904, 3559678911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678912, 3559678927, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678928, 3559678975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559678976, 3559679103, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679104, 3559679231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679232, 3559679415, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679416, 3559679487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679488, 3559679583, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679584, 3559679591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679592, 3559679599, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679600, 3559679607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679608, 3559679631, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679632, 3559679639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679640, 3559679663, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679664, 3559679679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679680, 3559679751, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679752, 3559679759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679760, 3559679855, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559679856, 3559679999, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680000, 3559680055, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680056, 3559680095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680096, 3559680111, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680112, 3559680127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680128, 3559680151, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680152, 3559680199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680200, 3559680223, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680224, 3559680255, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680256, 3559680359, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680360, 3559680447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680448, 3559680631, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680632, 3559680639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680640, 3559680679, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680680, 3559680687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680688, 3559680695, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680696, 3559680767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680768, 3559680831, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680832, 3559680959, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559680960, 3559681015, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681016, 3559681023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681024, 3559681031, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681032, 3559681087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681088, 3559681095, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681096, 3559681119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681120, 3559681143, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681144, 3559681147, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681148, 3559681239, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681240, 3559681279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681280, 3559681351, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681352, 3559681359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681360, 3559681375, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681376, 3559681535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681536, 3559681607, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681608, 3559681615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681616, 3559681631, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681632, 3559681655, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681656, 3559681671, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681672, 3559681727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681728, 3559681735, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681736, 3559681791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681792, 3559681903, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559681904, 3559682047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559682048, 3559682083, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559682084, 3559682087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559682088, 3559682095, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559682096, 3559684863, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559684864, 3559684879, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559684880, 3559685119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559685120, 3559685503, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559685504, 3559685631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559685632, 3559685695, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559685696, 3559685887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559685888, 3559685896, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559685897, 3559686143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559686144, 3559694335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559694336, 3559702655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559702656, 3559702719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559702720, 3559702735, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559702736, 3559703039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559703040, 3559703551, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559703552, 3559703679, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559703680, 3559703807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559703808, 3559704063, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559704064, 3559710463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559710464, 3559710719, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559710720, 3559718911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559718912, 3559727103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559727104, 3559735295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559735296, 3559743487, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559743488, 3559759871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559759872, 3559768063, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559768064, 3559776255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559776256, 3559784447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559784448, 3559792639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559792640, 3559800831, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559800832, 3559809023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559809024, 3559817215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559817216, 3559825407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559825408, 3559833599, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559833600, 3559849983, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559849984, 3559858175, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559858176, 3559866367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559866368, 3559874559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559874560, 3559877951, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559877952, 3559877967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559877968, 3559882751, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559882752, 3559890943, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559890944, 3559899135, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559899136, 3559899907, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559899908, 3559899935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559899936, 3559899951, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559899952, 3559899955, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559899956, 3559905139, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559905140, 3559905143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559905144, 3559907327, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559907328, 3559915519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559915520, 3559923711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559923712, 3559931903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559931904, 3559940095, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559940096, 3559948287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559948288, 3559956479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559956480, 3559964671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559964672, 3559972863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559972864, 3559981055, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559981056, 3559989247, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559989248, 3559997439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3559997440, 3560005631, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560005632, 3560013823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560013824, 3560030207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560030208, 3560046591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560046592, 3560054783, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560054784, 3560062975, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560062976, 3560071167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560071168, 3560079359, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560079360, 3560087551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560087552, 3560095743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560095744, 3560103935, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560103936, 3560112127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560112128, 3560120319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560120320, 3560128511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560128512, 3560144895, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560144896, 3560153087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560153088, 3560161279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560161280, 3560169471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560169472, 3560177663, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560177664, 3560185855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560185856, 3560194047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560194048, 3560210431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560210432, 3560218623, N'BF', N'Burkina Faso') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560218624, 3560226815, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560226816, 3560235007, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560235008, 3560243199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560243200, 3560244223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560244224, 3560251391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560251392, 3560252519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560252520, 3560252527, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560252528, 3560259583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560259584, 3560267775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560267776, 3560275967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560275968, 3560308735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560308736, 3560316927, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560316928, 3560325119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560325120, 3560333311, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560333312, 3560341503, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560341504, 3560349695, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560349696, 3560357887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560357888, 3560366079, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560366080, 3560366591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560366592, 3560366655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560366656, 3560367103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560367104, 3560367167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560367168, 3560374271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560374272, 3560382463, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560382464, 3560390655, N'FO', N'Faroe Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560390656, 3560398847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560398848, 3560407039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560407040, 3560423423, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560423424, 3560431615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560431616, 3560439807, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560439808, 3560447999, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560448000, 3560449791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560449792, 3560450047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560450048, 3560472575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560472576, 3560480767, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560480768, 3560488959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560488960, 3560497151, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560497152, 3560501247, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560501248, 3560505343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560505344, 3560513535, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560513536, 3560521727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560521728, 3560529919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560529920, 3560554495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560554496, 3560570879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560570880, 3560579071, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560579072, 3560587263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560587264, 3560595455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560595456, 3560603647, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560603648, 3560611839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560611840, 3560620031, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560620032, 3560628223, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560628224, 3560632207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560632208, 3560632215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560632216, 3560636415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560636416, 3560644607, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560644608, 3560652799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560652800, 3560660991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560660992, 3560669183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560669184, 3560685567, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560685568, 3560693759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560693760, 3560701951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560701952, 3560710143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560710144, 3560718335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560718336, 3560726527, N'GM', N'Gambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560726528, 3560742623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560742624, 3560742631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560742632, 3560742911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560742912, 3560751103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560751104, 3560767487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560767488, 3560832791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560832792, 3560832799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560832800, 3560833023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560833024, 3560841215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560841216, 3560849407, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560849408, 3560857599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560857600, 3560858623, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560858624, 3560865791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560865792, 3560882175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560882176, 3560890367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560890368, 3560898559, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560898560, 3560906751, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560906752, 3560919047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560919048, 3560919055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560919056, 3560923135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560923136, 3560931327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560931328, 3560934439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560934440, 3560934447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560934448, 3560939523, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939524, 3560939527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939528, 3560939535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939536, 3560939539, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939540, 3560939543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939544, 3560939555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939556, 3560939559, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939560, 3560939563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939564, 3560939567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939568, 3560939571, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939572, 3560939579, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939580, 3560939583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939584, 3560939587, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939588, 3560939591, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939592, 3560939607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939608, 3560939611, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939612, 3560939623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939624, 3560939627, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939628, 3560939631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939632, 3560939643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939644, 3560939647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939648, 3560939655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939656, 3560939659, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939660, 3560939663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939664, 3560939667, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939668, 3560939675, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939676, 3560939679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939680, 3560939683, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939684, 3560939687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939688, 3560939691, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939692, 3560939695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939696, 3560939703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939704, 3560939707, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939708, 3560939719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939720, 3560939727, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939728, 3560939735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939736, 3560939751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939752, 3560939755, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939756, 3560939759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939760, 3560939763, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939764, 3560939767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939768, 3560939771, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939772, 3560939775, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939776, 3560939779, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939780, 3560939783, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939784, 3560939791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939792, 3560939795, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939796, 3560939799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939800, 3560939803, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939804, 3560939807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939808, 3560939811, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939812, 3560939815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939816, 3560939819, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939820, 3560939823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939824, 3560939827, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939828, 3560939831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939832, 3560939839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939840, 3560939843, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939844, 3560939847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939848, 3560939851, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939852, 3560939855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939856, 3560939859, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939860, 3560939863, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939864, 3560939867, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939868, 3560939875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939876, 3560939879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939880, 3560939887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939888, 3560939891, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939892, 3560939895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939896, 3560939899, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939900, 3560939903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939904, 3560939907, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939908, 3560939911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939912, 3560939915, N'RE', N'Reunion') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939916, 3560939919, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939920, 3560939927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939928, 3560939931, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939932, 3560939935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939936, 3560939939, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939940, 3560939943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939944, 3560939951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939952, 3560939955, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939956, 3560939959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939960, 3560939963, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939964, 3560939967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939968, 3560939971, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939972, 3560939975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939976, 3560939983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939984, 3560939987, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939988, 3560939991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939992, 3560939995, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560939996, 3560939999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940000, 3560940007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940008, 3560940015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940016, 3560940019, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940020, 3560940023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940024, 3560940027, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940028, 3560940043, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940044, 3560940047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940048, 3560940051, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940052, 3560940055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940056, 3560940059, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940060, 3560940063, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940064, 3560940067, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940068, 3560940071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940072, 3560940075, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940076, 3560940079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940080, 3560940087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940088, 3560940091, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940092, 3560940095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940096, 3560940099, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940100, 3560940103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940104, 3560940115, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940116, 3560940119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940120, 3560940123, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940124, 3560940127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940128, 3560940135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940136, 3560940139, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940140, 3560940143, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940144, 3560940147, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940148, 3560940151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940152, 3560940155, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940156, 3560940159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940160, 3560940163, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940164, 3560940171, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940172, 3560940175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940176, 3560940179, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940180, 3560940183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940184, 3560940187, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940188, 3560940191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940192, 3560940195, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940196, 3560940199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940200, 3560940203, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940204, 3560940207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940208, 3560940211, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940212, 3560940215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940216, 3560940219, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940220, 3560940227, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940228, 3560940231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940232, 3560940235, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940236, 3560940239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940240, 3560940243, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940244, 3560940247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940248, 3560940251, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940252, 3560940255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940256, 3560940263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940264, 3560940267, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940268, 3560940275, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940276, 3560940279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940280, 3560940283, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940284, 3560940287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940288, 3560940291, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940292, 3560940307, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940308, 3560940311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940312, 3560940327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940328, 3560940331, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940332, 3560940339, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940340, 3560940343, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940344, 3560940347, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940348, 3560940367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940368, 3560940371, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940372, 3560940379, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940380, 3560940387, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940388, 3560940391, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940392, 3560940395, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940396, 3560940399, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940400, 3560940403, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940404, 3560940407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940408, 3560940411, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940412, 3560940419, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940420, 3560940423, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940424, 3560940431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940432, 3560940435, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940436, 3560940439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940440, 3560940443, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940444, 3560940447, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940448, 3560940451, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940452, 3560940455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940456, 3560940459, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940460, 3560940463, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940464, 3560940467, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940468, 3560940471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940472, 3560940475, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940476, 3560940479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940480, 3560940487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940488, 3560940491, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940492, 3560940495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940496, 3560940499, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940500, 3560940503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940504, 3560940507, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940508, 3560940511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940512, 3560940523, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940524, 3560940527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940528, 3560940531, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940532, 3560940535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940536, 3560940539, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940540, 3560940543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940544, 3560940547, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940548, 3560940551, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940552, 3560940563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940564, 3560940567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940568, 3560940571, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940572, 3560940575, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940576, 3560940579, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940580, 3560940583, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940584, 3560940587, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940588, 3560940591, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940592, 3560940595, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940596, 3560940599, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940600, 3560940603, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940604, 3560940607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940608, 3560940611, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940612, 3560940615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940616, 3560940619, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940620, 3560940623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940624, 3560940627, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940628, 3560940631, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940632, 3560940635, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940636, 3560940639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940640, 3560940647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940648, 3560940655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940656, 3560940663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940664, 3560940683, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940684, 3560940687, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940688, 3560940691, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940692, 3560940695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940696, 3560940699, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940700, 3560940703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940704, 3560940707, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940708, 3560940711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940712, 3560940715, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940716, 3560940719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940720, 3560940723, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940724, 3560940727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940728, 3560940731, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940732, 3560940735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940736, 3560940739, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940740, 3560940743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940744, 3560940751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940752, 3560940755, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940756, 3560940763, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940764, 3560940767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940768, 3560940779, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940780, 3560940783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940784, 3560940787, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940788, 3560940791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940792, 3560940799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940800, 3560940803, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940804, 3560940807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940808, 3560940811, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940812, 3560940815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940816, 3560940819, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940820, 3560940823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940824, 3560940827, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940828, 3560940831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940832, 3560940835, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940836, 3560940839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940840, 3560940843, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940844, 3560940851, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940852, 3560940859, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940860, 3560940863, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940864, 3560940867, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940868, 3560940875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940876, 3560940879, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940880, 3560940883, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940884, 3560940887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940888, 3560940891, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940892, 3560940895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940896, 3560940899, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940900, 3560940903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940904, 3560940907, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940908, 3560940915, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940916, 3560940923, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940924, 3560940927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940928, 3560940931, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940932, 3560940935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940936, 3560940939, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940940, 3560940951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940952, 3560940955, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940956, 3560940963, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940964, 3560940967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940968, 3560940971, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940972, 3560940975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940976, 3560940979, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940980, 3560940983, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940984, 3560940987, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940988, 3560940995, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560940996, 3560940999, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941000, 3560941003, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941004, 3560941007, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941008, 3560941011, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941012, 3560941015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941016, 3560941019, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941020, 3560941023, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941024, 3560941027, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941028, 3560941031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941032, 3560941035, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941036, 3560941039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941040, 3560941043, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941044, 3560941047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941048, 3560941051, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941052, 3560941059, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941060, 3560941063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941064, 3560941071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941072, 3560941075, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941076, 3560941079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941080, 3560941083, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941084, 3560941087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941088, 3560941091, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941092, 3560941095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941096, 3560941099, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941100, 3560941103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941104, 3560941107, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941108, 3560941119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941120, 3560941123, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941124, 3560941127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941128, 3560941131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941132, 3560941135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941136, 3560941139, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941140, 3560941147, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941148, 3560941151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941152, 3560941155, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941156, 3560941159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941160, 3560941163, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941164, 3560941167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941168, 3560941171, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941172, 3560941175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941176, 3560941179, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941180, 3560941183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941184, 3560941187, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941188, 3560941191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941192, 3560941195, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941196, 3560941199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941200, 3560941203, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941204, 3560941207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941208, 3560941211, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941212, 3560941215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941216, 3560941219, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941220, 3560941223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941224, 3560941227, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941228, 3560941231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941232, 3560941235, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941236, 3560941243, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941244, 3560941251, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941252, 3560941255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941256, 3560941259, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941260, 3560941263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941264, 3560941271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941272, 3560941275, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941276, 3560941279, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941280, 3560941283, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941284, 3560941287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941288, 3560941291, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941292, 3560941295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941296, 3560941303, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941304, 3560941307, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941308, 3560941315, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941316, 3560941319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941320, 3560941323, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941324, 3560941331, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941332, 3560941335, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941336, 3560941339, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941340, 3560941343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941344, 3560941347, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941348, 3560941351, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941352, 3560941355, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941356, 3560941359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941360, 3560941363, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941364, 3560941367, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941368, 3560941371, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941372, 3560941379, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941380, 3560941383, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941384, 3560941387, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941388, 3560941391, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941392, 3560941395, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941396, 3560941399, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941400, 3560941407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941408, 3560941411, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941412, 3560941415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941416, 3560941419, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941420, 3560941423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941424, 3560941427, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941428, 3560941431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941432, 3560941435, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941436, 3560941439, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941440, 3560941443, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941444, 3560941447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941448, 3560941459, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941460, 3560941467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941468, 3560941471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941472, 3560941475, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941476, 3560941479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941480, 3560941483, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941484, 3560941487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941488, 3560941491, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941492, 3560941495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941496, 3560941499, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941500, 3560941503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941504, 3560941507, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941508, 3560941511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941512, 3560941515, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941516, 3560941519, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941520, 3560941523, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941524, 3560941535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941536, 3560941539, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941540, 3560941543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941544, 3560941547, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941548, 3560941551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941552, 3560941555, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941556, 3560941559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941560, 3560941563, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941564, 3560941567, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941568, 3560941571, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941572, 3560941575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941576, 3560941587, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941588, 3560941591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941592, 3560941599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941600, 3560941603, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941604, 3560941607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941608, 3560941611, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941612, 3560941623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941624, 3560941627, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941628, 3560941631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941632, 3560941635, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941636, 3560941639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941640, 3560941643, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941644, 3560941647, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941648, 3560941651, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941652, 3560941655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941656, 3560941659, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941660, 3560941663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941664, 3560941671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941672, 3560941679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941680, 3560941683, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941684, 3560941687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941688, 3560941691, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941692, 3560941695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941696, 3560941699, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941700, 3560941703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941704, 3560941707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941708, 3560941711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941712, 3560941715, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941716, 3560941723, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941724, 3560941727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941728, 3560941735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941736, 3560941739, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941740, 3560941743, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941744, 3560941747, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941748, 3560941751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941752, 3560941755, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941756, 3560941771, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941772, 3560941787, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941788, 3560941791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941792, 3560941795, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941796, 3560941799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941800, 3560941803, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941804, 3560941807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941808, 3560941811, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941812, 3560941815, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941816, 3560941819, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941820, 3560941823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941824, 3560941827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941828, 3560941831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941832, 3560941835, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941836, 3560941839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941840, 3560941843, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941844, 3560941847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941848, 3560941851, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941852, 3560941855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941856, 3560941859, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941860, 3560941867, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941868, 3560941871, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941872, 3560941875, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941876, 3560941879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941880, 3560941883, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941884, 3560941887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941888, 3560941891, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941892, 3560941895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941896, 3560941899, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941900, 3560941903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941904, 3560941907, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941908, 3560941911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941912, 3560941919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941920, 3560941931, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941932, 3560941935, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941936, 3560941947, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941948, 3560941951, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941952, 3560941955, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941956, 3560941959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941960, 3560941963, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941964, 3560941967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941968, 3560941971, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941972, 3560941975, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941976, 3560941979, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941980, 3560941983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941984, 3560941987, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941988, 3560941991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941992, 3560941995, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560941996, 3560941999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942000, 3560942003, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942004, 3560942007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942008, 3560942011, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942012, 3560942015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942016, 3560942019, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942020, 3560942023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942024, 3560942027, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942028, 3560942035, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942036, 3560942039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942040, 3560942047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942048, 3560942051, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942052, 3560942055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942056, 3560942059, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942060, 3560942063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942064, 3560942067, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942068, 3560942071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942072, 3560942083, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942084, 3560942087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942088, 3560942095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942096, 3560942099, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942100, 3560942103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942104, 3560942107, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942108, 3560942115, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942116, 3560942119, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942120, 3560942123, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942124, 3560942127, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942128, 3560942131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942132, 3560942135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942136, 3560942143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942144, 3560942147, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942148, 3560942151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942152, 3560942155, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942156, 3560942159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942160, 3560942163, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942164, 3560942171, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942172, 3560942175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942176, 3560942179, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942180, 3560942183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942184, 3560942191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942192, 3560942195, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942196, 3560942199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942200, 3560942203, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942204, 3560942207, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942208, 3560942211, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942212, 3560942219, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942220, 3560942227, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942228, 3560942231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942232, 3560942243, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942244, 3560942247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942248, 3560942251, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942252, 3560942255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942256, 3560942259, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942260, 3560942263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942264, 3560942267, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942268, 3560942271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942272, 3560942275, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942276, 3560942279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942280, 3560942283, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942284, 3560942287, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942288, 3560942291, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942292, 3560942295, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942296, 3560942299, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942300, 3560942307, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942308, 3560942319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942320, 3560942323, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942324, 3560942327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942328, 3560942339, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942340, 3560942343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942344, 3560942347, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942348, 3560942351, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942352, 3560942355, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942356, 3560942359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942360, 3560942363, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942364, 3560942367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942368, 3560942375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942376, 3560942379, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942380, 3560942383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942384, 3560942387, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942388, 3560942391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942392, 3560942407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942408, 3560942411, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942412, 3560942415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942416, 3560942419, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942420, 3560942423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942424, 3560942427, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942428, 3560942447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942448, 3560942455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942456, 3560942459, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942460, 3560942463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942464, 3560942467, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942468, 3560942471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942472, 3560942475, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942476, 3560942479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942480, 3560942483, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942484, 3560942487, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942488, 3560942495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942496, 3560942499, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942500, 3560942503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942504, 3560942511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942512, 3560942515, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942516, 3560942523, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942524, 3560942527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942528, 3560942535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942536, 3560942539, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942540, 3560942543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942544, 3560942547, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942548, 3560942551, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942552, 3560942555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942556, 3560942559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942560, 3560942563, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942564, 3560942567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942568, 3560942571, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942572, 3560942579, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942580, 3560942583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942584, 3560942587, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942588, 3560942590, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942591, 3560942599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942600, 3560942603, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942604, 3560942607, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942608, 3560942619, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942620, 3560942623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942624, 3560942627, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942628, 3560942631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942632, 3560942635, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942636, 3560942643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942644, 3560942647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942648, 3560942651, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942652, 3560942655, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942656, 3560942663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942664, 3560942667, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942668, 3560942675, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942676, 3560942679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942680, 3560942683, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942684, 3560942687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942688, 3560942691, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942692, 3560942695, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942696, 3560942699, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942700, 3560942703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942704, 3560942707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942708, 3560942711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942712, 3560942715, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942716, 3560942719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942720, 3560942727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942728, 3560942731, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942732, 3560942735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942736, 3560942739, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942740, 3560942743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942744, 3560942751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942752, 3560942763, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942764, 3560942767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942768, 3560942771, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942772, 3560942775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942776, 3560942779, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942780, 3560942783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942784, 3560942787, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942788, 3560942791, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942792, 3560942795, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942796, 3560942799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942800, 3560942803, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942804, 3560942807, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942808, 3560942811, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942812, 3560942815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942816, 3560942819, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942820, 3560942823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942824, 3560942827, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942828, 3560942831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942832, 3560942835, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942836, 3560942839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942840, 3560942843, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942844, 3560942847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942848, 3560942851, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942852, 3560942855, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942856, 3560942859, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942860, 3560942863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942864, 3560942871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942872, 3560942875, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942876, 3560942879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942880, 3560942883, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942884, 3560942887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942888, 3560942891, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942892, 3560942895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942896, 3560942899, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942900, 3560942903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942904, 3560942907, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942908, 3560942911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942912, 3560942915, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942916, 3560942919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942920, 3560942923, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942924, 3560942927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942928, 3560942931, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942932, 3560942935, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942936, 3560942939, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942940, 3560942943, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942944, 3560942951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942952, 3560942955, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942956, 3560942959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942960, 3560942963, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942964, 3560942975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942976, 3560942979, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942980, 3560942987, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560942988, 3560942999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943000, 3560943003, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943004, 3560943007, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943008, 3560943011, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943012, 3560943015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943016, 3560943019, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943020, 3560943023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943024, 3560943027, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943028, 3560943031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943032, 3560943035, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943036, 3560943039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943040, 3560943043, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943044, 3560943047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943048, 3560943051, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943052, 3560943055, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943056, 3560943059, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943060, 3560943075, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943076, 3560943079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943080, 3560943095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943096, 3560943099, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943100, 3560943109, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943110, 3560943111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943112, 3560943113, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943114, 3560943115, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943116, 3560943116, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943117, 3560943117, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943118, 3560943118, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943119, 3560943119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943120, 3560943120, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943121, 3560943121, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943122, 3560943122, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943123, 3560943125, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943126, 3560943126, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943127, 3560943127, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943128, 3560943129, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943130, 3560943130, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943131, 3560943131, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943132, 3560943132, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943133, 3560943133, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943134, 3560943136, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943137, 3560943137, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943138, 3560943138, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943139, 3560943139, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943140, 3560943140, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943141, 3560943141, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943142, 3560943142, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943143, 3560943145, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943146, 3560943146, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943147, 3560943147, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943148, 3560943149, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943150, 3560943150, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943151, 3560943151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943152, 3560943152, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943153, 3560943154, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943155, 3560943155, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943156, 3560943157, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943158, 3560943158, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943159, 3560943159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943160, 3560943160, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943161, 3560943161, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943162, 3560943162, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943163, 3560943163, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943164, 3560943164, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943165, 3560943165, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943166, 3560943166, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943167, 3560943167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943168, 3560943168, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943169, 3560943169, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943170, 3560943170, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943171, 3560943171, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943172, 3560943172, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943173, 3560943173, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943174, 3560943175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943176, 3560943177, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943178, 3560943178, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943179, 3560943179, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943180, 3560943180, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943181, 3560943181, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943182, 3560943183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943184, 3560943184, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943185, 3560943185, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943186, 3560943186, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943187, 3560943187, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943188, 3560943188, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943189, 3560943192, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943193, 3560943193, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943194, 3560943194, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943195, 3560943195, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943196, 3560943197, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943198, 3560943198, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943199, 3560943199, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943200, 3560943200, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943201, 3560943201, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943202, 3560943202, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943203, 3560943203, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943204, 3560943204, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943205, 3560943205, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943206, 3560943207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943208, 3560943208, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943209, 3560943210, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943211, 3560943211, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943212, 3560943212, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943213, 3560943213, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943214, 3560943214, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943215, 3560943218, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943219, 3560943219, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943220, 3560943221, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943222, 3560943222, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943223, 3560943223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943224, 3560943224, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943225, 3560943226, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943227, 3560943227, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943228, 3560943230, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943231, 3560943232, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943233, 3560943233, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943234, 3560943234, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943235, 3560943235, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943236, 3560943237, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943238, 3560943238, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943239, 3560943239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943240, 3560943240, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943241, 3560943241, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943242, 3560943242, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943243, 3560943243, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943244, 3560943244, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943245, 3560943245, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943246, 3560943247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943248, 3560943248, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943249, 3560943249, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943250, 3560943250, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943251, 3560943251, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943252, 3560943252, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943253, 3560943253, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943254, 3560943254, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943255, 3560943255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943256, 3560943256, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943257, 3560943257, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943258, 3560943258, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943259, 3560943259, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943260, 3560943260, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943261, 3560943261, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943262, 3560943262, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943263, 3560943263, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943264, 3560943264, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943265, 3560943265, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943266, 3560943266, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943267, 3560943267, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943268, 3560943269, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943270, 3560943270, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943271, 3560943271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943272, 3560943272, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943273, 3560943273, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943274, 3560943274, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943275, 3560943275, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943276, 3560943276, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943277, 3560943277, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943278, 3560943278, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943279, 3560943279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943280, 3560943280, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943281, 3560943281, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943282, 3560943282, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943283, 3560943283, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943284, 3560943286, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943287, 3560943287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943288, 3560943290, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943291, 3560943292, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943293, 3560943293, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943294, 3560943294, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943295, 3560943295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943296, 3560943296, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943297, 3560943297, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943298, 3560943298, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943299, 3560943299, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943300, 3560943300, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943301, 3560943301, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943302, 3560943302, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943303, 3560943303, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943304, 3560943304, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943305, 3560943306, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943307, 3560943307, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943308, 3560943309, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943310, 3560943311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943312, 3560943312, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943313, 3560943313, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943314, 3560943314, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943315, 3560943315, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943316, 3560943316, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943317, 3560943317, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943318, 3560943318, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943319, 3560943319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943320, 3560943320, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943321, 3560943321, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943322, 3560943322, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943323, 3560943323, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943324, 3560943324, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943325, 3560943325, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943326, 3560943326, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943327, 3560943329, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943330, 3560943331, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943332, 3560943335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943336, 3560943336, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943337, 3560943337, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943338, 3560943338, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943339, 3560943339, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943340, 3560943341, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943342, 3560943342, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943343, 3560943343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943344, 3560943344, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943345, 3560943345, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943346, 3560943346, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943347, 3560943347, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943348, 3560943348, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943349, 3560943349, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943350, 3560943350, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943351, 3560943351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943352, 3560943352, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943353, 3560943354, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943355, 3560943355, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943356, 3560943356, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943357, 3560943357, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943358, 3560943358, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943359, 3560943361, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943362, 3560943362, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943363, 3560943365, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943366, 3560943367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943368, 3560943368, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943369, 3560943369, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943370, 3560943370, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943371, 3560943371, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943372, 3560943372, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943373, 3560943375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943376, 3560943376, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943377, 3560943377, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943378, 3560943378, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943379, 3560943380, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943381, 3560943383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943384, 3560943384, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943385, 3560943385, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943386, 3560943386, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943387, 3560943387, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943388, 3560943391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943392, 3560943392, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943393, 3560943393, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943394, 3560943394, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943395, 3560943395, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943396, 3560943396, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943397, 3560943397, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943398, 3560943398, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943399, 3560943399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943400, 3560943400, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943401, 3560943401, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943402, 3560943402, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943403, 3560943403, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943404, 3560943404, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943405, 3560943405, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943406, 3560943407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943408, 3560943408, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943409, 3560943409, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943410, 3560943410, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943411, 3560943411, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943412, 3560943412, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943413, 3560943413, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943414, 3560943415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943416, 3560943416, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943417, 3560943417, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943418, 3560943418, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943419, 3560943419, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943420, 3560943420, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943421, 3560943421, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943422, 3560943422, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943423, 3560943423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943424, 3560943424, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943425, 3560943425, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943426, 3560943426, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943427, 3560943427, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943428, 3560943428, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943429, 3560943430, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943431, 3560943432, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943433, 3560943433, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943434, 3560943434, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943435, 3560943435, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943436, 3560943436, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943437, 3560943437, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943438, 3560943438, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943439, 3560943439, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943440, 3560943440, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943441, 3560943441, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943442, 3560943442, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943443, 3560943443, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943444, 3560943444, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943445, 3560943445, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943446, 3560943446, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943447, 3560943447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943448, 3560943450, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943451, 3560943451, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943452, 3560943452, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943453, 3560943454, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943455, 3560943456, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943457, 3560943457, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943458, 3560943459, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943460, 3560943460, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943461, 3560943461, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943462, 3560943462, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943463, 3560943463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943464, 3560943464, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943465, 3560943465, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943466, 3560943466, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943467, 3560943467, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943468, 3560943468, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943469, 3560943469, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943470, 3560943470, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943471, 3560943471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943472, 3560943472, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943473, 3560943473, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943474, 3560943474, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943475, 3560943475, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943476, 3560943476, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943477, 3560943477, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943478, 3560943478, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943479, 3560943479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943480, 3560943480, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943481, 3560943481, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943482, 3560943482, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943483, 3560943486, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943487, 3560943487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943488, 3560943488, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943489, 3560943489, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943490, 3560943490, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943491, 3560943491, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943492, 3560943493, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943494, 3560943494, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943495, 3560943495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943496, 3560943499, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943500, 3560943500, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943501, 3560943501, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943502, 3560943507, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943508, 3560943508, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943509, 3560943510, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943511, 3560943511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943512, 3560943512, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943513, 3560943513, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943514, 3560943515, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943516, 3560943517, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943518, 3560943518, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943519, 3560943519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943520, 3560943520, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943521, 3560943521, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943522, 3560943522, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943523, 3560943523, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943524, 3560943524, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943525, 3560943525, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943526, 3560943526, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943527, 3560943527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943528, 3560943528, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943529, 3560943529, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943530, 3560943530, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943531, 3560943532, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943533, 3560943533, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943534, 3560943534, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943535, 3560943535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943536, 3560943536, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943537, 3560943537, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943538, 3560943538, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943539, 3560943539, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943540, 3560943540, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943541, 3560943541, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943542, 3560943542, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943543, 3560943543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943544, 3560943544, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943545, 3560943546, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943547, 3560943547, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943548, 3560943548, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943549, 3560943549, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943550, 3560943550, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943551, 3560943551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943552, 3560943552, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943553, 3560943553, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943554, 3560943554, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943555, 3560943555, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943556, 3560943556, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943557, 3560943557, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943558, 3560943558, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943559, 3560943559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943560, 3560943562, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943563, 3560943563, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943564, 3560943564, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943565, 3560943565, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943566, 3560943566, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943567, 3560943567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943568, 3560943568, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943569, 3560943570, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943571, 3560943572, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943573, 3560943573, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943574, 3560943574, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943575, 3560943575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943576, 3560943576, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943577, 3560943577, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943578, 3560943578, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943579, 3560943580, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943581, 3560943581, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943582, 3560943582, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943583, 3560943583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943584, 3560943584, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943585, 3560943585, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943586, 3560943586, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943587, 3560943587, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943588, 3560943588, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943589, 3560943589, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943590, 3560943590, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943591, 3560943591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943592, 3560943592, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943593, 3560943593, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943594, 3560943594, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943595, 3560943596, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943597, 3560943599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943600, 3560943600, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943601, 3560943602, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943603, 3560943603, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943604, 3560943604, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943605, 3560943605, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943606, 3560943607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943608, 3560943608, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943609, 3560943610, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943611, 3560943611, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943612, 3560943612, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943613, 3560943613, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943614, 3560943617, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943618, 3560943618, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943619, 3560943620, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943621, 3560943621, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943622, 3560943622, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943623, 3560943623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943624, 3560943624, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943625, 3560943625, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943626, 3560943626, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943627, 3560943627, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943628, 3560943628, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943629, 3560943629, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943630, 3560943630, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943631, 3560943631, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943632, 3560943632, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943633, 3560943633, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943634, 3560943634, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943635, 3560943635, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943636, 3560943636, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943637, 3560943637, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943638, 3560943638, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943639, 3560943639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943640, 3560943640, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943641, 3560943643, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943644, 3560943644, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943645, 3560943645, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943646, 3560943646, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943647, 3560943647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943648, 3560943648, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943649, 3560943649, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943650, 3560943651, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943652, 3560943652, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943653, 3560943653, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943654, 3560943654, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943655, 3560943655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943656, 3560943656, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943657, 3560943657, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943658, 3560943658, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943659, 3560943659, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943660, 3560943660, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943661, 3560943661, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943662, 3560943662, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943663, 3560943664, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943665, 3560943666, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943667, 3560943667, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943668, 3560943668, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943669, 3560943669, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943670, 3560943671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943672, 3560943672, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943673, 3560943673, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943674, 3560943674, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943675, 3560943675, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943676, 3560943677, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943678, 3560943680, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943681, 3560943682, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943683, 3560943683, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943684, 3560943684, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943685, 3560943685, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943686, 3560943686, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943687, 3560943687, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943688, 3560943688, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943689, 3560943689, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943690, 3560943690, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943691, 3560943691, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943692, 3560943692, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943693, 3560943693, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943694, 3560943694, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943695, 3560943695, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943696, 3560943697, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943698, 3560943698, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943699, 3560943699, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943700, 3560943700, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943701, 3560943701, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943702, 3560943702, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943703, 3560943703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943704, 3560943704, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943705, 3560943705, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943706, 3560943706, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943707, 3560943709, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943710, 3560943710, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943711, 3560943711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943712, 3560943712, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943713, 3560943713, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943714, 3560943714, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943715, 3560943715, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943716, 3560943716, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943717, 3560943717, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943718, 3560943719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943720, 3560943721, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943722, 3560943726, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943727, 3560943727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943728, 3560943728, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943729, 3560943729, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943730, 3560943730, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943731, 3560943731, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943732, 3560943732, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943733, 3560943733, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943734, 3560943736, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943737, 3560943737, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943738, 3560943738, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943739, 3560943740, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943741, 3560943741, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943742, 3560943742, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943743, 3560943743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943744, 3560943744, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943745, 3560943745, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943746, 3560943748, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943749, 3560943749, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943750, 3560943750, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943751, 3560943751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943752, 3560943752, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943753, 3560943753, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943754, 3560943754, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943755, 3560943755, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943756, 3560943756, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943757, 3560943757, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943758, 3560943758, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943759, 3560943759, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943760, 3560943760, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943761, 3560943761, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943762, 3560943762, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943763, 3560943763, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943764, 3560943764, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943765, 3560943765, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943766, 3560943766, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943767, 3560943768, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943769, 3560943769, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943770, 3560943770, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943771, 3560943771, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943772, 3560943774, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943775, 3560943775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943776, 3560943780, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943781, 3560943781, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943782, 3560943782, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943783, 3560943783, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943784, 3560943786, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943787, 3560943787, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943788, 3560943788, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943789, 3560943789, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943790, 3560943790, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943791, 3560943791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943792, 3560943793, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943794, 3560943794, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943795, 3560943795, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943796, 3560943796, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943797, 3560943797, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943798, 3560943798, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943799, 3560943799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943800, 3560943800, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943801, 3560943801, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943802, 3560943802, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943803, 3560943803, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943804, 3560943804, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943805, 3560943805, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943806, 3560943806, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943807, 3560943807, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943808, 3560943810, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943811, 3560943811, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943812, 3560943812, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943813, 3560943813, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943814, 3560943814, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943815, 3560943815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943816, 3560943817, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943818, 3560943818, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943819, 3560943819, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943820, 3560943820, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943821, 3560943821, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943822, 3560943822, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943823, 3560943823, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943824, 3560943827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943828, 3560943828, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943829, 3560943829, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943830, 3560943830, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943831, 3560943833, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943834, 3560943835, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943836, 3560943836, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943837, 3560943837, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943838, 3560943838, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943839, 3560943839, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943840, 3560943840, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943841, 3560943841, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943842, 3560943842, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943843, 3560943843, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943844, 3560943844, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943845, 3560943845, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943846, 3560943846, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943847, 3560943847, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943848, 3560943848, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943849, 3560943849, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943850, 3560943850, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943851, 3560943857, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943858, 3560943858, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943859, 3560943859, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943860, 3560943860, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943861, 3560943865, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943866, 3560943866, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943867, 3560943867, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943868, 3560943868, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943869, 3560943869, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943870, 3560943871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943872, 3560943875, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943876, 3560943879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943880, 3560943887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943888, 3560943891, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943892, 3560943895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943896, 3560943899, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943900, 3560943903, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943904, 3560943915, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943916, 3560943919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943920, 3560943923, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943924, 3560943927, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943928, 3560943935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943936, 3560943939, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943940, 3560943943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943944, 3560943947, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943948, 3560943975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943976, 3560943979, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943980, 3560943983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943984, 3560943987, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943988, 3560943991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560943992, 3560943999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944000, 3560944023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944024, 3560944031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944032, 3560944035, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944036, 3560944039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944040, 3560944043, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944044, 3560944059, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944060, 3560944063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944064, 3560944067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944068, 3560944071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944072, 3560944079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944080, 3560944083, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944084, 3560944087, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944088, 3560944103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944104, 3560944107, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944108, 3560944119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944120, 3560944159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944160, 3560944163, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944164, 3560944167, N'AR', N'Argentina') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944168, 3560944175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944176, 3560944179, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944180, 3560944183, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944184, 3560944187, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944188, 3560944191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944192, 3560944195, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944196, 3560944199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944200, 3560944203, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944204, 3560944207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944208, 3560944211, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944212, 3560944215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944216, 3560944219, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944220, 3560944227, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944228, 3560944231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944232, 3560944235, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944236, 3560944239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944240, 3560944243, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944244, 3560944247, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944248, 3560944267, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944268, 3560944271, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944272, 3560944275, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944276, 3560944279, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944280, 3560944283, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944284, 3560944295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944296, 3560944299, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944300, 3560944307, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944308, 3560944311, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944312, 3560944315, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944316, 3560944323, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944324, 3560944339, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944340, 3560944343, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944344, 3560944351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944352, 3560944355, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944356, 3560944359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944360, 3560944363, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944364, 3560944367, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944368, 3560944371, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944372, 3560944375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944376, 3560944379, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944380, 3560944383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944384, 3560944395, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944396, 3560944399, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944400, 3560944403, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944404, 3560944411, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944412, 3560944415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944416, 3560944419, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944420, 3560944431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944432, 3560944435, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944436, 3560944447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944448, 3560944451, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944452, 3560944459, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944460, 3560944460, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944461, 3560944463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944464, 3560944467, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944468, 3560944471, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944472, 3560944475, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944476, 3560944479, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944480, 3560944487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944488, 3560944491, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944492, 3560944519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944520, 3560944523, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944524, 3560944531, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944532, 3560944535, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944536, 3560944551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944552, 3560944555, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944556, 3560944559, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944560, 3560944563, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944564, 3560944567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944568, 3560944575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944576, 3560944579, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944580, 3560944603, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944604, 3560944607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944608, 3560944615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944616, 3560944619, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944620, 3560944623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944624, 3560944627, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944628, 3560944631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944632, 3560944635, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944636, 3560944639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944640, 3560944643, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944644, 3560944647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944648, 3560944651, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944652, 3560944655, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944656, 3560944659, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944660, 3560944663, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944664, 3560944667, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944668, 3560944671, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944672, 3560944675, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944676, 3560944679, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944680, 3560944687, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944688, 3560944691, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944692, 3560944695, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944696, 3560944699, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944700, 3560944703, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944704, 3560944707, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944708, 3560944711, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944712, 3560944715, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944716, 3560944719, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944720, 3560944723, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944724, 3560944727, N'TR', N'Turkey') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944728, 3560944731, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944732, 3560944735, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944736, 3560944743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944744, 3560944747, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944748, 3560944755, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944756, 3560944759, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944760, 3560944767, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944768, 3560944771, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944772, 3560944779, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944780, 3560944783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944784, 3560944787, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944788, 3560944791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944792, 3560944795, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944796, 3560944799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944800, 3560944803, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944804, 3560944807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944808, 3560944811, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944812, 3560944815, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944816, 3560944823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944824, 3560944827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944828, 3560944831, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944832, 3560944835, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944836, 3560944839, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944840, 3560944843, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944844, 3560944847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944848, 3560944855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944856, 3560944859, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944860, 3560944863, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944864, 3560944871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944872, 3560944875, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944876, 3560944879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944880, 3560944883, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944884, 3560944887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944888, 3560944891, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944892, 3560944895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944896, 3560944899, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944900, 3560944903, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944904, 3560944907, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944908, 3560944919, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944920, 3560944923, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944924, 3560944927, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944928, 3560944931, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944932, 3560944935, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944936, 3560944943, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944944, 3560944947, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944948, 3560944951, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944952, 3560944955, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944956, 3560944959, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944960, 3560944963, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944964, 3560944967, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944968, 3560944971, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944972, 3560944975, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944976, 3560944987, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944988, 3560944991, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944992, 3560944995, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560944996, 3560944999, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945000, 3560945003, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945004, 3560945027, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945028, 3560945031, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945032, 3560945035, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945036, 3560945039, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945040, 3560945043, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945044, 3560945047, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945048, 3560945059, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945060, 3560945063, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945064, 3560945067, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945068, 3560945075, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945076, 3560945083, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945084, 3560945091, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945092, 3560945095, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945096, 3560945099, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945100, 3560945103, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945104, 3560945107, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945108, 3560945111, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945112, 3560945115, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945116, 3560945119, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945120, 3560945123, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945124, 3560945131, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945132, 3560945135, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945136, 3560945139, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945140, 3560945143, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945144, 3560945147, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945148, 3560945151, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945152, 3560945153, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945154, 3560945156, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945157, 3560945157, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945158, 3560945167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945168, 3560945168, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945169, 3560945169, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945170, 3560945191, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945192, 3560945192, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945193, 3560945194, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945195, 3560945195, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945196, 3560945204, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945205, 3560945205, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945206, 3560945206, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945207, 3560945208, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945209, 3560945267, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945268, 3560945271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945272, 3560945279, N'IN', N'India') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945280, 3560945355, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945356, 3560945359, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945360, 3560945403, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945404, 3560945407, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945408, 3560945409, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945410, 3560945410, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945411, 3560945411, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945412, 3560945412, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945413, 3560945413, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945414, 3560945414, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945415, 3560945416, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945417, 3560945418, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945419, 3560945419, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945420, 3560945420, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945421, 3560945422, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945423, 3560945423, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945424, 3560945424, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945425, 3560945425, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945426, 3560945426, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945427, 3560945427, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945428, 3560945428, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945429, 3560945429, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945430, 3560945430, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945431, 3560945431, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945432, 3560945433, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945434, 3560945434, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945435, 3560945435, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945436, 3560945436, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945437, 3560945437, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945438, 3560945438, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945439, 3560945439, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945440, 3560945440, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945441, 3560945441, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945442, 3560945443, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945444, 3560945448, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945449, 3560945449, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945450, 3560945450, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945451, 3560945451, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945452, 3560945452, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945453, 3560945453, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945454, 3560945458, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945459, 3560945459, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945460, 3560945461, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945462, 3560945462, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945463, 3560945465, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945466, 3560945466, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945467, 3560945467, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945468, 3560945469, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945470, 3560945470, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945471, 3560945471, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945472, 3560945472, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945473, 3560945473, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945474, 3560945475, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945476, 3560945476, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945477, 3560945477, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945478, 3560945478, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945479, 3560945479, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945480, 3560945482, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945483, 3560945485, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945486, 3560945488, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945489, 3560945489, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945490, 3560945490, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945491, 3560945499, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945500, 3560945500, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945501, 3560945501, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945502, 3560945519, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945520, 3560945523, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945524, 3560945527, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945528, 3560945535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945536, 3560945539, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945540, 3560945543, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945544, 3560945559, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945560, 3560945563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945564, 3560945567, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945568, 3560945575, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945576, 3560945579, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945580, 3560945583, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945584, 3560945587, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945588, 3560945591, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945592, 3560945603, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945604, 3560945607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945608, 3560945611, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945612, 3560945619, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945620, 3560945627, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945628, 3560945635, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945636, 3560945639, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945640, 3560945643, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945644, 3560945647, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945648, 3560945651, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945652, 3560945659, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945660, 3560945663, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945664, 3560945667, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945668, 3560945671, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945672, 3560945675, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945676, 3560945679, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945680, 3560945683, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945684, 3560945691, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945692, 3560945699, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945700, 3560945703, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945704, 3560945707, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945708, 3560945711, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945712, 3560945727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945728, 3560945731, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945732, 3560945739, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945740, 3560945743, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945744, 3560945747, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945748, 3560945751, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945752, 3560945763, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945764, 3560945767, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945768, 3560945771, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945772, 3560945775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945776, 3560945787, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945788, 3560945791, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945792, 3560945795, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945796, 3560945799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945800, 3560945803, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945804, 3560945807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945808, 3560945811, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945812, 3560945815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945816, 3560945819, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945820, 3560945823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945824, 3560945827, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945828, 3560945835, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945836, 3560945839, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945840, 3560945843, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945844, 3560945851, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945852, 3560945855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945856, 3560945859, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945860, 3560945863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945864, 3560945867, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945868, 3560945871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945872, 3560945875, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945876, 3560945911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945912, 3560945915, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945916, 3560945919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560945920, 3560946017, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946018, 3560946018, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946019, 3560946019, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946020, 3560946176, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946177, 3560946189, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946190, 3560946190, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946191, 3560946194, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946195, 3560946195, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946196, 3560946196, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946197, 3560946197, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946198, 3560946198, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946199, 3560946199, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946200, 3560946200, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946201, 3560946201, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946202, 3560946202, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946203, 3560946203, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946204, 3560946204, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946205, 3560946205, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946206, 3560946208, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946209, 3560946209, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946210, 3560946212, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946213, 3560946213, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946214, 3560946214, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946215, 3560946215, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946216, 3560946229, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946230, 3560946230, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946231, 3560946231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946232, 3560946232, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946233, 3560946234, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946235, 3560946235, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946236, 3560946237, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946238, 3560946238, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946239, 3560946246, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946247, 3560946247, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946248, 3560946253, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946254, 3560946254, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946255, 3560946256, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946257, 3560946257, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946258, 3560946258, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946259, 3560946259, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946260, 3560946260, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946261, 3560946262, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946263, 3560946263, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946264, 3560946266, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946267, 3560946267, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946268, 3560946271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946272, 3560946272, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946273, 3560946273, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946274, 3560946279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946280, 3560946280, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946281, 3560946282, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946283, 3560946283, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946284, 3560946284, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946285, 3560946285, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946286, 3560946290, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946291, 3560946291, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946292, 3560946295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946296, 3560946296, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946297, 3560946297, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946298, 3560946298, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946299, 3560946299, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946300, 3560946300, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946301, 3560946311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946312, 3560946312, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946313, 3560946317, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946318, 3560946319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946320, 3560946320, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946321, 3560946326, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946327, 3560946327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946328, 3560946328, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946329, 3560946329, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946330, 3560946330, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946331, 3560946331, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946332, 3560946333, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946334, 3560946335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946336, 3560946336, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946337, 3560946337, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946338, 3560946338, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946339, 3560946339, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946340, 3560946340, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946341, 3560946342, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946343, 3560946343, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946344, 3560946344, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946345, 3560946345, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946346, 3560946346, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946347, 3560946347, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946348, 3560946361, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946362, 3560946363, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946364, 3560946367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946368, 3560946368, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946369, 3560946372, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946373, 3560946373, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946374, 3560946374, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946375, 3560946375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946376, 3560946398, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946399, 3560946399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946400, 3560946408, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946409, 3560946409, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946410, 3560946419, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946420, 3560946420, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946421, 3560946431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946432, 3560946443, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946444, 3560946447, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946448, 3560946451, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946452, 3560946455, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946456, 3560946467, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946468, 3560946471, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946472, 3560946483, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946484, 3560946487, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946488, 3560946491, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946492, 3560946495, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946496, 3560946499, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946500, 3560946503, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946504, 3560946507, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946508, 3560946511, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946512, 3560946523, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946524, 3560946527, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946528, 3560946531, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946532, 3560946535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946536, 3560946539, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946540, 3560946543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946544, 3560946547, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946548, 3560946551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946552, 3560946555, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946556, 3560946559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946560, 3560946563, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946564, 3560946567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946568, 3560946571, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946572, 3560946579, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946580, 3560946583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946584, 3560946587, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946588, 3560946591, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946592, 3560946603, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946604, 3560946607, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946608, 3560946611, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946612, 3560946623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946624, 3560946635, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946636, 3560946643, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946644, 3560946647, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946648, 3560946651, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946652, 3560946655, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946656, 3560946659, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946660, 3560946663, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946664, 3560946667, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946668, 3560946671, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946672, 3560946679, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946680, 3560946687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946688, 3560946689, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946690, 3560946695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946696, 3560946696, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946697, 3560946698, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946699, 3560946700, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946701, 3560946701, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946702, 3560946706, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946707, 3560946707, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946708, 3560946708, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946709, 3560946710, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946711, 3560946711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946712, 3560946712, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946713, 3560946714, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946715, 3560946715, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946716, 3560946716, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946717, 3560946717, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946718, 3560946718, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946719, 3560946720, N'BR', N'Brazil') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946721, 3560946723, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946724, 3560946724, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946725, 3560946729, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946730, 3560946730, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946731, 3560946733, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946734, 3560946734, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946735, 3560946747, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946748, 3560946748, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946749, 3560946760, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946761, 3560946761, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946762, 3560946767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946768, 3560946768, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946769, 3560946769, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946770, 3560946825, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946826, 3560946826, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946827, 3560946835, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946836, 3560946836, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946837, 3560946839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946840, 3560946840, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946841, 3560946943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946944, 3560946947, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946948, 3560946951, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946952, 3560946955, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946956, 3560946959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946960, 3560946963, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946964, 3560946967, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946968, 3560946979, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946980, 3560946987, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946988, 3560946991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946992, 3560946995, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560946996, 3560946999, N'UY', N'Uruguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947000, 3560947007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947008, 3560947011, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947012, 3560947015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947016, 3560947019, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947020, 3560947027, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947028, 3560947031, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947032, 3560947039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947040, 3560947043, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947044, 3560947067, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947068, 3560947071, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947072, 3560947075, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947076, 3560947087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947088, 3560947091, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947092, 3560947095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947096, 3560947099, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947100, 3560947107, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947108, 3560947111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947112, 3560947123, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947124, 3560947127, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947128, 3560947143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947144, 3560947147, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947148, 3560947191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947192, 3560947195, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947196, 3560947199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947200, 3560947203, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947204, 3560947207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947208, 3560947211, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947212, 3560947231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947232, 3560947235, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947236, 3560947239, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947240, 3560947247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947248, 3560947251, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947252, 3560947267, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947268, 3560947271, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947272, 3560947275, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947276, 3560947279, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947280, 3560947283, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947284, 3560947287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947288, 3560947291, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947292, 3560947331, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947332, 3560947335, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947336, 3560947343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947344, 3560947347, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947348, 3560947351, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947352, 3560947355, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947356, 3560947359, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947360, 3560947363, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947364, 3560947367, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947368, 3560947371, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947372, 3560947375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947376, 3560947383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947384, 3560947391, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947392, 3560947395, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947396, 3560947399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947400, 3560947407, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947408, 3560947411, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947412, 3560947415, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947416, 3560947431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947432, 3560947435, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947436, 3560947439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947440, 3560947443, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947444, 3560947455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947456, 3560947495, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947496, 3560947499, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947500, 3560947686, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947687, 3560947687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947688, 3560947711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560947712, 3560955903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560955904, 3560964095, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560964096, 3560996863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3560996864, 3561005055, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561005056, 3561013247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561013248, 3561021439, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561021440, 3561022719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561022720, 3561022975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561022976, 3561037823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561037824, 3561046015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561046016, 3561054207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561054208, 3561062399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561062400, 3561070591, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561070592, 3561078783, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561078784, 3561095167, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561095168, 3561103359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561103360, 3561111551, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561111552, 3561119743, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561119744, 3561127935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561127936, 3561136127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561136128, 3561144319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561144320, 3561152511, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561152512, 3561160703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561160704, 3561168895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561168896, 3561177087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561177088, 3561181215, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561181216, 3561181247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561181248, 3561181263, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561181264, 3561181271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561181272, 3561185279, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561185280, 3561201663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561201664, 3561209855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561209856, 3561218047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561218048, 3561226239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561226240, 3561234431, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561234432, 3561242623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561242624, 3561259007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561259008, 3561267199, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561267200, 3561275391, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561275392, 3561291775, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561291776, 3561299967, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561299968, 3561308159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561308160, 3561316351, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561316352, 3561324543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561324544, 3561332735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561332736, 3561340927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561340928, 3561357311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561357312, 3561365503, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561365504, 3561373695, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561373696, 3561381887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561381888, 3561382479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561382480, 3561382495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561382496, 3561390079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561390080, 3561398271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561398272, 3561406463, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561406464, 3561414655, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561414656, 3561422847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561422848, 3561423487, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561423488, 3561423615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561423616, 3561427207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561427208, 3561427211, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561427212, 3561427691, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561427692, 3561427695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561427696, 3561430655, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561430656, 3561430783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561430784, 3561430991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561430992, 3561431006, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561431007, 3561431039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561431040, 3561439231, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561439232, 3561447423, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561447424, 3561455615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561455616, 3561471999, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561472000, 3561480191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561480192, 3561487359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561487360, 3561487375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561487376, 3561488383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561488384, 3561496575, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561496576, 3561496735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561496736, 3561497215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561497216, 3561497423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561497424, 3561497471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561497472, 3561498367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498368, 3561498399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498400, 3561498431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498432, 3561498487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498488, 3561498491, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498492, 3561498607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498608, 3561498615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498616, 3561498623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561498624, 3561500415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561500416, 3561500671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561500672, 3561500751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561500752, 3561500775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561500776, 3561500807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561500808, 3561500815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561500816, 3561500991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561500992, 3561501055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561501056, 3561501375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561501376, 3561501407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561501408, 3561501535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561501536, 3561501567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561501568, 3561502631, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561502632, 3561502655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561502656, 3561504351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561504352, 3561504383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561504384, 3561504767, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561504768, 3561512959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561512960, 3561521151, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561521152, 3561529343, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561529344, 3561537535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561537536, 3561545727, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561545728, 3561553919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561553920, 3561562111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561562112, 3561570303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561570304, 3561578495, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561578496, 3561586687, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561586688, 3561594879, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561594880, 3561594935, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561594936, 3561594939, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561594940, 3561594975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561594976, 3561595007, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561595008, 3561603071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603072, 3561603263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603264, 3561603327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603328, 3561603455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603456, 3561603487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603488, 3561603519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603520, 3561603583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603584, 3561603775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561603776, 3561604463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561604464, 3561604479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561604480, 3561604895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561604896, 3561604911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561604912, 3561605119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561605120, 3561606399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561606400, 3561606655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561606656, 3561607231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561607232, 3561607235, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561607236, 3561607239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561607240, 3561607247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561607248, 3561607343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561607344, 3561607359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561607360, 3561607679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561607680, 3561608191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561608192, 3561608703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561608704, 3561609727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561609728, 3561610239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561610240, 3561610495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561610496, 3561610559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561610560, 3561610623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561610624, 3561610719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561610720, 3561610751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561610752, 3561611263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561611264, 3561611295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561611296, 3561611559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561611560, 3561611567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561611568, 3561613055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561613056, 3561613183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561613184, 3561614175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561614176, 3561614199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561614200, 3561615359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561615360, 3561615615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561615616, 3561615871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561615872, 3561616447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561616448, 3561616511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561616512, 3561616543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561616544, 3561616559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561616560, 3561616575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561616576, 3561616895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561616896, 3561616959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561616960, 3561617407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561617408, 3561617919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561617920, 3561618175, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561618176, 3561618431, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561618432, 3561618687, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561618688, 3561618815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561618816, 3561618943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561618944, 3561619455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561619456, 3561627647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561627648, 3561635839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561635840, 3561636863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561636864, 3561637119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561637120, 3561637375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561637376, 3561637631, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561637632, 3561637887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561637888, 3561638143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561638144, 3561638399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561638400, 3561638655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561638656, 3561638911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561638912, 3561639423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561639424, 3561639679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561639680, 3561640575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561640576, 3561640831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561640832, 3561641983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561641984, 3561642239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561642240, 3561652223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561652224, 3561668607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561668608, 3561676799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561676800, 3561679359, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561679360, 3561679615, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561679616, 3561684991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561684992, 3561693183, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561693184, 3561701375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561701376, 3561706031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561706032, 3561706047, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561706048, 3561709567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561709568, 3561717759, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561717760, 3561725951, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561725952, 3561734143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561734144, 3561742335, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561742336, 3561750527, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561750528, 3561758719, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561758720, 3561766911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561766912, 3561775103, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561775104, 3561783295, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561783296, 3561791487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561791488, 3561799679, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561799680, 3561807871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561807872, 3561816063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561816064, 3561824255, N'VA', N'Holy See (Vatican City State)') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561824256, 3561832447, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561832448, 3561840639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561840640, 3561848831, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561848832, 3561857023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561857024, 3561865215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561865216, 3561873407, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561873408, 3561881599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561881600, 3561889791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561889792, 3561897983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561897984, 3561906175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561906176, 3561914367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561914368, 3561922559, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561922560, 3561922879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561922880, 3561922895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561922896, 3561923039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923040, 3561923047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923048, 3561923063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923064, 3561923067, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923068, 3561923535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923536, 3561923647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923648, 3561923847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923848, 3561923855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561923856, 3561926655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561926656, 3561926911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561926912, 3561926975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561926976, 3561927167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561927168, 3561927871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561927872, 3561927935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561927936, 3561929727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561929728, 3561929743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561929744, 3561929855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561929856, 3561929871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561929872, 3561929919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561929920, 3561929967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561929968, 3561930335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561930336, 3561930431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561930432, 3561930495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561930496, 3561930503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561930504, 3561930527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561930528, 3561930687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561930688, 3561930751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561930752, 3561938943, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561938944, 3561947135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561947136, 3561963519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561963520, 3561971711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561971712, 3561976831, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561976832, 3561977343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561977344, 3561977855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561977856, 3561978367, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561978368, 3561979903, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561979904, 3561988095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3561988096, 3562004479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562004480, 3562006159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562006160, 3562006175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562006176, 3562006819, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562006820, 3562006823, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562006824, 3562007839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562007840, 3562007871, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562007872, 3562007903, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562007904, 3562010399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562010400, 3562010431, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562010432, 3562010943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562010944, 3562010975, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562010976, 3562012479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562012480, 3562012483, N'KN', N'Saint Kitts and Nevis') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562012484, 3562012671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562012672, 3562020863, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562020864, 3562029055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562029056, 3562037247, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562037248, 3562045439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562045440, 3562056703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056704, 3562056719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056720, 3562056799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056800, 3562056815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056816, 3562056831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056832, 3562056847, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056848, 3562056855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056856, 3562056871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056872, 3562056895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056896, 3562056911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056912, 3562056959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562056960, 3562057215, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562057216, 3562057247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562057248, 3562057263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562057264, 3562057471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562057472, 3562057727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562057728, 3562057975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562057976, 3562057983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562057984, 3562058303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562058304, 3562058367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562058368, 3562058383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562058384, 3562058399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562058400, 3562059327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562059328, 3562059335, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562059336, 3562059391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562059392, 3562059775, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562059776, 3562061823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562061824, 3562070015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562070016, 3562078207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562078208, 3562086399, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562086400, 3562087423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562087424, 3562088447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562088448, 3562094591, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562094592, 3562098879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562098880, 3562098895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562098896, 3562102415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562102416, 3562102431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562102432, 3562105503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562105504, 3562105535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562105536, 3562110975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562110976, 3562143743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562143744, 3562151935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562151936, 3562160127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562160128, 3562161151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562161152, 3562161183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562161184, 3562168319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562168320, 3562176511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562176512, 3562184703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562184704, 3562192895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562192896, 3562201087, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562201088, 3562209279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562209280, 3562217471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562217472, 3562225663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562225664, 3562233855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562233856, 3562242047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562242048, 3562258431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562258432, 3562283007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562283008, 3562291199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562291200, 3562299391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562299392, 3562307583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562307584, 3562315775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562315776, 3562323967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562323968, 3562340351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562340352, 3562348543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562348544, 3562356735, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562356736, 3562364927, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562364928, 3562373119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562373120, 3562381311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562381312, 3562389503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562389504, 3562395647, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562395648, 3562395903, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562395904, 3562396159, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562396160, 3562397695, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562397696, 3562405887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562405888, 3562414079, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562414080, 3562422271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562422272, 3562430463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562430464, 3562438655, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562438656, 3562463231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562463232, 3562471423, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562471424, 3562479615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562479616, 3562487807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562487808, 3562495999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562496000, 3562504191, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562504192, 3562512383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562512384, 3562520575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562520576, 3562528767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562528768, 3562536959, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562536960, 3562545151, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562545152, 3562553343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562553344, 3562561535, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562561536, 3562569727, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562569728, 3562577919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562577920, 3562586111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562586112, 3562594303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562594304, 3562595423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562595424, 3562595455, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562595456, 3562598207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562598208, 3562598223, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562598224, 3562602495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562602496, 3562610687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562610688, 3562618879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562618880, 3562627071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562627072, 3562643455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562643456, 3562651647, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562651648, 3562659839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562659840, 3562668031, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562668032, 3562676223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562676224, 3562684415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562684416, 3562692607, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562692608, 3562695375, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562695376, 3562695379, N'CZ', N'Czech Republic') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562695380, 3562698751, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562698752, 3562699775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562699776, 3562700799, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562700800, 3562708991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562708992, 3562717183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562717184, 3562725375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562725376, 3562733567, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562733568, 3562741759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562741760, 3562758143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562758144, 3562766335, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562766336, 3562774527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562774528, 3562782719, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562782720, 3562790911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562790912, 3562799103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562799104, 3562807295, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562807296, 3562815487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562815488, 3562823679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562823680, 3562848255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562848256, 3562856447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562856448, 3562864639, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562864640, 3562872831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562872832, 3562881023, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562881024, 3562889215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562889216, 3562897407, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562897408, 3562905599, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562905600, 3562921983, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562921984, 3562930175, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562930176, 3562938367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562938368, 3562946559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562946560, 3562954751, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562954752, 3562962943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562962944, 3562971135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562971136, 3562987519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562987520, 3562995711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3562995712, 3563003903, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563003904, 3563012095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563012096, 3563020287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563020288, 3563028479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563028480, 3563036671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563036672, 3563044863, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563044864, 3563053055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563053056, 3563061247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563061248, 3563061759, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563061760, 3563062527, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563062528, 3563067391, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563067392, 3563067519, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563067520, 3563067647, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563067648, 3563067903, N'MZ', N'Mozambique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563067904, 3563068415, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563068416, 3563068671, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563068672, 3563068927, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563068928, 3563069183, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563069184, 3563069439, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563069440, 3563077631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563077632, 3563085567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563085568, 3563085823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563085824, 3563094015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563094016, 3563096255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563096256, 3563096287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563096288, 3563097087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097088, 3563097119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097120, 3563097151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097152, 3563097183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097184, 3563097215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097216, 3563097247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097248, 3563097311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097312, 3563097343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097344, 3563097727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097728, 3563097791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563097792, 3563102207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563102208, 3563110399, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563110400, 3563118591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563118592, 3563126783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563126784, 3563134975, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563134976, 3563143167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563143168, 3563151359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563151360, 3563159551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563159552, 3563167743, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563167744, 3563175935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563175936, 3563192319, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563192320, 3563200511, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563200512, 3563208703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563208704, 3563225087, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563225088, 3563233279, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563233280, 3563241471, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563241472, 3563257855, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563257856, 3563290623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563290624, 3563315199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563315200, 3563323391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563323392, 3563331583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563331584, 3563339775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563339776, 3563347967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563347968, 3563356159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563356160, 3563364351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563364352, 3563372543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563372544, 3563380735, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563380736, 3563381927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563381928, 3563381935, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563381936, 3563381951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563381952, 3563381959, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563381960, 3563382383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563382384, 3563382391, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563382392, 3563382495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563382496, 3563382503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563382504, 3563382583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563382584, 3563382587, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563382588, 3563382589, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563382590, 3563388927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563388928, 3563397119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563397120, 3563405311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563405312, 3563407871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563407872, 3563407903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563407904, 3563413503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563413504, 3563421695, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563421696, 3563438079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563438080, 3563446271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563446272, 3563454463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563454464, 3563462655, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563462656, 3563479039, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563479040, 3563487231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563487232, 3563495423, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563495424, 3563503615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563503616, 3563511807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563511808, 3563519999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563520000, 3563528191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563528192, 3563536383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563536384, 3563544575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563544576, 3563552767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563552768, 3563560959, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563560960, 3563569151, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563569152, 3563577343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563577344, 3563585535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563585536, 3563601919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563601920, 3563610111, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563610112, 3563618303, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563618304, 3563626495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563626496, 3563634687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563634688, 3563651071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563651072, 3563683839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563683840, 3563692031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563692032, 3563700223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563700224, 3563708415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563708416, 3563716607, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563716608, 3563724799, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563724800, 3563732991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563732992, 3563741183, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563741184, 3563749375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563749376, 3563765759, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563765760, 3563782143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563782144, 3563790335, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563790336, 3563798527, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563798528, 3563800447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800448, 3563800463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800464, 3563800495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800496, 3563800511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800512, 3563800607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800608, 3563800623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800624, 3563800751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800752, 3563800767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800768, 3563800911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563800912, 3563801007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801008, 3563801087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801088, 3563801103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801104, 3563801279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801280, 3563801295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801296, 3563801375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801376, 3563801391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801392, 3563801407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801408, 3563801423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801424, 3563801439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801440, 3563801487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801488, 3563801503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801504, 3563801519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801520, 3563801551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801552, 3563801567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801568, 3563801599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801600, 3563801615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801616, 3563801631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801632, 3563801679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801680, 3563801695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801696, 3563801743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801744, 3563801791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801792, 3563801807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801808, 3563801839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801840, 3563801855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801856, 3563801922, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801923, 3563801935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563801936, 3563802127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802128, 3563802143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802144, 3563802159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802160, 3563802175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802176, 3563802255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802256, 3563802271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802272, 3563802575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802576, 3563802591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802592, 3563802623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802624, 3563802655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802656, 3563802735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802736, 3563802751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802752, 3563802783, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563802784, 3563803007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803008, 3563803023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803024, 3563803039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803040, 3563803055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803056, 3563803119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803120, 3563803135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803136, 3563803151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803152, 3563803167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803168, 3563803183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803184, 3563803215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803216, 3563803247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803248, 3563803327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803328, 3563803359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803360, 3563803439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803440, 3563803455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803456, 3563803487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803488, 3563803503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803504, 3563803519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803520, 3563803615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803616, 3563803647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803648, 3563803967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803968, 3563803983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563803984, 3563804695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563804696, 3563804703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563804704, 3563804719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563804720, 3563804727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563804728, 3563806543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563806544, 3563806559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563806560, 3563806687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563806688, 3563806703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563806704, 3563806719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563806720, 3563814911, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563814912, 3563823103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563823104, 3563831295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563831296, 3563839487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563839488, 3563847679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563847680, 3563848255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848256, 3563848319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848320, 3563848327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848328, 3563848335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848336, 3563848383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848384, 3563848447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848448, 3563848575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848576, 3563848583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848584, 3563848639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848640, 3563848703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848704, 3563848959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848960, 3563848975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848976, 3563848983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563848984, 3563848999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849000, 3563849007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849008, 3563849023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849024, 3563849087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849088, 3563849119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849120, 3563849183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849184, 3563849197, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849198, 3563849199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849200, 3563849211, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849212, 3563849215, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849216, 3563849727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849728, 3563849991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563849992, 3563849999, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850000, 3563850007, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850008, 3563850047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850048, 3563850111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850112, 3563850239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850240, 3563850751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850752, 3563850767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850768, 3563850815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850816, 3563850991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850992, 3563850995, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563850996, 3563851007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563851008, 3563851199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563851200, 3563851263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563851264, 3563851775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563851776, 3563852031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852032, 3563852071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852072, 3563852095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852096, 3563852159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852160, 3563852191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852192, 3563852207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852208, 3563852216, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852217, 3563852271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852272, 3563852287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852288, 3563852415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852416, 3563852543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852544, 3563852799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563852800, 3563853327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563853328, 3563853823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563853824, 3563854079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563854080, 3563854103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563854104, 3563854175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563854176, 3563854239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563854240, 3563854259, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563854260, 3563854591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563854592, 3563854847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563854848, 3563855551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563855552, 3563855583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563855584, 3563855615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563855616, 3563855871, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563855872, 3563864063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563864064, 3563868159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563868160, 3563872255, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563872256, 3563880447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563880448, 3563888639, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563888640, 3563896831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563896832, 3563913215, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563913216, 3563921407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563921408, 3563929599, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563929600, 3563937791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563937792, 3563945983, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563945984, 3563954175, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563954176, 3563962367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563962368, 3563970559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563970560, 3563978751, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563978752, 3563995135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3563995136, 3564003327, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564003328, 3564004863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564004864, 3564004927, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564004928, 3564007455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564007456, 3564007487, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564007488, 3564008191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564008192, 3564008223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564008224, 3564011519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564011520, 3564019711, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564019712, 3564027903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564027904, 3564036351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564036352, 3564036863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564036864, 3564037119, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564037120, 3564037375, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564037376, 3564037631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564037632, 3564038143, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564038144, 3564038399, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564038400, 3564038655, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564038656, 3564039167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564039168, 3564039679, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564039680, 3564039935, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564039936, 3564040447, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564040448, 3564040703, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564040704, 3564041215, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564041216, 3564042239, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564042240, 3564042495, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564042496, 3564042751, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564042752, 3564043007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564043008, 3564044287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564044288, 3564052479, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564052480, 3564060671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564060672, 3564068863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564068864, 3564077055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564077056, 3564093439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564093440, 3564101631, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564101632, 3564109823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564109824, 3564126207, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564126208, 3564134399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564134400, 3564142591, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564142592, 3564150783, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564150784, 3564158975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564158976, 3564161855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564161856, 3564161891, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564161892, 3564175359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564175360, 3564183551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564183552, 3564191743, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564191744, 3564199935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564199936, 3564208127, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564208128, 3564224511, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564224512, 3564232703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564232704, 3564240895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564240896, 3564241407, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564241408, 3564249087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564249088, 3564260735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564260736, 3564260863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564260864, 3564265471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564265472, 3564273663, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564273664, 3564302655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564302656, 3564302687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564302688, 3564306431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564306432, 3564314623, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564314624, 3564322815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564322816, 3564331007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564331008, 3564339199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564339200, 3564344231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564344232, 3564344239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564344240, 3564363775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564363776, 3564371967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564371968, 3564380159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564380160, 3564388351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564388352, 3564396543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564396544, 3564404735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564404736, 3564412927, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564412928, 3564421119, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564421120, 3564429311, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564429312, 3564431567, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564431568, 3564431583, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564431584, 3564437503, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564437504, 3564445695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564445696, 3564453887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564453888, 3564462079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564462080, 3564470271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564470272, 3564471343, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564471344, 3564471359, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564471360, 3564472771, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564472772, 3564472775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564472776, 3564472787, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564472788, 3564472831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564472832, 3564473375, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564473376, 3564473383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564473384, 3564473439, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564473440, 3564473535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564473536, 3564473647, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564473648, 3564473663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564473664, 3564474175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474176, 3564474239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474240, 3564474335, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474336, 3564474367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474368, 3564474583, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474584, 3564474591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474592, 3564474719, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474720, 3564474751, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474752, 3564474783, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474784, 3564474815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564474816, 3564475167, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564475168, 3564475199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564475200, 3564475807, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564475808, 3564475815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564475816, 3564476687, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564476688, 3564476703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564476704, 3564477055, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564477056, 3564477071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564477072, 3564477119, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564477120, 3564477151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564477152, 3564478463, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564478464, 3564486655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564486656, 3564494847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564494848, 3564494907, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564494908, 3564494911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564494912, 3564495203, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564495204, 3564495615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564495616, 3564495743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564495744, 3564495871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564495872, 3564495927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564495928, 3564495935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564495936, 3564496111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496112, 3564496127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496128, 3564496175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496176, 3564496183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496184, 3564496199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496200, 3564496207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496208, 3564496215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496216, 3564496223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496224, 3564496263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496264, 3564496271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496272, 3564496319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496320, 3564496327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496328, 3564496335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496336, 3564496607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496608, 3564496639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496640, 3564496655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496656, 3564496671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496672, 3564496847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496848, 3564496863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496864, 3564496895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564496896, 3564498943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564498944, 3564499007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499008, 3564499055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499056, 3564499199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499200, 3564499215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499216, 3564499231, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499232, 3564499239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499240, 3564499247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499248, 3564499335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499336, 3564499455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499456, 3564499551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499552, 3564499711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564499712, 3564500991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564500992, 3564500999, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501000, 3564501247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501248, 3564501263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501264, 3564501279, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501280, 3564501311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501312, 3564501503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501504, 3564501507, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501508, 3564501511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501512, 3564501759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501760, 3564501887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564501888, 3564502527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564502528, 3564502559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564502560, 3564502591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564502592, 3564503039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564503040, 3564511231, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564511232, 3564519423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564519424, 3564527615, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564527616, 3564543999, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564544000, 3564560383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564560384, 3564560927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564560928, 3564560959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564560960, 3564561055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564561056, 3564561087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564561088, 3564561151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564561152, 3564561183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564561184, 3564561663, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564561664, 3564561791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564561792, 3564561919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564561920, 3564562431, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564562432, 3564562687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564562688, 3564562943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564562944, 3564563711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564563712, 3564563967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564563968, 3564564223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564564224, 3564564479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564564480, 3564565343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564565344, 3564565375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564565376, 3564566207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564566208, 3564566223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564566224, 3564567143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564567144, 3564567151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564567152, 3564567247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564567248, 3564567263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564567264, 3564567807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564567808, 3564567935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564567936, 3564568039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564568040, 3564568055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564568056, 3564568063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564568064, 3564568191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564568192, 3564568223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564568224, 3564568231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564568232, 3564571055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571056, 3564571071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571072, 3564571135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571136, 3564571455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571456, 3564571479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571480, 3564571487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571488, 3564571511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571512, 3564571519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571520, 3564571567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571568, 3564571583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571584, 3564571591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571592, 3564571599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564571600, 3564572271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564572272, 3564572287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564572288, 3564576767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564576768, 3564584959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564584960, 3564593151, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564593152, 3564601343, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564601344, 3564609535, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564609536, 3564634111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564634112, 3564642303, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564642304, 3564650495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564650496, 3564666879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564666880, 3564668943, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564668944, 3564668991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564668992, 3564669103, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669104, 3564669119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669120, 3564669183, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669184, 3564669247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669248, 3564669343, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669344, 3564669359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669360, 3564669407, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669408, 3564669439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564669440, 3564670207, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564670208, 3564670239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564670240, 3564671615, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564671616, 3564671631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564671632, 3564673023, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673024, 3564673055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673056, 3564673135, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673136, 3564673215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673216, 3564673407, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673408, 3564673663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673664, 3564673791, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673792, 3564673807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673808, 3564673823, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673824, 3564673839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673840, 3564673855, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673856, 3564673919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564673920, 3564674047, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564674048, 3564674431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564674432, 3564675071, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564675072, 3564683263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564683264, 3564691455, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564691456, 3564699647, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564699648, 3564716031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564716032, 3564724223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564724224, 3564725759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564725760, 3564725839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564725840, 3564726063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564726064, 3564726079, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564726080, 3564726783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564726784, 3564727295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564727296, 3564732415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564732416, 3564733439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564733440, 3564733695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564733696, 3564734239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734240, 3564734271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734272, 3564734287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734288, 3564734303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734304, 3564734335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734336, 3564734431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734432, 3564734719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734720, 3564734807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734808, 3564734815, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734816, 3564734819, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564734820, 3564736511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736512, 3564736527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736528, 3564736583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736584, 3564736591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736592, 3564736599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736600, 3564736603, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736604, 3564736607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736608, 3564736611, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736612, 3564736767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736768, 3564736887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736888, 3564736895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736896, 3564736903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736904, 3564736927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736928, 3564736959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736960, 3564736967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736968, 3564736975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564736976, 3564737535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564737536, 3564737791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564737792, 3564739327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739328, 3564739335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739336, 3564739351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739352, 3564739391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739392, 3564739455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739456, 3564739503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739504, 3564739519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739520, 3564739567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739568, 3564739583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739584, 3564739799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739800, 3564739815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739816, 3564739823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564739824, 3564740367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740368, 3564740383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740384, 3564740415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740416, 3564740447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740448, 3564740455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740456, 3564740459, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740460, 3564740463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740464, 3564740471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740472, 3564740479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740480, 3564740495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740496, 3564740503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740504, 3564740527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740528, 3564740543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740544, 3564740575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740576, 3564740591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740592, 3564740595, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740596, 3564740607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564740608, 3564748799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564748800, 3564749311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564749312, 3564750095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564750096, 3564750111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564750112, 3564750879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564750880, 3564750895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564750896, 3564750927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564750928, 3564750975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564750976, 3564751391, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751392, 3564751407, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751408, 3564751631, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751632, 3564751639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751640, 3564751647, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751648, 3564751711, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751712, 3564751727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751728, 3564751743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751744, 3564751807, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751808, 3564751871, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751872, 3564751887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751888, 3564751967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564751968, 3564752127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564752128, 3564752383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564752384, 3564752463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564752464, 3564752479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564752480, 3564752607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564752608, 3564752623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564752624, 3564752639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564752640, 3564755199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564755200, 3564755247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564755248, 3564755255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564755256, 3564755263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564755264, 3564755327, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564755328, 3564755375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564755376, 3564756287, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564756288, 3564756367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564756368, 3564756399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564756400, 3564756415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564756416, 3564756735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564756736, 3564756743, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564756744, 3564756991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564756992, 3564765183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564765184, 3564773375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564773376, 3564781567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564781568, 3564789759, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564789760, 3564797951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564797952, 3564806143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564806144, 3564814335, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564814336, 3564822527, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564822528, 3564830719, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564830720, 3564838911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564838912, 3564847103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564847104, 3564855295, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564855296, 3564863487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564863488, 3564881727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564881728, 3564881919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564881920, 3564881939, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564881940, 3564881943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564881944, 3564881975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564881976, 3564881983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564881984, 3564882143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564882144, 3564882175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564882176, 3564882399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564882400, 3564882431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564882432, 3564883039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564883040, 3564883063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564883064, 3564883071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564883072, 3564883095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564883096, 3564883135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564883136, 3564883199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564883200, 3564884235, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884236, 3564884239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884240, 3564884343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884344, 3564884351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884352, 3564884399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884400, 3564884407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884408, 3564884423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884424, 3564884439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564884440, 3564886367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886368, 3564886375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886376, 3564886415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886416, 3564886527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886528, 3564886591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886592, 3564886655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886656, 3564886751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886752, 3564886815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886816, 3564886927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886928, 3564886951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564886952, 3564888375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888376, 3564888383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888384, 3564888463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888464, 3564888479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888480, 3564888511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888512, 3564888527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888528, 3564888623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888624, 3564888799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888800, 3564888815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888816, 3564888823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888824, 3564888879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888880, 3564888895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888896, 3564888903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888904, 3564888911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888912, 3564888991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564888992, 3564889023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889024, 3564889375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889376, 3564889407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889408, 3564889511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889512, 3564889519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889520, 3564889663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889664, 3564889695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889696, 3564889727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889728, 3564889855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564889856, 3564890239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890240, 3564890271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890272, 3564890303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890304, 3564890335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890336, 3564890367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890368, 3564890399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890400, 3564890527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890528, 3564890543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890544, 3564890579, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890580, 3564890591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564890592, 3564892287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564892288, 3564894207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564894208, 3564896255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564896256, 3564904447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564904448, 3564912639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564912640, 3564920831, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564920832, 3564929023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564929024, 3564937215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564937216, 3564945407, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564945408, 3564947175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564947176, 3564947183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564947184, 3564953967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564953968, 3564953983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564953984, 3564954015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954016, 3564954131, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954132, 3564954155, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954156, 3564954159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954160, 3564954175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954176, 3564954199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954200, 3564954207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954208, 3564954211, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954212, 3564954231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954232, 3564954239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954240, 3564954303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954304, 3564954311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954312, 3564954367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954368, 3564954383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564954384, 3564956159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956160, 3564956415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956416, 3564956671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956672, 3564956703, N'GR', N'Greece') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956704, 3564956719, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956720, 3564956751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956752, 3564956767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956768, 3564956863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956864, 3564956903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956904, 3564956911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956912, 3564956959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956960, 3564956975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956976, 3564956979, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564956980, 3564957007, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957008, 3564957023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957024, 3564957051, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957052, 3564957055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957056, 3564957443, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957444, 3564957447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957448, 3564957503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957504, 3564957507, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957508, 3564957539, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957540, 3564957547, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957548, 3564957551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957552, 3564957555, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957556, 3564957591, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957592, 3564957595, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957596, 3564957631, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957632, 3564957663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957664, 3564957695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957696, 3564957855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957856, 3564957859, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957860, 3564957863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957864, 3564957867, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957868, 3564957871, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957872, 3564957891, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957892, 3564957903, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957904, 3564957911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957912, 3564957919, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564957920, 3564958095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958096, 3564958103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958104, 3564958111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958112, 3564958159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958160, 3564958175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958176, 3564958179, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958180, 3564958183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958184, 3564958463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958464, 3564958487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958488, 3564958495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958496, 3564958719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958720, 3564958815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958816, 3564958816, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958817, 3564958911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958912, 3564958912, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958913, 3564958943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564958944, 3564959008, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959009, 3564959039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959040, 3564959071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959072, 3564959075, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959076, 3564959079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959080, 3564959091, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959092, 3564959095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959096, 3564959127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959128, 3564959191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959192, 3564959195, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959196, 3564959199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959200, 3564959227, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959228, 3564959263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959264, 3564959295, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959296, 3564959383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959384, 3564959439, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959440, 3564959443, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959444, 3564959451, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959452, 3564959455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959456, 3564959471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959472, 3564959479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959480, 3564959487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959488, 3564959495, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959496, 3564959499, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959500, 3564959503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959504, 3564959511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959512, 3564959519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959520, 3564959535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959536, 3564959551, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959552, 3564959567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959568, 3564959579, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959580, 3564959623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959624, 3564959639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959640, 3564959655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959656, 3564959663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959664, 3564959679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959680, 3564959695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959696, 3564959711, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959712, 3564959743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959744, 3564959751, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959752, 3564959755, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959756, 3564959759, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959760, 3564959904, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959905, 3564959935, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564959936, 3564960127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960128, 3564960135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960136, 3564960143, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960144, 3564960159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960160, 3564960191, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960192, 3564960195, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960196, 3564960199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960200, 3564960207, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960208, 3564960211, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960212, 3564960223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960224, 3564960231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960232, 3564960511, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960512, 3564960527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960528, 3564960535, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960536, 3564960559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960560, 3564960575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960576, 3564960607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960608, 3564960615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960616, 3564960623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960624, 3564960631, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960632, 3564960635, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960636, 3564960655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960656, 3564960703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960704, 3564960799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960800, 3564960871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960872, 3564960879, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960880, 3564960927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960928, 3564960959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564960960, 3564961023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564961024, 3564961079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564961080, 3564961279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564961280, 3564961311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564961312, 3564961319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564961320, 3564961791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564961792, 3564969983, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564969984, 3564978175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564978176, 3564986367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564986368, 3564994559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3564994560, 3565002751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565002752, 3565007247, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565007248, 3565007251, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565007252, 3565027327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565027328, 3565035519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565035520, 3565038591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565038592, 3565039615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565039616, 3565040383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565040384, 3565040639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565040640, 3565041407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565041408, 3565041663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565041664, 3565042431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565042432, 3565042687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565042688, 3565043711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565043712, 3565051903, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565051904, 3565068287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565068288, 3565076479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565076480, 3565084671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565084672, 3565092863, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565092864, 3565093055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565093056, 3565093087, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565093088, 3565093391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565093392, 3565093399, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565093400, 3565095935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565095936, 3565096191, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565096192, 3565096759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565096760, 3565096767, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565096768, 3565099007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565099008, 3565099615, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565099616, 3565099647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565099648, 3565099651, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565099652, 3565101055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565101056, 3565109247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565109248, 3565117439, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565117440, 3565125631, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565125632, 3565158399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565158400, 3565223935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565223936, 3565240319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565240320, 3565248511, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565248512, 3565256703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565256704, 3565287231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565287232, 3565287263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565287264, 3565289471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565289472, 3565355007, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565355008, 3565420543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565420544, 3565486079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565486080, 3565486335, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565486336, 3565486975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565486976, 3565487615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565487616, 3565487871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565487872, 3565488383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565488384, 3565488639, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565488640, 3565488895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565488896, 3565489535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565489536, 3565489791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565489792, 3565489823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565489824, 3565490175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565490176, 3565490431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565490432, 3565491199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491200, 3565491215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491216, 3565491231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491232, 3565491247, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491248, 3565491455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491456, 3565491711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491712, 3565491839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491840, 3565491903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491904, 3565491967, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565491968, 3565492223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492224, 3565492295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492296, 3565492303, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492304, 3565492319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492320, 3565492327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492328, 3565492335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492336, 3565492351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492352, 3565492479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492480, 3565492607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492608, 3565492639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492640, 3565492655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492656, 3565492671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492672, 3565492735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492736, 3565492991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565492992, 3565493247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493248, 3565493535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493536, 3565493567, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493568, 3565493583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493584, 3565493591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493592, 3565493679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493680, 3565493687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493688, 3565493759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493760, 3565493775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493776, 3565493951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493952, 3565493983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565493984, 3565494055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494056, 3565494063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494064, 3565494079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494080, 3565494143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494144, 3565494271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494272, 3565494527, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494528, 3565494543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494544, 3565494551, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494552, 3565494559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494560, 3565494591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494592, 3565494655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494656, 3565494671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494672, 3565494687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494688, 3565494703, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494704, 3565494719, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494720, 3565494735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494736, 3565494743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494744, 3565494751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494752, 3565494783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565494784, 3565495295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565495296, 3565496447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565496448, 3565496511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565496512, 3565496575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565496576, 3565496831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565496832, 3565497087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497088, 3565497103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497104, 3565497119, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497120, 3565497151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497152, 3565497159, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497160, 3565497167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497168, 3565497199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497200, 3565497207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497208, 3565497215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497216, 3565497279, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497280, 3565497287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497288, 3565497343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497344, 3565497599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497600, 3565497871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497872, 3565497887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497888, 3565497903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497904, 3565497911, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497912, 3565497919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497920, 3565497927, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497928, 3565497951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497952, 3565497967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497968, 3565497983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565497984, 3565498111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565498112, 3565498367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565498368, 3565498431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565498432, 3565498479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565498480, 3565498511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565498512, 3565498519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565498520, 3565498527, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565498528, 3565499815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565499816, 3565499823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565499824, 3565499839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565499840, 3565499871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565499872, 3565500479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500480, 3565500543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500544, 3565500567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500568, 3565500575, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500576, 3565500591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500592, 3565500599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500600, 3565500607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500608, 3565500623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565500624, 3565501095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501096, 3565501103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501104, 3565501119, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501120, 3565501183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501184, 3565501199, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501200, 3565501231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501232, 3565501247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501248, 3565501311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501312, 3565501439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501440, 3565501679, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501680, 3565501695, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565501696, 3565502207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565502208, 3565502239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565502240, 3565502463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565502464, 3565503487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565503488, 3565503999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565504000, 3565504511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565504512, 3565510655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565510656, 3565511679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565511680, 3565512191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565512192, 3565512959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565512960, 3565514111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565514112, 3565514239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565514240, 3565514495, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565514496, 3565518847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565518848, 3565551615, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565551616, 3565578495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565578496, 3565578751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565578752, 3565682687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565682688, 3565748223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565748224, 3565752327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752328, 3565752335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752336, 3565752407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752408, 3565752415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752416, 3565752463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752464, 3565752471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752472, 3565752479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752480, 3565752487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752488, 3565752535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752536, 3565752543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752544, 3565752839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752840, 3565752855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752856, 3565752879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752880, 3565752887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752888, 3565752983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752984, 3565752991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565752992, 3565752999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753000, 3565753015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753016, 3565753031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753032, 3565753039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753040, 3565753071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753072, 3565753079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753080, 3565753215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753216, 3565753247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753248, 3565753831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753832, 3565753839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753840, 3565753847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753848, 3565753983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565753984, 3565754367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565754368, 3565754495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565754496, 3565754511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565754512, 3565754623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565754624, 3565755263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755264, 3565755279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755280, 3565755359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755360, 3565755375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755376, 3565755583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755584, 3565755647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755648, 3565755695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755696, 3565755703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755704, 3565755727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755728, 3565755735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755736, 3565755831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755832, 3565755839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755840, 3565755847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755848, 3565755855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755856, 3565755871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755872, 3565755879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755880, 3565755919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755920, 3565755927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755928, 3565755935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755936, 3565755943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755944, 3565755959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755960, 3565755967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565755968, 3565755999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756000, 3565756007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756008, 3565756063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756064, 3565756071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756072, 3565756087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756088, 3565756095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756096, 3565756119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756120, 3565756135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756136, 3565756159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756160, 3565756287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565756288, 3565760783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760784, 3565760791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760792, 3565760799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760800, 3565760807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760808, 3565760823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760824, 3565760831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760832, 3565760855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760856, 3565760863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760864, 3565760935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760936, 3565760943, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760944, 3565760967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760968, 3565760975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565760976, 3565761007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761008, 3565761015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761016, 3565761279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761280, 3565761343, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761344, 3565761535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761536, 3565761543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761544, 3565761599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761600, 3565761615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761616, 3565761631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761632, 3565761639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761640, 3565761647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761648, 3565761655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761656, 3565761687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761688, 3565761703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761704, 3565761727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761728, 3565761751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565761752, 3565762047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565762048, 3565762303, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565762304, 3565762559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565762560, 3565762815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565762816, 3565763071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763072, 3565763391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763392, 3565763423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763424, 3565763455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763456, 3565763487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763488, 3565763599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763600, 3565763615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763616, 3565763671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763672, 3565763679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763680, 3565763703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763704, 3565763719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763720, 3565763735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763736, 3565763743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763744, 3565763751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763752, 3565763759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763760, 3565763799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763800, 3565763807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763808, 3565763815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763816, 3565763831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763832, 3565763839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763840, 3565763883, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763884, 3565763891, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565763892, 3565764095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764096, 3565764183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764184, 3565764191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764192, 3565764207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764208, 3565764255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764256, 3565764319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764320, 3565764335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764336, 3565764367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764368, 3565764375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764376, 3565764439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764440, 3565764447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764448, 3565764551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764552, 3565764575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565764576, 3565766655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565766656, 3565766911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565766912, 3565767167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767168, 3565767175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767176, 3565767255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767256, 3565767271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767272, 3565767287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767288, 3565767295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767296, 3565767391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767392, 3565767407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767408, 3565767439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767440, 3565767455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767456, 3565767487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767488, 3565767503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767504, 3565767599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767600, 3565767615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767616, 3565767631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767632, 3565767679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565767680, 3565767999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768000, 3565768207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768208, 3565768295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768296, 3565768311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768312, 3565768335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768336, 3565768447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768448, 3565768575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768576, 3565768703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768704, 3565768975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565768976, 3565769215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565769216, 3565769471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565769472, 3565777919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565777920, 3565813759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565813760, 3565879295, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3565879296, 3566010367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566010368, 3566075903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566075904, 3566100479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566100480, 3566108671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566108672, 3566141439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566141440, 3566206975, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566206976, 3566272511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566272512, 3566338047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566338048, 3566354431, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566354432, 3566370815, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566370816, 3566403583, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566403584, 3566436351, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566436352, 3566439615, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566439616, 3566439631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566439632, 3566469119, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566469120, 3566534655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566534656, 3566551039, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566551040, 3566600191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566600192, 3566665727, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566665728, 3566723071, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566723072, 3566723327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566723328, 3566725119, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566725120, 3566727167, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566727168, 3566731263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566731264, 3566739455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566739456, 3566747647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566747648, 3566764031, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566764032, 3566796799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566796800, 3566803455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566803456, 3566803711, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566803712, 3566816511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566816512, 3566816767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566816768, 3566862335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566862336, 3566895103, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566895104, 3566897279, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566897280, 3566897311, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566897312, 3566905939, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566905940, 3566905943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566905944, 3566927871, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566927872, 3566960127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566960128, 3566960143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566960144, 3566993407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3566993408, 3567058943, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567058944, 3567108255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567108256, 3567108263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567108264, 3567124479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567124480, 3567124991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567124992, 3567125023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567125024, 3567125247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567125248, 3567125503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567125504, 3567126687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567126688, 3567126759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567126760, 3567127551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567127552, 3567127807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567127808, 3567128703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567128704, 3567128767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567128768, 3567129855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567129856, 3567129983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567129984, 3567130015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567130016, 3567130111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567130112, 3567131383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567131384, 3567131647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567131648, 3567133215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567133216, 3567133247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567133248, 3567133367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567133368, 3567133375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567133376, 3567134207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567134208, 3567134335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567134336, 3567134847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567134848, 3567134975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567134976, 3567135999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567136000, 3567136255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567136256, 3567136511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567136512, 3567137279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567137280, 3567137599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567137600, 3567137663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567137664, 3567137987, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567137988, 3567137991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567137992, 3567137999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567138000, 3567138003, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567138004, 3567138015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567138016, 3567138023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567138024, 3567138039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567138040, 3567139455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567139456, 3567139487, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567139488, 3567139551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567139552, 3567140095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567140096, 3567140351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567140352, 3567140863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567140864, 3567140991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567140992, 3567141631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567141632, 3567141887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567141888, 3567142271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567142272, 3567142399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567142400, 3567143431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143432, 3567143439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143440, 3567143447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143448, 3567143455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143456, 3567143519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143520, 3567143551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143552, 3567143679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143680, 3567143687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143688, 3567143871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143872, 3567143935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143936, 3567143951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143952, 3567143967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567143968, 3567144047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144048, 3567144063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144064, 3567144171, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144172, 3567144175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144176, 3567144319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144320, 3567144447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144448, 3567144767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144768, 3567144831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567144832, 3567147527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567147528, 3567147535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567147536, 3567147551, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567147552, 3567147559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567147560, 3567147935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567147936, 3567147967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567147968, 3567148351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567148352, 3567148415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567148416, 3567148503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567148504, 3567148511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567148512, 3567148519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567148520, 3567148527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567148528, 3567148799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567148800, 3567149055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567149056, 3567149087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567149088, 3567149119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567149120, 3567149903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567149904, 3567149911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567149912, 3567149919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567149920, 3567149935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567149936, 3567151103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567151104, 3567151199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567151200, 3567151231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567151232, 3567151263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567151264, 3567151999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152000, 3567152127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152128, 3567152159, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152160, 3567152191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152192, 3567152255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152256, 3567152383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152384, 3567152391, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152392, 3567152407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152408, 3567152639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152640, 3567152647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152648, 3567152663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152664, 3567152671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152672, 3567152719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152720, 3567152751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152752, 3567152831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152832, 3567152863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152864, 3567152959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152960, 3567152991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567152992, 3567153023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153024, 3567153055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153056, 3567153407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153408, 3567153471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153472, 3567153599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153600, 3567153623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153624, 3567153647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153648, 3567153663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153664, 3567153679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153680, 3567153703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153704, 3567153719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153720, 3567153727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153728, 3567153823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153824, 3567153847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567153848, 3567154303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567154304, 3567154367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567154368, 3567154623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567154624, 3567154655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567154656, 3567155199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567155200, 3567155967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567155968, 3567156415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567156416, 3567156607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567156608, 3567156991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567156992, 3567157247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567157248, 3567165439, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567165440, 3567169535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567173632, 3567239167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567239168, 3567255551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567255552, 3567321087, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567321088, 3567333983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567333984, 3567334015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567334016, 3567353855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567353856, 3567386623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567386624, 3567386879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567386880, 3567386883, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567386884, 3567386975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567386976, 3567387023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387024, 3567387071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387072, 3567387391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387392, 3567387423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387424, 3567387455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387456, 3567387471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387472, 3567387535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387536, 3567387543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387544, 3567387547, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387548, 3567387567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387568, 3567387647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567387648, 3567388159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388160, 3567388247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388248, 3567388255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388256, 3567388351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388352, 3567388415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388416, 3567388479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388480, 3567388671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388672, 3567388927, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567388928, 3567389695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567389696, 3567390847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567390848, 3567390879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567390880, 3567390975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567390976, 3567391231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567391232, 3567392255, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567392256, 3567394975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567394976, 3567395007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567395008, 3567395071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567395072, 3567395327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567395328, 3567396863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567396864, 3567397119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567397120, 3567397887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567397888, 3567398143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567398144, 3567398655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567398656, 3567398911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567398912, 3567398991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567398992, 3567399055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399056, 3567399103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399104, 3567399183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399184, 3567399231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399232, 3567399647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399648, 3567399687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399688, 3567399695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399696, 3567399711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399712, 3567399807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399808, 3567399871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567399872, 3567400703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567400704, 3567400735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567400736, 3567400751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567400752, 3567400831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567400832, 3567401471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401472, 3567401503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401504, 3567401519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401520, 3567401543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401544, 3567401551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401552, 3567401583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401584, 3567401599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401600, 3567401727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567401728, 3567402367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567402368, 3567402655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567402656, 3567402687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567402688, 3567403007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567403008, 3567419391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567419392, 3567427583, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567427584, 3567435775, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567435776, 3567436543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567436544, 3567436595, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567436596, 3567436599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567436600, 3567436603, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567436604, 3567436799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567436800, 3567436895, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567436896, 3567441375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567441376, 3567441407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567441408, 3567444223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567444224, 3567444479, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567444480, 3567445951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567445952, 3567445983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567445984, 3567446367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567446368, 3567446399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567446400, 3567446607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567446608, 3567446623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567446624, 3567452159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567452160, 3567517695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567517696, 3567583231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567583232, 3567583487, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567583488, 3567583743, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567583744, 3567583999, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567584000, 3567584255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567584256, 3567584383, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567584384, 3567584399, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567584400, 3567584407, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567584408, 3567584511, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567584512, 3567584639, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567584640, 3567587327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567587328, 3567591423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567591424, 3567599615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567599616, 3567606271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567606272, 3567606783, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567606784, 3567615999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567616000, 3567616511, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567616512, 3567616767, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567616768, 3567617087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567617088, 3567617119, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567617120, 3567617151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567617152, 3567617279, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567617280, 3567617535, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567617536, 3567617791, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567617792, 3567618047, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567618048, 3567619071, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619072, 3567619075, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619076, 3567619087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619088, 3567619095, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619096, 3567619103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619104, 3567619111, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619112, 3567619135, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619136, 3567619583, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567619584, 3567620095, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620096, 3567620351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620352, 3567620479, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620480, 3567620623, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620624, 3567620631, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620632, 3567620639, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620640, 3567620679, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620680, 3567620695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620696, 3567620719, N'PK', N'Pakistan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620720, 3567620727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620728, 3567620735, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620736, 3567620863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620864, 3567620927, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620928, 3567620931, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620932, 3567620935, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620936, 3567620959, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620960, 3567620991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567620992, 3567621055, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621056, 3567621119, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621120, 3567621375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621376, 3567621631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621632, 3567621887, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621888, 3567621895, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621896, 3567621903, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621904, 3567621911, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621912, 3567621919, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621920, 3567621951, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567621952, 3567622655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567622656, 3567622951, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567622952, 3567622959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567622960, 3567622963, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567622964, 3567622967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567622968, 3567622975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567622976, 3567623039, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623040, 3567623055, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623056, 3567623071, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623072, 3567623087, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623088, 3567623095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623096, 3567623103, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623104, 3567623135, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623136, 3567623143, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623144, 3567623151, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623152, 3567623167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623168, 3567623423, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623424, 3567623471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623472, 3567623479, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623480, 3567623727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623728, 3567623759, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623760, 3567623767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623768, 3567623775, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623776, 3567623791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623792, 3567623839, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623840, 3567623935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567623936, 3567624191, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567624192, 3567624447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567624448, 3567625727, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567625728, 3567625983, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567625984, 3567626239, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567626240, 3567627008, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567627009, 3567629311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567629312, 3567630207, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567630208, 3567647487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567647488, 3567648767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567648768, 3567665151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567665152, 3567673343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567673344, 3567674015, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567674016, 3567674031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567674032, 3567674095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567674096, 3567674111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567674112, 3567675655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567675656, 3567675663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567675664, 3567675671, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567675672, 3567675759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567675760, 3567676159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567676160, 3567676287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567676288, 3567681535, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567681536, 3567714303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567714304, 3567715327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567715328, 3567716351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567716352, 3567716383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567716384, 3567716607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567716608, 3567716639, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567716640, 3567716863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567716864, 3567716943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567716944, 3567717119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567717120, 3567717375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567717376, 3567717631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567717632, 3567717679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567717680, 3567717759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567717760, 3567717887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567717888, 3567718015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567718016, 3567718143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567718144, 3567718399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567718400, 3567719423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567719424, 3567719679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567719680, 3567779839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567779840, 3567845375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567845376, 3567861759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567861760, 3567878143, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567878144, 3567910911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567910912, 3567976447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3567976448, 3568041983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568041984, 3568107519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568107520, 3568153759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568153760, 3568153767, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568153768, 3568173055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568173056, 3568304127, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568304128, 3568309775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568309776, 3568309791, N'UZ', N'Uzbekistan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568309792, 3568309919, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568309920, 3568309951, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568309952, 3568310015, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568310016, 3568369663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568369664, 3568369743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568369744, 3568369751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568369752, 3568435199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568435200, 3568500735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568500736, 3568566271, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568566272, 3568574967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568574968, 3568574975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568574976, 3568577151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568577152, 3568577167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568577168, 3568577231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568577232, 3568577239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568577240, 3568583783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568583784, 3568583791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568583792, 3568595079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568595080, 3568595087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568595088, 3568599039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568599040, 3568631807, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568631808, 3568697343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568697344, 3568730111, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568730112, 3568746495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568746496, 3568752895, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568752896, 3568752959, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568752960, 3568762879, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568762880, 3568795647, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568795648, 3568803839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568803840, 3568812031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568812032, 3568828415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568828416, 3568829631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568829632, 3568829639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568829640, 3568831343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568831344, 3568831351, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568831352, 3568836247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568836248, 3568836255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568836256, 3568848791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568848792, 3568848799, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568848800, 3568848871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568848872, 3568848879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568848880, 3568856495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568856496, 3568856503, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568856504, 3568857551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568857552, 3568857559, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568857560, 3568876159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568876160, 3568876287, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568876288, 3568877583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568877584, 3568877591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568877592, 3568916391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568916392, 3568916399, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568916400, 3568916407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568916408, 3568937103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568937104, 3568937111, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568937112, 3568938311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568938312, 3568938319, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568938320, 3568939519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568939520, 3568939527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568939528, 3568942799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568942800, 3568942807, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568942808, 3568946663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568946664, 3568946671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568946672, 3568959487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568959488, 3568992255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3568992256, 3569000447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569000448, 3569004543, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569004544, 3569008447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569008448, 3569016831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569016832, 3569018879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569018880, 3569024255, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569024256, 3569025023, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569025024, 3569057791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569057792, 3569068031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569068032, 3569068543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569068544, 3569068671, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569068672, 3569068951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569068952, 3569068991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569068992, 3569075711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569075712, 3569075839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569075840, 3569083903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569083904, 3569084159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569084160, 3569090559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569090560, 3569123327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569123328, 3569156095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569156096, 3569188863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569188864, 3569221631, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569221632, 3569239071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239072, 3569239103, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239104, 3569239231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239232, 3569239263, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239264, 3569239455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239456, 3569239487, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239488, 3569239519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239520, 3569239551, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239552, 3569239903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239904, 3569239935, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239936, 3569239983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569239984, 3569239999, N'BN', N'Brunei Darussalam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569240000, 3569240031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569240032, 3569240063, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569240064, 3569242143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569242144, 3569242175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569242176, 3569242551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569242552, 3569242559, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569242560, 3569242879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569242880, 3569243135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569243136, 3569250919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569250920, 3569250927, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569250928, 3569250935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569250936, 3569251071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569251072, 3569251327, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569251328, 3569251839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569251840, 3569254175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569254176, 3569254207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569254208, 3569254359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569254360, 3569254367, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569254368, 3569254943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569254944, 3569254959, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569254960, 3569254975, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569254976, 3569255055, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569255056, 3569255071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569255072, 3569255103, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569255104, 3569258815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569258816, 3569258847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569258848, 3569271815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271816, 3569271823, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271824, 3569271871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271872, 3569271903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271904, 3569271911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271912, 3569271919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271920, 3569271935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271936, 3569271943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271944, 3569271959, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271960, 3569271963, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569271964, 3569272063, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569272064, 3569272079, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569272080, 3569272223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569272224, 3569272255, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569272256, 3569272527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569272528, 3569272543, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569272544, 3569273167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273168, 3569273183, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273184, 3569273751, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273752, 3569273759, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273760, 3569273791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273792, 3569273823, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273824, 3569273935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273936, 3569273951, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569273952, 3569274143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274144, 3569274175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274176, 3569274207, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274208, 3569274303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274304, 3569274319, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274320, 3569274335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274336, 3569274383, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274384, 3569274495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274496, 3569274559, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274560, 3569274687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274688, 3569274719, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569274720, 3569277183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569277184, 3569277439, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569277440, 3569278311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569278312, 3569278319, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569278320, 3569278703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569278704, 3569278719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569278720, 3569278983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569278984, 3569278991, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569278992, 3569279087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569279088, 3569279103, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569279104, 3569279223, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569279224, 3569279231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569279232, 3569279263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569279264, 3569279279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569279280, 3569287167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569287168, 3569352703, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569352704, 3569483775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569483776, 3569614847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569614848, 3569680383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569680384, 3569710959, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569710960, 3569710975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569710976, 3569713151, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569713152, 3569729535, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569729536, 3569731071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731072, 3569731087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731088, 3569731119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731120, 3569731135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731136, 3569731167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731168, 3569731183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731184, 3569731231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731232, 3569731247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731248, 3569731263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731264, 3569731311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731312, 3569731327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731328, 3569731343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731344, 3569731375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731376, 3569731391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731392, 3569731407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731408, 3569731423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731424, 3569731439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731440, 3569731455, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731456, 3569731503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731504, 3569731519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731520, 3569731551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731552, 3569731583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731584, 3569731599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731600, 3569731615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731616, 3569731631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731632, 3569731647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731648, 3569731727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731728, 3569731743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731744, 3569731791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731792, 3569731807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731808, 3569731839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731840, 3569731855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731856, 3569731871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731872, 3569731903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731904, 3569731919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731920, 3569731951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731952, 3569731967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731968, 3569731983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569731984, 3569731999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732000, 3569732015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732016, 3569732031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732032, 3569732047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732048, 3569732063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732064, 3569732079, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732080, 3569732095, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732096, 3569732111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732112, 3569732127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732128, 3569732143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732144, 3569732159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732160, 3569732175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732176, 3569732190, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732191, 3569732191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732192, 3569732207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732208, 3569732223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732224, 3569732287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732288, 3569732303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732304, 3569732319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732320, 3569732335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732336, 3569732351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732352, 3569732383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732384, 3569732399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732400, 3569732447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732448, 3569732479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732480, 3569732495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732496, 3569732527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732528, 3569732543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732544, 3569732575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732576, 3569732591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732592, 3569732639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732640, 3569732671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732672, 3569732703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732704, 3569732719, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732720, 3569732735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732736, 3569732751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732752, 3569732767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732768, 3569732783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732784, 3569732879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569732880, 3569733007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733008, 3569733023, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733024, 3569733071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733072, 3569733087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733088, 3569733183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733184, 3569733199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733200, 3569733265, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733266, 3569733279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733280, 3569733295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733296, 3569733343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733344, 3569733407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733408, 3569733439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733440, 3569733471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733472, 3569733503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733504, 3569733519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733520, 3569733535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733536, 3569733551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733552, 3569733567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733568, 3569733583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733584, 3569733647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733648, 3569733663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733664, 3569733679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733680, 3569733711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733712, 3569733775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733776, 3569733791, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733792, 3569733807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733808, 3569733823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733824, 3569733887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733888, 3569733919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733920, 3569733935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733936, 3569733951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733952, 3569733967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733968, 3569733983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569733984, 3569733999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734000, 3569734143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734144, 3569734159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734160, 3569734191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734192, 3569734207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734208, 3569734239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734240, 3569734255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734256, 3569734367, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734368, 3569734399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734400, 3569734447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734448, 3569734463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734464, 3569734495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569734496, 3569736055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736056, 3569736063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736064, 3569736071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736072, 3569736079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736080, 3569736095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736096, 3569736191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736192, 3569736383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736384, 3569736399, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736400, 3569736703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569736704, 3569739263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739264, 3569739295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739296, 3569739311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739312, 3569739471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739472, 3569739487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739488, 3569739599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739600, 3569739631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739632, 3569739647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739648, 3569739663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739664, 3569739679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739680, 3569739695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569739696, 3569740047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740048, 3569740063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740064, 3569740255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740256, 3569740271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740272, 3569740367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740368, 3569740383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740384, 3569740463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740464, 3569740479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740480, 3569740495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740496, 3569740511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740512, 3569740543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740544, 3569740559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740560, 3569740655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740656, 3569740671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740672, 3569740799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569740800, 3569741311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569741312, 3569741823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569741824, 3569742335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742336, 3569742399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742400, 3569742415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742416, 3569742511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742512, 3569742527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742528, 3569742623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742624, 3569742639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742640, 3569742671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742672, 3569742687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742688, 3569742735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742736, 3569742751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742752, 3569742767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742768, 3569742783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742784, 3569742927, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742928, 3569742943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569742944, 3569743087, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743088, 3569743103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743104, 3569743151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743152, 3569743199, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743200, 3569743215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743216, 3569743359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743360, 3569743391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743392, 3569743407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743408, 3569743423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743424, 3569743455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743456, 3569743583, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743584, 3569743599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743600, 3569743615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743616, 3569743679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743680, 3569743695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743696, 3569743871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569743872, 3569744047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744048, 3569744063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744064, 3569744543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744544, 3569744559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744560, 3569744607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744608, 3569744623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744624, 3569744975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744976, 3569744991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569744992, 3569745007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745008, 3569745023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745024, 3569745103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745104, 3569745119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745120, 3569745167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745168, 3569745183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745184, 3569745215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745216, 3569745231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745232, 3569745247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745248, 3569745279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745280, 3569745359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745360, 3569745375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745376, 3569745407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745408, 3569745663, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745664, 3569745813, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745814, 3569745823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745824, 3569745839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745840, 3569745871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745872, 3569745887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745888, 3569745903, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745904, 3569745919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569745920, 3569811455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569811456, 3569814783, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569814784, 3569815039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569815040, 3569815551, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569815552, 3569816063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569816064, 3569819775, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569819776, 3569819903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569819904, 3569820227, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820228, 3569820231, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820232, 3569820367, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820368, 3569820383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820384, 3569820423, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820424, 3569820427, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820428, 3569820511, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820512, 3569820547, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820548, 3569820567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820568, 3569820671, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569820672, 3569823231, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569823232, 3569823743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569823744, 3569824255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824256, 3569824263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824264, 3569824271, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824272, 3569824279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824280, 3569824391, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824392, 3569824399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824400, 3569824407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824408, 3569824415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824416, 3569824431, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824432, 3569824439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824440, 3569824451, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824452, 3569824495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824496, 3569824499, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824500, 3569824511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824512, 3569824583, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824584, 3569824587, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824588, 3569824603, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824604, 3569824607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824608, 3569824671, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824672, 3569824679, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824680, 3569824683, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824684, 3569824687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824688, 3569824695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824696, 3569824703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824704, 3569824959, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824960, 3569824975, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569824976, 3569825183, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825184, 3569825215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825216, 3569825615, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825616, 3569825647, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825648, 3569825712, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825713, 3569825727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825728, 3569825775, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825776, 3569825791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825792, 3569825920, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825921, 3569825951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825952, 3569825983, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569825984, 3569826047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826048, 3569826071, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826072, 3569826079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826080, 3569826431, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826432, 3569826495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826496, 3569826541, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826542, 3569826543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826544, 3569826591, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826592, 3569826687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826688, 3569826847, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826848, 3569826855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826856, 3569826955, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826956, 3569826959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569826960, 3569828111, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828112, 3569828127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828128, 3569828211, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828212, 3569828215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828216, 3569828219, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828220, 3569828223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828224, 3569828623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828624, 3569828639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828640, 3569828647, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828648, 3569828655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569828656, 3569829023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569829024, 3569829055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569829056, 3569830463, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569830464, 3569830527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569830528, 3569831167, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569831168, 3569831423, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569831424, 3569831679, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569831680, 3569831935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569831936, 3569834863, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569834864, 3569834879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569834880, 3569834911, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569834912, 3569834915, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569834916, 3569835623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569835624, 3569835631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569835632, 3569836335, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569836336, 3569836351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569836352, 3569837607, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569837608, 3569837615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569837616, 3569837631, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569837632, 3569837663, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569837664, 3569837695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569837696, 3569837743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569837744, 3569838119, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838120, 3569838127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838128, 3569838207, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838208, 3569838223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838224, 3569838399, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838400, 3569838415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838416, 3569838495, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838496, 3569838503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838504, 3569838687, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838688, 3569838719, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569838720, 3569839103, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569839104, 3569839871, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569839872, 3569839935, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569839936, 3569839951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569839952, 3569840031, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840032, 3569840047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840048, 3569840295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840296, 3569840303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840304, 3569840383, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840384, 3569840399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840400, 3569840559, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840560, 3569840567, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569840568, 3569841743, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841744, 3569841759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841760, 3569841943, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841944, 3569841947, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841948, 3569841959, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841960, 3569841967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841968, 3569841975, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841976, 3569841983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569841984, 3569842047, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842048, 3569842055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842056, 3569842087, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842088, 3569842091, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842092, 3569842119, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842120, 3569842127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842128, 3569842175, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842176, 3569842447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842448, 3569842471, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842472, 3569842475, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842476, 3569842767, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842768, 3569842775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842776, 3569842815, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842816, 3569842847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842848, 3569842879, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842880, 3569842943, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569842944, 3569843107, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569843108, 3569843123, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569843124, 3569843151, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569843152, 3569843167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569843168, 3569844303, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844304, 3569844319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844320, 3569844351, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844352, 3569844367, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844368, 3569844383, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844384, 3569844399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844400, 3569844779, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844780, 3569844783, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844784, 3569844831, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844832, 3569844847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844848, 3569844863, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844864, 3569844991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569844992, 3569845439, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845440, 3569845471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845472, 3569845487, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845488, 3569845503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845504, 3569845623, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845624, 3569845631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845632, 3569845639, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845640, 3569845663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845664, 3569845679, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845680, 3569845695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845696, 3569845759, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845760, 3569845823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845824, 3569845855, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845856, 3569845871, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569845872, 3569846015, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569846016, 3569846047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569846048, 3569846271, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569846272, 3569847551, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569847552, 3569848319, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569848320, 3569850111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569850112, 3569850367, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569850368, 3569852415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569852416, 3569853567, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569853568, 3569854719, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569854720, 3569855231, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569855232, 3569856255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569856256, 3569856511, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569856512, 3569856575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569856576, 3569856671, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569856672, 3569856687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569856688, 3569856691, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569856692, 3569856735, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569856736, 3569857279, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569857280, 3569857535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569857536, 3569857663, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569857664, 3569858815, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569858816, 3569859071, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569859072, 3569859327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569859328, 3569860351, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569860352, 3569861375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569861376, 3569861887, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569861888, 3569862655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569862656, 3569863551, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569863552, 3569864447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569864448, 3569865727, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569865728, 3569865903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569865904, 3569865919, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569865920, 3569865983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569865984, 3569866239, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866240, 3569866263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866264, 3569866271, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866272, 3569866495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866496, 3569866783, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866784, 3569866799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866800, 3569866839, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866840, 3569866847, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866848, 3569866879, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569866880, 3569867007, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867008, 3569867023, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867024, 3569867027, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867028, 3569867071, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867072, 3569867087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867088, 3569867095, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867096, 3569867103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867104, 3569867135, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867136, 3569867151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867152, 3569867167, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867168, 3569867199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867200, 3569867231, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867232, 3569867235, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867236, 3569867255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867256, 3569867263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867264, 3569867519, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569867520, 3569868031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569868032, 3569868543, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569868544, 3569868799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569868800, 3569868895, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569868896, 3569868911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569868912, 3569869199, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569869200, 3569869215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569869216, 3569869247, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569869248, 3569869375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569869376, 3569869407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569869408, 3569869471, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569869472, 3569869823, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569869824, 3569870591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870592, 3569870607, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870608, 3569870623, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870624, 3569870639, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870640, 3569870655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870656, 3569870687, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870688, 3569870703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870704, 3569870743, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870744, 3569870751, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870752, 3569870831, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870832, 3569870839, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870840, 3569870851, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870852, 3569870855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870856, 3569870919, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870920, 3569870927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870928, 3569870975, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870976, 3569870983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569870984, 3569871087, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871088, 3569871095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871096, 3569871115, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871116, 3569871119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871120, 3569871183, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871184, 3569871187, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871188, 3569871255, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871256, 3569871263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871264, 3569871483, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871484, 3569871487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871488, 3569871495, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871496, 3569871503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871504, 3569871584, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569871585, 3569872399, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872400, 3569872439, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872440, 3569872447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872448, 3569872479, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872480, 3569872511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872512, 3569872531, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872532, 3569872535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872536, 3569872591, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872592, 3569872599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569872600, 3569873279, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873280, 3569873407, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873408, 3569873535, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873536, 3569873663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873664, 3569873831, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873832, 3569873835, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873836, 3569873883, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873884, 3569873887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569873888, 3569875007, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569875008, 3569875071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569875072, 3569875711, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569875712, 3569875839, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569875840, 3569875967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569875968, 3569876479, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569876480, 3569876991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569876992, 3569942527, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3569942528, 3570064759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570064760, 3570064767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570064768, 3570073599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570073600, 3570076927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570076928, 3570076935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570076936, 3570076943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570076944, 3570076951, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570076952, 3570078431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570078432, 3570078463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570078464, 3570081791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570081792, 3570096831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570096832, 3570096895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570096896, 3570106367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570106368, 3570139135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570139136, 3570170079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570170080, 3570170111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570170112, 3570171903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570171904, 3570204671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570204672, 3570270207, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570270208, 3570335743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570335744, 3570401279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570401280, 3570442687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570442688, 3570442695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570442696, 3570466815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570466816, 3570507439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570507440, 3570507455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570507456, 3570532351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570532352, 3570597887, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570597888, 3570607103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570607104, 3570608127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570608128, 3570611199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570611200, 3570611455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570611456, 3570614271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570614272, 3570617343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570617344, 3570617855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570617856, 3570622463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570622464, 3570630655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570630656, 3570663423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570663424, 3570728959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570728960, 3570729983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570729984, 3570731007, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570731008, 3570756191, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570756192, 3570756223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570756224, 3570760543, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570760544, 3570760575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570760576, 3570794495, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570794496, 3570860031, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570860032, 3570892799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570892800, 3570925567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570925568, 3570991103, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3570991104, 3571023871, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571023872, 3571056639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571056640, 3571122175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571122176, 3571187711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571187712, 3571253247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571253248, 3571259551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571259552, 3571259583, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571259584, 3571261359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571261360, 3571261367, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571261368, 3571262335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571262336, 3571262367, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571262368, 3571262399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571262400, 3571262431, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571262432, 3571264607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571264608, 3571264639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571264640, 3571265935, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571265936, 3571265951, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571265952, 3571266771, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571266772, 3571266775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571266776, 3571267199, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571267200, 3571267263, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571267264, 3571268607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571268608, 3571268639, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571268640, 3571269823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571269824, 3571269855, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571269856, 3571271423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571271424, 3571271439, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571271440, 3571271551, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571271552, 3571271679, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571271680, 3571272447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571272448, 3571272575, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571272576, 3571277119, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571277120, 3571277151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571277152, 3571286015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571286016, 3571321055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571321056, 3571321087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571321088, 3571326255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571326256, 3571326259, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571326260, 3571327039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571327040, 3571327071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571327072, 3571337471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571337472, 3571337599, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571337600, 3571343495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571343496, 3571343503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571343504, 3571347455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571347456, 3571347711, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571347712, 3571349743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571349744, 3571349759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571349760, 3571349791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571349792, 3571349799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571349800, 3571349807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571349808, 3571349815, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571349816, 3571349819, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571349820, 3571364951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571364952, 3571364955, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571364956, 3571366399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571366400, 3571366511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571366512, 3571369759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571369760, 3571369791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571369792, 3571379311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571379312, 3571379315, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571379316, 3571381631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571381632, 3571381695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571381696, 3571382783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571382784, 3571383039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571383040, 3571383135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571383136, 3571383151, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571383152, 3571383175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571383176, 3571383179, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571383180, 3571389503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571389504, 3571389519, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571389520, 3571456575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571456576, 3571456591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571456592, 3571459919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571459920, 3571459923, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571459924, 3571464943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571464944, 3571464947, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571464948, 3571466239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571466240, 3571482623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571482624, 3571515391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571515392, 3571548159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571548160, 3571580927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571580928, 3571646463, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571646464, 3571675679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571675680, 3571675687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571675688, 3571711999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571712000, 3571843071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571843072, 3571974143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3571974144, 3572006911, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572006912, 3572039679, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572039680, 3572047871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572047872, 3572056063, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572056064, 3572072447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572072448, 3572106095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572106096, 3572106111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572106112, 3572116527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572116528, 3572116535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572116536, 3572148223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572148224, 3572148479, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572148480, 3572170751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572170752, 3572203519, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572203520, 3572236287, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572236288, 3572301823, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572301824, 3572367359, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572367360, 3572432895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572432896, 3572436047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572436048, 3572436063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572436064, 3572442495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572442496, 3572442511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572442512, 3572447231, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572447232, 3572447239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572447240, 3572447247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572447248, 3572447255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572447256, 3572447263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572447264, 3572465663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572465664, 3572498431, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572498432, 3572552679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572552680, 3572552687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572552688, 3572563967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572563968, 3572572159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572572160, 3572580351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572580352, 3572596735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572596736, 3572629503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572629504, 3572695039, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572695040, 3572715519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572715520, 3572715775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572715776, 3572721823, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572721824, 3572721831, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572721832, 3572760575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572760576, 3572826111, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572826112, 3572891647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572891648, 3572957183, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572957184, 3572975359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572975360, 3572975615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572975616, 3572980991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572980992, 3572981247, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572981248, 3572984319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572984320, 3572984575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572984576, 3572986367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572986368, 3572986623, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3572986624, 3573022719, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573022720, 3573055487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573055488, 3573088255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573088256, 3573153791, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573153792, 3573175711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573175712, 3573175727, N'IE', N'Ireland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573175728, 3573208511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573208512, 3573208543, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573208544, 3573219327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573219328, 3573252095, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573252096, 3573284863, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573284864, 3573415935, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573415936, 3573481471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573481472, 3573547007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573547008, 3573612543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573612544, 3573733375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573733376, 3573734399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573734400, 3573743615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573743616, 3573809151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573809152, 3573874687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573874688, 3573940223, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3573940224, 3574005759, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574005760, 3574071295, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574071296, 3574136831, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574136832, 3574137783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574137784, 3574137791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574137792, 3574137823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574137824, 3574137855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574137856, 3574138559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574138560, 3574138623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574138624, 3574138735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574138736, 3574138751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574138752, 3574153217, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153218, 3574153218, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153219, 3574153231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153232, 3574153235, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153236, 3574153239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153240, 3574153243, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153244, 3574153283, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153284, 3574153287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153288, 3574153299, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153300, 3574153303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153304, 3574153359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153360, 3574153367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153368, 3574153415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153416, 3574153427, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153428, 3574153611, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153612, 3574153623, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153624, 3574153679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153680, 3574153687, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153688, 3574153695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153696, 3574153727, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153728, 3574153731, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153732, 3574153735, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153736, 3574153775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153776, 3574153783, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153784, 3574153787, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574153788, 3574154047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154048, 3574154079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154080, 3574154175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154176, 3574154239, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154240, 3574154495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154496, 3574154623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154624, 3574154827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154828, 3574154831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154832, 3574154847, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574154848, 3574155787, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155788, 3574155791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155792, 3574155795, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155796, 3574155799, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155800, 3574155887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155888, 3574155891, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155892, 3574155919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155920, 3574155927, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155928, 3574155943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155944, 3574155947, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574155948, 3574157391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574157392, 3574157407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574157408, 3574159871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574159872, 3574159875, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574159876, 3574159879, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574159880, 3574160959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574160960, 3574161023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574161024, 3574169599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574169600, 3574202367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574202368, 3574267903, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574267904, 3574333439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574333440, 3574341631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574341632, 3574348287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574348288, 3574348543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574348544, 3574398975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574398976, 3574464511, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574464512, 3574530047, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574530048, 3574563679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563680, 3574563695, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563696, 3574563711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563712, 3574563719, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563720, 3574563727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563728, 3574563775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563776, 3574563807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563808, 3574563823, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563824, 3574563839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574563840, 3574564863, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574564864, 3574565375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574565376, 3574565631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574565632, 3574565887, N'SE', N'Sweden') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574565888, 3574565951, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574565952, 3574566143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574566144, 3574566655, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574566656, 3574595583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574595584, 3574596095, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574596096, 3574596351, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574596352, 3574596607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574596608, 3574596615, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574596616, 3574596671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574596672, 3574596703, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574596704, 3574597631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574597632, 3574597887, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574597888, 3574599679, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574599680, 3574599823, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574599824, 3574600191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574600192, 3574600199, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574600200, 3574600207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574600208, 3574600215, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574600216, 3574600447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574600448, 3574600703, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574600704, 3574603263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574603264, 3574603775, N'GF', N'French Guiana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574603776, 3574611967, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574611968, 3574628351, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574628352, 3574661119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574661120, 3574693887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574693888, 3574726655, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574726656, 3574792191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574792192, 3574824959, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574824960, 3574825215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574825216, 3574825343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574825344, 3574825407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574825408, 3574825471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574825472, 3574826111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574826112, 3574826239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574826240, 3574826751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574826752, 3574827007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574827008, 3574827519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574827520, 3574828031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574828032, 3574829823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574829824, 3574833151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833152, 3574833311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833312, 3574833343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833344, 3574833359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833360, 3574833407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833408, 3574833439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833440, 3574833535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833536, 3574833631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833632, 3574833663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574833664, 3574834559, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574834560, 3574834687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574834688, 3574836223, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574836224, 3574836351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574836352, 3574838015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574838016, 3574838271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574838272, 3574838527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574838528, 3574839807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574839808, 3574841343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574841344, 3574857727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574857728, 3574919359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574919360, 3574919391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574919392, 3574956031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574956032, 3574972415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574972416, 3574988799, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3574988800, 3575054335, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575054336, 3575079087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575079088, 3575079103, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575079104, 3575086175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575086176, 3575086207, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575086208, 3575119871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575119872, 3575185407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575185408, 3575250943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575250944, 3575316479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575316480, 3575349247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575349248, 3575351295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351296, 3575351551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351552, 3575351615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351616, 3575351623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351624, 3575351671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351672, 3575351679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351680, 3575351791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351792, 3575351799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351800, 3575351839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351840, 3575351855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351856, 3575351967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351968, 3575351983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575351984, 3575352031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575352032, 3575352047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575352048, 3575352479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575352480, 3575352511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575352512, 3575353759, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575353760, 3575353791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575353792, 3575353951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575353952, 3575354367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575354368, 3575354623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575354624, 3575355375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575355376, 3575356320, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575356321, 3575356327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575356328, 3575356399, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575356400, 3575356415, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575356416, 3575357119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357120, 3575357127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357128, 3575357159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357160, 3575357167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357168, 3575357183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357184, 3575357215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357216, 3575357263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357264, 3575357351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357352, 3575357407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357408, 3575357439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575357440, 3575358975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575358976, 3575359231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575359232, 3575359487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575359488, 3575360255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575360256, 3575360511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575360512, 3575360767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575360768, 3575360927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575360928, 3575361023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575361024, 3575361535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575361536, 3575365631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575365632, 3575366143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575366144, 3575366655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575366656, 3575366687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575366688, 3575366911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575366912, 3575367167, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575367168, 3575367423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575367424, 3575367679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575367680, 3575367935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575367936, 3575368319, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575368320, 3575378175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378176, 3575378191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378192, 3575378207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378208, 3575378239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378240, 3575378287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378288, 3575378439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378440, 3575378447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378448, 3575378835, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378836, 3575378847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378848, 3575378915, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378916, 3575378919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575378920, 3575379103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575379104, 3575379111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575379112, 3575379135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575379136, 3575379967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575379968, 3575380159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575380160, 3575380223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575380224, 3575380543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575380544, 3575380991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575380992, 3575380999, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381000, 3575381007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381008, 3575381015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381016, 3575381023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381024, 3575381031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381032, 3575381047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381048, 3575381223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381224, 3575381231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381232, 3575381247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381248, 3575381503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575381504, 3575382015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575382016, 3575412991, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575412992, 3575413119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575413120, 3575447551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575447552, 3575513087, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575513088, 3575545855, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575545856, 3575562239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575562240, 3575578623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575578624, 3575580671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575580672, 3575580927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575580928, 3575581439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575581440, 3575581567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575581568, 3575581695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575581696, 3575581823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575581824, 3575581951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575581952, 3575582207, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575582208, 3575583103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575583104, 3575583111, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575583112, 3575583999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575584000, 3575584255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575584256, 3575586815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575586816, 3575587071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587072, 3575587103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587104, 3575587119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587120, 3575587135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587136, 3575587151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587152, 3575587295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587296, 3575587311, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587312, 3575587839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575587840, 3575588351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575588352, 3575588863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575588864, 3575589375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575589376, 3575624703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624704, 3575624831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624832, 3575624839, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624840, 3575624847, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624848, 3575624863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624864, 3575624895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624896, 3575624911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624912, 3575624927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624928, 3575624943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624944, 3575624951, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624952, 3575624959, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624960, 3575624975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624976, 3575624983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624984, 3575624991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575624992, 3575624999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575625000, 3575625087, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575625088, 3575625095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575625096, 3575625471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575625472, 3575625503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575625504, 3575625983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575625984, 3575625991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575625992, 3575626047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626048, 3575626111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626112, 3575626335, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626336, 3575626351, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626352, 3575626367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626368, 3575626503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626504, 3575626511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626512, 3575626519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626520, 3575626527, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626528, 3575626599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626600, 3575626607, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626608, 3575626631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626632, 3575626639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626640, 3575626647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626648, 3575626655, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575626656, 3575627311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575627312, 3575627327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575627328, 3575627775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575627776, 3575628799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575628800, 3575628815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575628816, 3575628823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575628824, 3575628831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575628832, 3575629183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575629184, 3575629247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575629248, 3575629823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575629824, 3575629855, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575629856, 3575629871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575629872, 3575629935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575629936, 3575629951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575629952, 3575630015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630016, 3575630023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630024, 3575630079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630080, 3575630335, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630336, 3575630463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630464, 3575630591, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630592, 3575630975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630976, 3575630991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575630992, 3575631103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631104, 3575631111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631112, 3575631119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631120, 3575631127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631128, 3575631183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631184, 3575631199, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631200, 3575631207, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631208, 3575631231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631232, 3575631295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631296, 3575631303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631304, 3575631311, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631312, 3575631615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631616, 3575631631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631632, 3575631639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631640, 3575631647, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631648, 3575631663, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631664, 3575631679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631680, 3575631695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631696, 3575631711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631712, 3575631759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631760, 3575631775, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631776, 3575631855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631856, 3575631863, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575631864, 3575632639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632640, 3575632655, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632656, 3575632703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632704, 3575632711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632712, 3575632783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632784, 3575632791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632792, 3575632831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632832, 3575632847, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632848, 3575632863, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632864, 3575632871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632872, 3575632879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632880, 3575632895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632896, 3575632967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632968, 3575632975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575632976, 3575633039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633040, 3575633055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633056, 3575633063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633064, 3575633071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633072, 3575633135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633136, 3575633143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633144, 3575633599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633600, 3575633663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633664, 3575633919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633920, 3575633983, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633984, 3575633991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575633992, 3575633999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634000, 3575634007, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634008, 3575634015, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634016, 3575634047, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634048, 3575634175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634176, 3575634183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634184, 3575634191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634192, 3575634367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634368, 3575634399, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634400, 3575634431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634432, 3575634455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634456, 3575634463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634464, 3575634495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634496, 3575634519, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634520, 3575634591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634592, 3575634599, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634600, 3575634711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634712, 3575634719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634720, 3575634767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634768, 3575634775, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634776, 3575634783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634784, 3575634791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634792, 3575634799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634800, 3575634807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634808, 3575634815, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634816, 3575634879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634880, 3575634911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634912, 3575634919, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634920, 3575634927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634928, 3575634935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575634936, 3575635015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635016, 3575635023, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635024, 3575635039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635040, 3575635071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635072, 3575635087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635088, 3575635103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635104, 3575635119, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635120, 3575635135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635136, 3575635151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635152, 3575635159, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635160, 3575635167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635168, 3575635183, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635184, 3575635199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635200, 3575635455, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635456, 3575635463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635464, 3575635583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635584, 3575635615, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635616, 3575635631, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635632, 3575635647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635648, 3575635679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635680, 3575635695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635696, 3575635703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635704, 3575635775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635776, 3575635839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635840, 3575635847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635848, 3575635855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635856, 3575635871, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635872, 3575635983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575635984, 3575635999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636000, 3575636143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636144, 3575636151, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636152, 3575636607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636608, 3575636735, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636736, 3575636823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636824, 3575636831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636832, 3575636855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636856, 3575636863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636864, 3575636871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636872, 3575636879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636880, 3575636903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636904, 3575636911, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636912, 3575636983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636984, 3575636991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575636992, 3575637039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575637040, 3575637055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575637056, 3575637151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575637152, 3575637183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575637184, 3575637407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575637408, 3575637439, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575637440, 3575637471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575637472, 3575638103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638104, 3575638111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638112, 3575638175, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638176, 3575638239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638240, 3575638279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638280, 3575638287, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638288, 3575638303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638304, 3575638335, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638336, 3575638527, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638528, 3575638543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638544, 3575638623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638624, 3575638639, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638640, 3575638719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638720, 3575638735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638736, 3575638751, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638752, 3575638767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638768, 3575638783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638784, 3575638911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638912, 3575638943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638944, 3575638975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575638976, 3575639007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575639008, 3575639011, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575639012, 3575639023, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575639024, 3575639039, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575639040, 3575640063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575640064, 3575644159, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575644160, 3575709695, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575709696, 3575732735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575732736, 3575732863, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575732864, 3575736319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575736320, 3575736831, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575736832, 3575742463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575742464, 3575775231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575775232, 3575775295, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575775296, 3575850719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575850720, 3575850735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575850736, 3575854079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575854080, 3575854847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575854848, 3575857151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575857152, 3575857407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575857408, 3575858529, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575858530, 3575858543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575858544, 3575860299, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575860300, 3575860303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575860304, 3575866367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575866368, 3575867135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575867136, 3575873535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575873536, 3575906303, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575906304, 3575971839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3575971840, 3576037375, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576037376, 3576038143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576038144, 3576038655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576038656, 3576038911, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576038912, 3576039103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576039104, 3576039167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576039168, 3576039679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576039680, 3576039807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576039808, 3576039935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576039936, 3576040063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040064, 3576040127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040128, 3576040215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040216, 3576040223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040224, 3576040271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040272, 3576040287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040288, 3576040351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040352, 3576040383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040384, 3576040831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040832, 3576040959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576040960, 3576041471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041472, 3576041535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041536, 3576041727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041728, 3576041799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041800, 3576041831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041832, 3576041847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041848, 3576041863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041864, 3576041871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041872, 3576041879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041880, 3576041887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041888, 3576041903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041904, 3576041919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041920, 3576041935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041936, 3576041943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041944, 3576041951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041952, 3576041975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041976, 3576041983, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576041984, 3576042239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576042240, 3576042495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576042496, 3576043007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576043008, 3576045567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045568, 3576045631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045632, 3576045655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045656, 3576045679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045680, 3576045711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045712, 3576045735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045736, 3576045799, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045800, 3576045823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576045824, 3576048127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576048128, 3576048255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576048256, 3576048639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576048640, 3576048767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576048768, 3576048831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576048832, 3576050047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576050048, 3576050111, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576050112, 3576050431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576050432, 3576053759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576053760, 3576054911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576054912, 3576055103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055104, 3576055111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055112, 3576055119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055120, 3576055127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055128, 3576055151, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055152, 3576055167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055168, 3576055183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055184, 3576055199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055200, 3576055207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055208, 3576055215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055216, 3576055247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055248, 3576055263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055264, 3576055279, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055280, 3576055551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055552, 3576055679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055680, 3576055871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055872, 3576055935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576055936, 3576055999, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056000, 3576056191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056192, 3576056287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056288, 3576056319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056320, 3576056447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056448, 3576056703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056704, 3576056767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056768, 3576056831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056832, 3576056839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056840, 3576056855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056856, 3576056871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056872, 3576056879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056880, 3576056911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056912, 3576056919, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056920, 3576056927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056928, 3576056935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056936, 3576056943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056944, 3576056951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056952, 3576056975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056976, 3576056991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576056992, 3576057007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057008, 3576057039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057040, 3576057055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057056, 3576057631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057632, 3576057647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057648, 3576057711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057712, 3576057743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057744, 3576057759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057760, 3576057775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057776, 3576057823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057824, 3576057839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576057840, 3576058879, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576058880, 3576059007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576059008, 3576059647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576059648, 3576059679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576059680, 3576059711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576059712, 3576059743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576059744, 3576059775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576059776, 3576059807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576059808, 3576060095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576060096, 3576060159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576060160, 3576060287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576060288, 3576060351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576060352, 3576061039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061040, 3576061055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061056, 3576061119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061120, 3576061135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061136, 3576061183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061184, 3576061439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061440, 3576061583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061584, 3576061591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061592, 3576061619, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061620, 3576061631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061632, 3576061639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061640, 3576061647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061648, 3576061687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061688, 3576061695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576061696, 3576062143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576062144, 3576062175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576062176, 3576062463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576062464, 3576062479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576062480, 3576062975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576062976, 3576063103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576063104, 3576064319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576064320, 3576064448, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576064449, 3576064543, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576064544, 3576064559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576064560, 3576065407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576065408, 3576065535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576065536, 3576065855, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576065856, 3576065887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576065888, 3576066063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576066064, 3576066079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576066080, 3576066271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576066272, 3576066295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576066296, 3576066303, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576066304, 3576066431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576066432, 3576067071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576067072, 3576067199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576067200, 3576067247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576067248, 3576067255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576067256, 3576068351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576068352, 3576068479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576068480, 3576068863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576068864, 3576068927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576068928, 3576069055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576069056, 3576069119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576069120, 3576069247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576069248, 3576069279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576069280, 3576069311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576069312, 3576069343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576069344, 3576070271, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070272, 3576070399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070400, 3576070695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070696, 3576070703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070704, 3576070711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070712, 3576070719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070720, 3576070727, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070728, 3576070735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070736, 3576070775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070776, 3576070911, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576070912, 3576071295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576071296, 3576071423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576071424, 3576071551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576071552, 3576071679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576071680, 3576071935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576071936, 3576071951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576071952, 3576072063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576072064, 3576072079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576072080, 3576072287, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576072288, 3576072319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576072320, 3576072415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576072416, 3576072511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576072512, 3576074687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576074688, 3576074879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576074880, 3576075007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075008, 3576075039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075040, 3576075103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075104, 3576075135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075136, 3576075191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075192, 3576075199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075200, 3576075263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075264, 3576075327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075328, 3576075647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075648, 3576075711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075712, 3576075775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075776, 3576075903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576075904, 3576076255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076256, 3576076351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076352, 3576076567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076568, 3576076575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076576, 3576076623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076624, 3576076631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076632, 3576076703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076704, 3576076719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076720, 3576076783, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076784, 3576076791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576076792, 3576077327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077328, 3576077335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077336, 3576077439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077440, 3576077471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077472, 3576077567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077568, 3576077695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077696, 3576077871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077872, 3576077887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077888, 3576077935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077936, 3576077967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576077968, 3576078079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576078080, 3576078175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576078176, 3576078463, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576078464, 3576078591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576078592, 3576079615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576079616, 3576079871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576079872, 3576079999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080000, 3576080127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080128, 3576080223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080224, 3576080255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080256, 3576080775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080776, 3576080799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080800, 3576080807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080808, 3576080815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080816, 3576080823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080824, 3576080831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080832, 3576080871, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080872, 3576080879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576080880, 3576082079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576082080, 3576082111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576082112, 3576082191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576082192, 3576082223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576082224, 3576082687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576082688, 3576082943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576082944, 3576083327, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576083328, 3576083455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576083456, 3576083775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576083776, 3576083839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576083840, 3576083903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576083904, 3576084095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084096, 3576084351, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084352, 3576084415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084416, 3576084479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084480, 3576084543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084544, 3576084607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084608, 3576084671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084672, 3576084703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084704, 3576084735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084736, 3576084863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084864, 3576084927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576084928, 3576085183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576085184, 3576085215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576085216, 3576085695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576085696, 3576085711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576085712, 3576086015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086016, 3576086143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086144, 3576086367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086368, 3576086431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086432, 3576086495, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086496, 3576086527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086528, 3576086559, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086560, 3576086563, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086564, 3576086567, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086568, 3576086571, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086572, 3576086575, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086576, 3576086591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086592, 3576086599, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086600, 3576086603, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576086604, 3576087807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576087808, 3576087823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576087824, 3576087951, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576087952, 3576087967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576087968, 3576088031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088032, 3576088047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088048, 3576088223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088224, 3576088231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088232, 3576088375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088376, 3576088383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088384, 3576088479, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088480, 3576088511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088512, 3576088959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088960, 3576088967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088968, 3576088991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576088992, 3576088999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089000, 3576089023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089024, 3576089039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089040, 3576089055, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089056, 3576089063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089064, 3576089439, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089440, 3576089471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089472, 3576089775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089776, 3576089791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089792, 3576089823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089824, 3576089839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576089840, 3576091407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091408, 3576091423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091424, 3576091455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091456, 3576091479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091480, 3576091519, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091520, 3576091535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091536, 3576091967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091968, 3576091983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576091984, 3576091999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576092000, 3576092031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576092032, 3576092095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576092096, 3576092159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576092160, 3576092863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576092864, 3576092903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576092904, 3576092927, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576092928, 3576093055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576093056, 3576093063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576093064, 3576093071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576093072, 3576093183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576093184, 3576093247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576093248, 3576095231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576095232, 3576096512, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576096513, 3576099071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576099072, 3576100863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576100864, 3576101375, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576101376, 3576102911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576102912, 3576109023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576109024, 3576109055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576109056, 3576119295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576119296, 3576119455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576119456, 3576119471, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576119472, 3576127487, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576127488, 3576131583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576131584, 3576135679, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576135680, 3576168447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576168448, 3576233983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576233984, 3576236671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576236672, 3576236687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576236688, 3576236879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576236880, 3576237055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237056, 3576237063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237064, 3576237071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237072, 3576237087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237088, 3576237135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237136, 3576237215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237216, 3576237279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237280, 3576237455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237456, 3576237503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237504, 3576237567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237568, 3576237583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237584, 3576237599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237600, 3576237679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237680, 3576237695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237696, 3576237759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237760, 3576237791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237792, 3576237823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237824, 3576237855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237856, 3576237871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237872, 3576237887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237888, 3576237919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237920, 3576237935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237936, 3576237951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237952, 3576237983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576237984, 3576238015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238016, 3576238143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238144, 3576238159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238160, 3576238271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238272, 3576238287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238288, 3576238303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238304, 3576238335, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238336, 3576238359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238360, 3576238367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238368, 3576238439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238440, 3576238447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238448, 3576238559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238560, 3576238591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238592, 3576238607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238608, 3576238623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238624, 3576238639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238640, 3576238655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238656, 3576238703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238704, 3576238719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238720, 3576238847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238848, 3576238911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238912, 3576238927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238928, 3576238959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576238960, 3576239007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576239008, 3576239023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576239024, 3576239039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576239040, 3576239055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576239056, 3576239087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576239088, 3576239103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576239104, 3576240039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576240040, 3576240047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576240048, 3576240095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576240096, 3576240127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576240128, 3576240639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576240640, 3576240895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576240896, 3576241791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576241792, 3576241807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576241808, 3576241815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576241816, 3576241823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576241824, 3576241919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576241920, 3576242111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576242112, 3576243967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576243968, 3576244223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576244224, 3576246399, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576246400, 3576246527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576246528, 3576246656, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576246657, 3576246783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576246784, 3576249463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249464, 3576249471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249472, 3576249743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249744, 3576249791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249792, 3576249799, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249800, 3576249823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249824, 3576249831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249832, 3576249839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576249840, 3576251407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576251408, 3576251599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576251600, 3576251615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576251616, 3576251647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576251648, 3576253159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576253160, 3576253183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576253184, 3576254479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254480, 3576254495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254496, 3576254511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254512, 3576254527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254528, 3576254575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254576, 3576254615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254616, 3576254623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254624, 3576254639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254640, 3576254647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254648, 3576254663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254664, 3576254671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254672, 3576254679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254680, 3576254695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254696, 3576254711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254712, 3576254767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254768, 3576254783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254784, 3576254847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254848, 3576254855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254856, 3576254863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254864, 3576254879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254880, 3576254895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254896, 3576254903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576254904, 3576255087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255088, 3576255167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255168, 3576255175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255176, 3576255199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255200, 3576255311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255312, 3576255319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255320, 3576255343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255344, 3576255359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255360, 3576255415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255416, 3576255423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255424, 3576255447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255448, 3576255455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255456, 3576255503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255504, 3576255511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255512, 3576255519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255520, 3576255527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255528, 3576255543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255544, 3576255551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255552, 3576255575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255576, 3576255583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255584, 3576255631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255632, 3576255647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255648, 3576255711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255712, 3576255727, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255728, 3576255743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255744, 3576255759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255760, 3576255919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255920, 3576255935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255936, 3576255975, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255976, 3576255983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576255984, 3576255999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256000, 3576256047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256048, 3576256111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256112, 3576256143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256144, 3576256239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256240, 3576256255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256256, 3576256351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256352, 3576256367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256368, 3576256383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256384, 3576256415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256416, 3576256431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256432, 3576256447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256448, 3576256463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256464, 3576256527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256528, 3576256543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256544, 3576256559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256560, 3576256607, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256608, 3576256623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256624, 3576256639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256640, 3576256671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256672, 3576256687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256688, 3576256767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256768, 3576256895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256896, 3576256959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256960, 3576256991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576256992, 3576257007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257008, 3576257135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257136, 3576257151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257152, 3576257455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257456, 3576257471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257472, 3576257503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257504, 3576257535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257536, 3576257551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257552, 3576257583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257584, 3576257631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257632, 3576257647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257648, 3576257727, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257728, 3576257791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257792, 3576257855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257856, 3576257871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257872, 3576257887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257888, 3576257895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257896, 3576257983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576257984, 3576257999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258000, 3576258095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258096, 3576258127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258128, 3576258160, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258161, 3576258167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258168, 3576258191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258192, 3576258207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258208, 3576258367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258368, 3576258399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258400, 3576258415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258416, 3576258431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258432, 3576258447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258448, 3576258463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258464, 3576258495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258496, 3576258511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258512, 3576258527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258528, 3576258575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258576, 3576258719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258720, 3576258783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258784, 3576258863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258864, 3576258895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258896, 3576258911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258912, 3576258927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576258928, 3576259031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259032, 3576259087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259088, 3576259103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259104, 3576259199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259200, 3576259231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259232, 3576259247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259248, 3576259279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259280, 3576259295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259296, 3576259311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259312, 3576259327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259328, 3576259343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259344, 3576259359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259360, 3576259375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259376, 3576259391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259392, 3576259423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259424, 3576259439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259440, 3576259519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259520, 3576259583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259584, 3576259919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259920, 3576259935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576259936, 3576260063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260064, 3576260079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260080, 3576260175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260176, 3576260191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260192, 3576260207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260208, 3576260223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260224, 3576260239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260240, 3576260255, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260256, 3576260271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260272, 3576260335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260336, 3576260463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260464, 3576260543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260544, 3576260591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260592, 3576260607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260608, 3576260623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260624, 3576260639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260640, 3576260655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260656, 3576260687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260688, 3576260703, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260704, 3576260735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260736, 3576260895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260896, 3576260927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260928, 3576260959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576260960, 3576260999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261000, 3576261015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261016, 3576261023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261024, 3576261047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261048, 3576261055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261056, 3576261063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261064, 3576261071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261072, 3576261087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261088, 3576261095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261096, 3576261103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261104, 3576261111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576261112, 3576262023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576262024, 3576262031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576262032, 3576262063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576262064, 3576262071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576262072, 3576263439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263440, 3576263455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263456, 3576263519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263520, 3576263551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263552, 3576263583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263584, 3576263599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263600, 3576263751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263752, 3576263759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263760, 3576263791, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263792, 3576263903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263904, 3576263911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263912, 3576263919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576263920, 3576264447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264448, 3576264511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264512, 3576264543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264544, 3576264559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264560, 3576264575, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264576, 3576264607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264608, 3576264639, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264640, 3576264703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576264704, 3576265255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265256, 3576265263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265264, 3576265311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265312, 3576265327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265328, 3576265423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265424, 3576265439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265440, 3576265911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265912, 3576265935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576265936, 3576266655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576266656, 3576266671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576266672, 3576266687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576266688, 3576266751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576266752, 3576299519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576299520, 3576365055, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576365056, 3576430591, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576430592, 3576496127, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576496128, 3576561663, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576561664, 3576603135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576603136, 3576603391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576603392, 3576603647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576603648, 3576604159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576604160, 3576604415, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576604416, 3576605183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576605184, 3576605439, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576605440, 3576605695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576605696, 3576605951, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576605952, 3576606207, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576606208, 3576606463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576606464, 3576606719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576606720, 3576606975, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576606976, 3576607231, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576607232, 3576607487, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576607488, 3576607743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576607744, 3576619519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576619520, 3576620031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576620032, 3576620543, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576620544, 3576620799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576620800, 3576622335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576622336, 3576622591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576622592, 3576623871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576623872, 3576624127, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576624128, 3576626943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576626944, 3576692735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576692736, 3576758271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576758272, 3576823807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576823808, 3576889343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576889344, 3576954879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576954880, 3576987647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3576987648, 3577020415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577020416, 3577085951, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577085952, 3577151487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577151488, 3577167871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577167872, 3577184255, N'ET', N'Ethiopia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577184256, 3577217023, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577217024, 3577263167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577263168, 3577263199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577263200, 3577266687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577266688, 3577266943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577266944, 3577282559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577282560, 3577329407, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577329408, 3577329471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577329472, 3577348095, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577348096, 3577392767, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577392768, 3577392783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577392784, 3577413631, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577413632, 3577452415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577452416, 3577452543, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577452544, 3577479167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577479168, 3577544703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577544704, 3577545795, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577545796, 3577545799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577545800, 3577545863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577545864, 3577545871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577545872, 3577545983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577545984, 3577546111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546112, 3577546143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546144, 3577546151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546152, 3577546159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546160, 3577546175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546176, 3577546239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546240, 3577546367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546368, 3577546383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546384, 3577546415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546416, 3577546423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577546424, 3577547455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577547456, 3577547519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577547520, 3577547631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577547632, 3577547647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577547648, 3577547743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577547744, 3577547775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577547776, 3577548287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577548288, 3577548303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577548304, 3577548319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577548320, 3577548351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577548352, 3577549055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577549056, 3577549079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577549080, 3577549119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577549120, 3577549151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577549152, 3577549599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577549600, 3577549823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577549824, 3577550847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577550848, 3577551359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577551360, 3577551407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577551408, 3577551411, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577551412, 3577551423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577551424, 3577551455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577551456, 3577552159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552160, 3577552175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552176, 3577552239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552240, 3577552247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552248, 3577552255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552256, 3577552263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552264, 3577552303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552304, 3577552311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552312, 3577552415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552416, 3577552447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577552448, 3577553015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553016, 3577553023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553024, 3577553151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553152, 3577553407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553408, 3577553503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553504, 3577553535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553536, 3577553551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553552, 3577553567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553568, 3577553591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553592, 3577553607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553608, 3577553623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553624, 3577553663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553664, 3577553983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577553984, 3577554463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554464, 3577554467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554468, 3577554483, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554484, 3577554487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554488, 3577554647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554648, 3577554659, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554660, 3577554663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554664, 3577554671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554672, 3577554687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577554688, 3577556999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577557000, 3577557007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577557008, 3577557071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577557072, 3577557087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577557088, 3577557215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577557216, 3577557231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577557232, 3577557247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577557248, 3577558783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577558784, 3577559167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559168, 3577559183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559184, 3577559551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559552, 3577559559, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559560, 3577559743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559744, 3577559751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559752, 3577559775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559776, 3577559783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559784, 3577559871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559872, 3577559911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559912, 3577559919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559920, 3577559935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559936, 3577559943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559944, 3577559951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559952, 3577559959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559960, 3577559967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577559968, 3577559999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577560000, 3577560047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577560048, 3577560063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577560064, 3577561087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561088, 3577561127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561128, 3577561131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561132, 3577561235, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561236, 3577561263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561264, 3577561267, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561268, 3577561271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561272, 3577561287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561288, 3577561323, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561324, 3577561327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561328, 3577561331, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561332, 3577561595, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561596, 3577561631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561632, 3577561639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561640, 3577561687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561688, 3577561695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561696, 3577561879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561880, 3577561919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577561920, 3577562087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562088, 3577562095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562096, 3577562391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562392, 3577562415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562416, 3577562439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562440, 3577562447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562448, 3577562455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562456, 3577562463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562464, 3577562479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562480, 3577562495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562496, 3577562511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562512, 3577562519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562520, 3577562535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562536, 3577562551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562552, 3577562559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562560, 3577562623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562624, 3577562935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562936, 3577562991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577562992, 3577562999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563000, 3577563007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563008, 3577563015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563016, 3577563135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563136, 3577563903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563904, 3577563911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563912, 3577563919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563920, 3577563927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577563928, 3577564039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577564040, 3577564043, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577564044, 3577564583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577564584, 3577564591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577564592, 3577564663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577564664, 3577564671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577564672, 3577564927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577564928, 3577565227, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577565228, 3577565255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577565256, 3577565259, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577565260, 3577565271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577565272, 3577565283, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577565284, 3577565287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577565288, 3577566207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577566208, 3577566219, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577566220, 3577566463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577566464, 3577566519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577566520, 3577566527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577566528, 3577566847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577566848, 3577567231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577567232, 3577567663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577567664, 3577567743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577567744, 3577568255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577568256, 3577569279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577569280, 3577569499, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577569500, 3577569503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577569504, 3577569887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577569888, 3577569903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577569904, 3577570159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570160, 3577570175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570176, 3577570271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570272, 3577570303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570304, 3577570367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570368, 3577570559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570560, 3577570591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570592, 3577570607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570608, 3577570703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570704, 3577570707, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570708, 3577570711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570712, 3577570751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570752, 3577570775, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570776, 3577570783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570784, 3577570847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570848, 3577570855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570856, 3577570887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570888, 3577570895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570896, 3577570911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570912, 3577570943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577570944, 3577571047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571048, 3577571055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571056, 3577571399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571400, 3577571407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571408, 3577571439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571440, 3577571447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571448, 3577571663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571664, 3577571695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571696, 3577571711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571712, 3577571839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577571840, 3577573051, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577573052, 3577573079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577573080, 3577573183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577573184, 3577573199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577573200, 3577573439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577573440, 3577574399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577574400, 3577574407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577574408, 3577575175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577575176, 3577575191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577575192, 3577575431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577575432, 3577575583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577575584, 3577575599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577575600, 3577575655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577575656, 3577575663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577575664, 3577576735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577576736, 3577576751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577576752, 3577576799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577576800, 3577576831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577576832, 3577576943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577576944, 3577576959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577576960, 3577577231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577232, 3577577247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577248, 3577577455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577456, 3577577471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577472, 3577577647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577648, 3577577655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577656, 3577577703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577704, 3577577711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577712, 3577577923, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577924, 3577577927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577577928, 3577579055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579056, 3577579063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579064, 3577579071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579072, 3577579103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579104, 3577579127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579128, 3577579135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579136, 3577579183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579184, 3577579191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577579192, 3577580383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577580384, 3577580399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577580400, 3577580455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577580456, 3577580463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577580464, 3577580483, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577580484, 3577580487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577580488, 3577582111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577582112, 3577582335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577582336, 3577582487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577582488, 3577582495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577582496, 3577583239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577583240, 3577583247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577583248, 3577584143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584144, 3577584147, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584148, 3577584279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584280, 3577584287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584288, 3577584395, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584396, 3577584399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584400, 3577584623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584624, 3577584639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584640, 3577584895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584896, 3577584911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577584912, 3577585463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577585464, 3577585487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577585488, 3577585631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577585632, 3577585639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577585640, 3577586047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586048, 3577586067, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586068, 3577586071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586072, 3577586075, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586076, 3577586079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586080, 3577586083, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586084, 3577586087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586088, 3577586171, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586172, 3577586175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586176, 3577586207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586208, 3577586383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586384, 3577586391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586392, 3577586615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586616, 3577586623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586624, 3577586647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586648, 3577586687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586688, 3577586751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586752, 3577586783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577586784, 3577587239, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587240, 3577587319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587320, 3577587327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587328, 3577587455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587456, 3577587479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587480, 3577587487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587488, 3577587503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587504, 3577587519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587520, 3577587615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587616, 3577587623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587624, 3577587823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587824, 3577587839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577587840, 3577588095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588096, 3577588099, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588100, 3577588103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588104, 3577588151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588152, 3577588155, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588156, 3577588223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588224, 3577588511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588512, 3577588551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588552, 3577588559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588560, 3577588735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588736, 3577588803, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588804, 3577588807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588808, 3577588863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588864, 3577588879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577588880, 3577588999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589000, 3577589007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589008, 3577589175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589176, 3577589183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589184, 3577589287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589288, 3577589295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589296, 3577589463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589464, 3577589471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589472, 3577589503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589504, 3577589515, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589516, 3577589519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589520, 3577589551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589552, 3577589555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589556, 3577589703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589704, 3577589735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589736, 3577589759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577589760, 3577590135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590136, 3577590143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590144, 3577590219, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590220, 3577590223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590224, 3577590255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590256, 3577590271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590272, 3577590303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590304, 3577590311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590312, 3577590927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590928, 3577590943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577590944, 3577591159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591160, 3577591167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591168, 3577591807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591808, 3577591871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591872, 3577591887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591888, 3577591935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591936, 3577591959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591960, 3577591963, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577591964, 3577592011, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577592012, 3577592015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577592016, 3577593171, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577593172, 3577593175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577593176, 3577593187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577593188, 3577593199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577593200, 3577593407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577593408, 3577593415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577593416, 3577600795, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577600796, 3577600799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577600800, 3577600918, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577600919, 3577600919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577600920, 3577600967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577600968, 3577600975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577600976, 3577601007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601008, 3577601023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601024, 3577601319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601320, 3577601327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601328, 3577601375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601376, 3577601383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601384, 3577601399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601400, 3577601407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601408, 3577601791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577601792, 3577602047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602048, 3577602799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602800, 3577602807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602808, 3577602887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602888, 3577602911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602912, 3577602919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602920, 3577602927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602928, 3577602959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602960, 3577602967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577602968, 3577603039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603040, 3577603055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603056, 3577603063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603064, 3577603071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603072, 3577603103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603104, 3577603111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603112, 3577603131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603132, 3577603135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603136, 3577603199, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603200, 3577603247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603248, 3577603263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603264, 3577603271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603272, 3577603887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603888, 3577603903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577603904, 3577604031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577604032, 3577604095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577604096, 3577606191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606192, 3577606207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606208, 3577606279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606280, 3577606287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606288, 3577606303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606304, 3577606335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606336, 3577606431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606432, 3577606439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606440, 3577606479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606480, 3577606487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606488, 3577606655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606656, 3577606663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606664, 3577606735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606736, 3577606783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606784, 3577606815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606816, 3577606847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606848, 3577606863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606864, 3577606871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606872, 3577606895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577606896, 3577607055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607056, 3577607071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607072, 3577607103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607104, 3577607199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607200, 3577607551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607552, 3577607583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607584, 3577607615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607616, 3577607663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607664, 3577607671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607672, 3577607727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607728, 3577607735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607736, 3577607743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607744, 3577607791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607792, 3577607815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607816, 3577607871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607872, 3577607895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607896, 3577607935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577607936, 3577608191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577608192, 3577608447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577608448, 3577608999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577609000, 3577609007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577609008, 3577609023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577609024, 3577609071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577609072, 3577609087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577609088, 3577609471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577609472, 3577610367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577610368, 3577610495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577610496, 3577610751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577610752, 3577611199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577611200, 3577611263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577611264, 3577612287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577612288, 3577612319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577612320, 3577612383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577612384, 3577612415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577612416, 3577612543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577612544, 3577612799, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577612800, 3577613055, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577613056, 3577613311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577613312, 3577613567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577613568, 3577613887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577613888, 3577613951, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577613952, 3577614079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577614080, 3577614111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577614112, 3577614143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577614144, 3577614207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577614208, 3577618431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618432, 3577618447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618448, 3577618463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618464, 3577618559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618560, 3577618623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618624, 3577618655, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618656, 3577618663, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618664, 3577618687, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577618688, 3577620607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577620608, 3577620623, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577620624, 3577620671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577620672, 3577620735, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577620736, 3577621055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577621056, 3577621119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577621120, 3577621151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577621152, 3577621215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577621216, 3577621223, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577621224, 3577621247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577621248, 3577622143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577622144, 3577622271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577622272, 3577622527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577622528, 3577622591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577622592, 3577622927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577622928, 3577623039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577623040, 3577623935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577623936, 3577624063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577624064, 3577624319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577624320, 3577624447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577624448, 3577624879, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577624880, 3577624895, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577624896, 3577625199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577625200, 3577625207, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577625208, 3577625223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577625224, 3577625231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577625232, 3577626623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577626624, 3577627135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577627136, 3577627647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577627648, 3577627967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577627968, 3577627999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577628000, 3577628671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577628672, 3577630719, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577630720, 3577633791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577633792, 3577633951, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577633952, 3577633959, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577633960, 3577633967, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577633968, 3577634047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577634048, 3577634239, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577634240, 3577634815, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577634816, 3577635839, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577635840, 3577636863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577636864, 3577638143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577638144, 3577638399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577638400, 3577638911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577638912, 3577638959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577638960, 3577638967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577638968, 3577639239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639240, 3577639247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639248, 3577639807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639808, 3577639839, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639840, 3577639855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639856, 3577639863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639864, 3577639871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639872, 3577639935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577639936, 3577641423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577641424, 3577641471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577641472, 3577641983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577641984, 3577642239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577642240, 3577642559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577642560, 3577643007, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577643008, 3577643231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577643232, 3577643247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577643248, 3577643263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577643264, 3577645431, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645432, 3577645447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645448, 3577645455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645456, 3577645503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645504, 3577645567, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645568, 3577645823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645824, 3577645887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645888, 3577645903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645904, 3577645951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577645952, 3577646079, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646080, 3577646207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646208, 3577646335, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646336, 3577646407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646408, 3577646415, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646416, 3577646527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646528, 3577646591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646592, 3577646847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577646848, 3577647103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577647104, 3577647911, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577647912, 3577647935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577647936, 3577647967, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577647968, 3577647999, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577648000, 3577648127, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577648128, 3577651199, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577651200, 3577651455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577651456, 3577652223, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652224, 3577652671, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652672, 3577652735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652736, 3577652743, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652744, 3577652751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652752, 3577652767, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652768, 3577652863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652864, 3577652943, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652944, 3577652991, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577652992, 3577653119, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577653120, 3577653247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577653248, 3577655295, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655296, 3577655519, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655520, 3577655551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655552, 3577655647, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655648, 3577655663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655664, 3577655679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655680, 3577655711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655712, 3577655743, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655744, 3577655807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577655808, 3577656447, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577656448, 3577657343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577657344, 3577659391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577659392, 3577659679, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577659680, 3577659711, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577659712, 3577659743, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577659744, 3577659903, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577659904, 3577660159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577660160, 3577660607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577660608, 3577660671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577660672, 3577661439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577661440, 3577663487, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577663488, 3577665215, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665216, 3577665247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665248, 3577665311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665312, 3577665343, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665344, 3577665375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665376, 3577665407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665408, 3577665455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665456, 3577665535, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665536, 3577665591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665592, 3577665615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665616, 3577665679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665680, 3577665791, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665792, 3577665823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665824, 3577665855, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665856, 3577665919, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577665920, 3577666047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577666048, 3577666175, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577666176, 3577667583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577667584, 3577667743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577667744, 3577668639, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577668640, 3577668671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577668672, 3577668735, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577668736, 3577668799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577668800, 3577669119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577669120, 3577669383, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577669384, 3577669503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577669504, 3577669631, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577669632, 3577671679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577671680, 3577672191, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577672192, 3577673727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577673728, 3577675775, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577675776, 3577741311, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3577741312, 3578003455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578003456, 3578049023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578049024, 3578049055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578049056, 3578169487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578169488, 3578169495, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578169496, 3578265599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578265600, 3578331135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578331136, 3578339327, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578339328, 3578347519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578347520, 3578363903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578363904, 3578396671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578396672, 3578462207, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578462208, 3578527743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578527744, 3578658815, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578658816, 3578724351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578724352, 3578732543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578732544, 3578740735, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578740736, 3578757119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578757120, 3578822655, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578822656, 3578855423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578855424, 3578888191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578888192, 3578920959, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578920960, 3578986495, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578986496, 3578991931, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578991932, 3578991935, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578991936, 3578996999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578997000, 3578997007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578997008, 3578998575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578998576, 3578998583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3578998584, 3579002879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579002880, 3579019263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579019264, 3579052031, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579052032, 3579117567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579117568, 3579132159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579132160, 3579132415, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579132416, 3579183103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579183104, 3579197055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579197056, 3579197183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579197184, 3579197871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579197872, 3579197887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579197888, 3579197903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579197904, 3579200191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579200192, 3579200223, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579200224, 3579228159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579228160, 3579228415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579228416, 3579228671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579228672, 3579228799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579228800, 3579241151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579241152, 3579241215, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579241216, 3579242751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579242752, 3579243007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579243008, 3579248639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579248640, 3579314175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579314176, 3579346943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579346944, 3579361535, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579361536, 3579361791, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579361792, 3579362047, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579362048, 3579362063, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579362064, 3579362303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579362304, 3579362559, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579362560, 3579362815, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579362816, 3579363327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579363328, 3579445247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579445248, 3579463679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579463680, 3579463683, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579463684, 3579478015, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579478016, 3579480847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579480848, 3579480855, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579480856, 3579480863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579480864, 3579480871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579480872, 3579481095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481096, 3579481103, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481104, 3579481119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481120, 3579481127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481128, 3579481135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481136, 3579481143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481144, 3579481151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481152, 3579481159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481160, 3579481167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481168, 3579481191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481192, 3579481199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481200, 3579481247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481248, 3579481255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481256, 3579481263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481264, 3579481279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481280, 3579481287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579481288, 3579482623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579482624, 3579482927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579482928, 3579482943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579482944, 3579482991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579482992, 3579483151, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579483152, 3579483263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579483264, 3579483295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579483296, 3579483311, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579483312, 3579483359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579483360, 3579483375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579483376, 3579485695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485696, 3579485711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485712, 3579485714, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485715, 3579485727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485728, 3579485792, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485793, 3579485823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485824, 3579485887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485888, 3579485888, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485889, 3579485903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485904, 3579485919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485920, 3579485983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485984, 3579485984, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579485985, 3579486015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486016, 3579486031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486032, 3579486047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486048, 3579486095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486096, 3579486143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486144, 3579486175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486176, 3579486191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486192, 3579486207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486208, 3579486223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486224, 3579486239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486240, 3579486271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486272, 3579486319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486320, 3579486335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486336, 3579486351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486352, 3579486367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486368, 3579486383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486384, 3579486399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486400, 3579486415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486416, 3579486431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486432, 3579486463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579486464, 3579487855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579487856, 3579487871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579487872, 3579487887, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579487888, 3579487903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579487904, 3579487951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579487952, 3579487967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579487968, 3579487983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579487984, 3579487999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579488000, 3579490559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490560, 3579490655, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490656, 3579490671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490672, 3579490719, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490720, 3579490735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490736, 3579490751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490752, 3579490815, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490816, 3579490831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490832, 3579490911, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579490912, 3579491231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579491232, 3579491247, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579491248, 3579491263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579491264, 3579491311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579491312, 3579491327, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579491328, 3579527167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579527168, 3579543551, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579543552, 3579576319, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579576320, 3579579263, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579579264, 3579579295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579579296, 3579582367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579582368, 3579582399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579582400, 3579595967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579595968, 3579595983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579595984, 3579596927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579596928, 3579597055, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579597056, 3579600191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579600192, 3579600207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579600208, 3579601471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579601472, 3579601487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579601488, 3579605487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579605488, 3579605503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579605504, 3579607551, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579607552, 3579607807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579607808, 3579609087, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579609088, 3579707391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579707392, 3579723775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579723776, 3579740159, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579740160, 3579772927, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579772928, 3579838463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3579838464, 3580100607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580100608, 3580207103, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580207104, 3580208127, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580208128, 3580213247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580213248, 3580214271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580214272, 3580214783, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580214784, 3580216319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580216320, 3580216831, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580216832, 3580217087, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580217088, 3580217343, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580217344, 3580219391, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580219392, 3580223487, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580223488, 3580231679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580231680, 3580231935, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580231936, 3580232191, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580232192, 3580233215, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580233216, 3580233727, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580233728, 3580235263, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580235264, 3580235775, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580235776, 3580236799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580236800, 3580237567, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580237568, 3580237823, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580237824, 3580238335, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580238336, 3580239359, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580239360, 3580239871, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580239872, 3580241919, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580241920, 3580243967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580243968, 3580248063, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580248064, 3580250111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580250112, 3580252671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580252672, 3580254207, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580254208, 3580260351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580260352, 3580265727, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580265728, 3580266495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580266496, 3580272639, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580272640, 3580329983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580329984, 3580338175, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580338176, 3580362751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580362752, 3580473375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473376, 3580473391, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473392, 3580473503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473504, 3580473511, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473512, 3580473519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473520, 3580473527, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473528, 3580473695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473696, 3580473727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473728, 3580473759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473760, 3580473887, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473888, 3580473951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473952, 3580473959, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473960, 3580473967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473968, 3580473983, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580473984, 3580473999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474000, 3580474007, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474008, 3580474095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474096, 3580474111, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474112, 3580474495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474496, 3580474559, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474560, 3580474639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474640, 3580474647, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474648, 3580474655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474656, 3580474671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474672, 3580474687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474688, 3580474703, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474704, 3580474719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474720, 3580474735, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474736, 3580474807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474808, 3580474879, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580474880, 3580475055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580475056, 3580475063, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580475064, 3580475123, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580475124, 3580475127, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580475128, 3580475343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580475344, 3580475351, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580475352, 3580887039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580887040, 3580895231, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580895232, 3580896000, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3580896001, 3581149183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581149184, 3581150367, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581150368, 3581150463, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581150464, 3581150591, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581150592, 3581150719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581150720, 3581150783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581150784, 3581150975, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581150976, 3581151039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581151040, 3581151231, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581151232, 3581151295, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581151296, 3581154047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581154048, 3581154303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581154304, 3581157119, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581157120, 3581158655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581158656, 3581159167, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581159168, 3581159295, N'AT', N'Austria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581159296, 3581159423, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581159424, 3581161471, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581161472, 3581173759, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581173760, 3581196799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581196800, 3581197311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581197312, 3581197567, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581197568, 3581197823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581197824, 3581200127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581200128, 3581203967, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581203968, 3581214719, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581214720, 3581231103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581231104, 3581239295, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581239296, 3581241343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581241344, 3581255679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581255680, 3581259263, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581259264, 3581261311, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581261312, 3581261439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581261440, 3581279103, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581279104, 3581279199, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581279200, 3581280255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581280256, 3581411327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581411328, 3581673471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581673472, 3581935615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581935616, 3581943807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581943808, 3581951999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581952000, 3581969431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581969432, 3581969439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581969440, 3581969791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581969792, 3581969823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581969824, 3581976575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581976576, 3581984767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581984768, 3581992959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3581992960, 3582001151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582001152, 3582009343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582009344, 3582025727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582025728, 3582033919, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582033920, 3582042111, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582042112, 3582050303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582050304, 3582058495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582058496, 3582059167, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582059168, 3582059175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582059176, 3582066687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582066688, 3582074879, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582074880, 3582078631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582078632, 3582078639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582078640, 3582080143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582080144, 3582080151, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582080152, 3582083071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582083072, 3582091263, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582091264, 3582099455, N'QA', N'Qatar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582099456, 3582107647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582107648, 3582115839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582115840, 3582132223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582132224, 3582140415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582140416, 3582148607, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582148608, 3582156799, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582156800, 3582164991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582164992, 3582173183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582173184, 3582181375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582181376, 3582191023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582191024, 3582191031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582191032, 3582195135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582195136, 3582195143, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582195144, 3582195151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582195152, 3582195159, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582195160, 3582195167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582195168, 3582195175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582195176, 3582195183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582195184, 3582196183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582196184, 3582196191, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582196192, 3582197759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582197760, 3582205951, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582205952, 3582214143, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582214144, 3582222335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582222336, 3582230527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582230528, 3582238719, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582238720, 3582255103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582255104, 3582263295, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582263296, 3582271487, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582271488, 3582279679, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582279680, 3582287871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582287872, 3582292231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292232, 3582292239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292240, 3582292303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292304, 3582292319, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292320, 3582292415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292416, 3582292447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292448, 3582292463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292464, 3582292471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292472, 3582292487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292488, 3582292495, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292496, 3582292535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292536, 3582292543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292544, 3582292551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292552, 3582292959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292960, 3582292967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582292968, 3582293087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582293088, 3582293119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582293120, 3582293583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582293584, 3582293591, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582293592, 3582294271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582294272, 3582294399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582294400, 3582294439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582294440, 3582294443, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582294444, 3582295263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582295264, 3582295295, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582295296, 3582295551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582295552, 3582295615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582295616, 3582295871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582295872, 3582295935, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582295936, 3582296063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582296064, 3582304255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582304256, 3582312447, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582312448, 3582320639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582320640, 3582328831, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582328832, 3582337023, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582337024, 3582341119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582341120, 3582343167, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582343168, 3582343423, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582343424, 3582345215, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582345216, 3582353407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582353408, 3582361599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582361600, 3582377983, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582377984, 3582386175, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582386176, 3582394367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582394368, 3582402559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582402560, 3582410751, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582410752, 3582435327, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582435328, 3582443519, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582443520, 3582451711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582451712, 3582459903, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582459904, 3582468095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582468096, 3582476287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582476288, 3582484479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582484480, 3582492671, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582492672, 3582509055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582509056, 3582517247, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582517248, 3582525439, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582525440, 3582533631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582533632, 3582538183, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582538184, 3582538191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582538192, 3582541823, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582541824, 3582550015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582550016, 3582558207, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582558208, 3582566399, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566400, 3582566431, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566432, 3582566479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566480, 3582566495, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566496, 3582566527, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566528, 3582566655, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566656, 3582566735, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566736, 3582566767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566768, 3582566783, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582566784, 3582567007, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567008, 3582567011, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567012, 3582567015, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567016, 3582567023, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567024, 3582567039, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567040, 3582567135, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567136, 3582567167, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567168, 3582567231, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567232, 3582567295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567296, 3582567391, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567392, 3582567399, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567400, 3582567423, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567424, 3582567807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567808, 3582567903, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567904, 3582567935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582567936, 3582568191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568192, 3582568223, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568224, 3582568247, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568248, 3582568263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568264, 3582568335, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568336, 3582568339, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568340, 3582568343, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568344, 3582568351, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568352, 3582568367, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568368, 3582568383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568384, 3582568431, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568432, 3582568447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568448, 3582568703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568704, 3582568831, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568832, 3582568959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568960, 3582568967, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568968, 3582568975, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568976, 3582568983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568984, 3582568991, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582568992, 3582569023, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569024, 3582569035, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569036, 3582569039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569040, 3582569047, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569048, 3582569055, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569056, 3582569071, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569072, 3582569079, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569080, 3582569087, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569088, 3582569095, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569096, 3582569103, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569104, 3582569151, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569152, 3582569167, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569168, 3582569183, N'BT', N'Bhutan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569184, 3582569199, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569200, 3582569207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569208, 3582569239, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569240, 3582569247, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569248, 3582569263, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569264, 3582569279, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569280, 3582569303, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569304, 3582569471, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569472, 3582569983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582569984, 3582570239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570240, 3582570367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570368, 3582570431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570432, 3582570463, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570464, 3582570479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570480, 3582570483, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570484, 3582570487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570488, 3582570495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570496, 3582570751, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570752, 3582570863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570864, 3582570879, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570880, 3582570883, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570884, 3582570887, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570888, 3582570943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570944, 3582570983, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582570984, 3582571055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571056, 3582571263, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571264, 3582571303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571304, 3582571307, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571308, 3582571319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571320, 3582571327, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571328, 3582571343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571344, 3582571375, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571376, 3582571391, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571392, 3582571407, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571408, 3582571455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571456, 3582571647, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571648, 3582571671, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571672, 3582571679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571680, 3582571691, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571692, 3582571695, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571696, 3582571707, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571708, 3582571711, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571712, 3582571839, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571840, 3582571855, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571856, 3582571871, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571872, 3582571903, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571904, 3582571967, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571968, 3582571975, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571976, 3582571991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582571992, 3582571999, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572000, 3582572015, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572016, 3582572031, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572032, 3582572463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572464, 3582572479, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572480, 3582572495, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572496, 3582572543, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572544, 3582572575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572576, 3582572623, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572624, 3582572639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572640, 3582572799, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572800, 3582572871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572872, 3582572943, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572944, 3582572951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572952, 3582572975, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572976, 3582572983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582572984, 3582573023, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573024, 3582573055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573056, 3582573087, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573088, 3582573135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573136, 3582573183, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573184, 3582573223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573224, 3582573407, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573408, 3582573519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573520, 3582573551, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573552, 3582573567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573568, 3582573583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573584, 3582573615, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573616, 3582573695, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573696, 3582573823, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573824, 3582573855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573856, 3582573887, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573888, 3582573951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582573952, 3582574079, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582574080, 3582574431, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582574432, 3582574435, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582574436, 3582574455, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582574456, 3582574479, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582574480, 3582574591, N'BT', N'Bhutan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582574592, 3582582783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582582784, 3582590975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582590976, 3582599167, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582599168, 3582607359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582607360, 3582615551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582615552, 3582615807, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582615808, 3582616063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582616064, 3582616319, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582616320, 3582616575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582616576, 3582616831, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582616832, 3582617087, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582617088, 3582617343, N'IR', N'Iran, Islamic Republic of') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582617344, 3582618111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582618112, 3582618367, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582618368, 3582618879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582618880, 3582619135, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582619136, 3582619391, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582619392, 3582619647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582619648, 3582620159, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582620160, 3582620927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582620928, 3582621695, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582621696, 3582621951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582621952, 3582622207, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582622208, 3582622463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582622464, 3582622591, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582622592, 3582622719, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582622720, 3582623231, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582623232, 3582623487, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582623488, 3582623743, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582623744, 3582631935, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582631936, 3582640127, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582640128, 3582648319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582648320, 3582656511, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582656512, 3582664047, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582664048, 3582664055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582664056, 3582664703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582664704, 3582672895, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582672896, 3582681087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582681088, 3582689279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582689280, 3582697471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582697472, 3582705663, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582705664, 3582722047, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582722048, 3582730239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582730240, 3582735871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582735872, 3582736127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582736128, 3582736383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582736384, 3582737407, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582737408, 3582737919, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582737920, 3582738431, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582738432, 3582746623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582746624, 3582754815, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582754816, 3582763007, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582763008, 3582771199, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582771200, 3582779391, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582779392, 3582787583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582787584, 3582795775, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582795776, 3582803967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582803968, 3582812159, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582812160, 3582820351, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582820352, 3582828543, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582828544, 3582836735, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582836736, 3582853119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582853120, 3582861311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582861312, 3582869503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582869504, 3582877695, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582877696, 3582885887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582885888, 3582894079, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582894080, 3582902271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582902272, 3582910463, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582910464, 3582918655, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582918656, 3582926847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582926848, 3582935039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582935040, 3582943231, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582943232, 3582951423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582951424, 3582959615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582959616, 3582967807, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582967808, 3582975999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582976000, 3582984191, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582984192, 3582989415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582989416, 3582989423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582989424, 3582992383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3582992384, 3583000575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583000576, 3583008767, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583008768, 3583016959, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583016960, 3583017847, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583017848, 3583017855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583017856, 3583023215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583023216, 3583023223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583023224, 3583025151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583025152, 3583032159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583032160, 3583032191, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583032192, 3583032319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583032320, 3583032831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583032832, 3583033087, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583033088, 3583041535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583041536, 3583049727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583049728, 3583057919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583057920, 3583066111, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583066112, 3583074303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583074304, 3583082495, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583082496, 3583090687, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583090688, 3583098879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583098880, 3583107071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583107072, 3583115263, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583115264, 3583123455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583123456, 3583131647, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583131648, 3583139839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583139840, 3583141727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583141728, 3583141735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583141736, 3583148031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583148032, 3583156223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583156224, 3583164415, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583164416, 3583172607, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583172608, 3583188991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583188992, 3583197183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583197184, 3583205375, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583205376, 3583213567, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583213568, 3583221759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583221760, 3583238143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583238144, 3583246335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583246336, 3583254527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583254528, 3583262719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583262720, 3583270911, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583270912, 3583279103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583279104, 3583287295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583287296, 3583295487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583295488, 3583303679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583303680, 3583311871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583311872, 3583320063, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583320064, 3583328255, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583328256, 3583336447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583336448, 3583337727, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583337728, 3583337983, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583337984, 3583339519, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583339520, 3583340287, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583340288, 3583341039, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583341040, 3583341055, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583341056, 3583344639, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583344640, 3583352831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583352832, 3583361023, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583361024, 3583369215, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583369216, 3583377407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583377408, 3583385599, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583385600, 3583393791, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583393792, 3583401983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583401984, 3583410175, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583410176, 3583418367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583418368, 3583426559, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583426560, 3583434751, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583434752, 3583436799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583436800, 3583442943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583442944, 3583451135, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583451136, 3583459327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583459328, 3583467519, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583467520, 3583475711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583475712, 3583483903, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583483904, 3583492095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583492096, 3583508479, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583508480, 3583516671, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583516672, 3583524863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583524864, 3583533055, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583533056, 3583533823, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583533824, 3583534079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583534080, 3583534801, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583534802, 3583537663, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583537664, 3583537919, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583537920, 3583538687, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583538688, 3583539519, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583539520, 3583539967, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583539968, 3583540096, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583540097, 3583540223, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583540224, 3583541247, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583541248, 3583549439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583549440, 3583558399, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583558400, 3583558527, N'SM', N'San Marino') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583558528, 3583565823, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583565824, 3583574015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583574016, 3583582207, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583582208, 3583590399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583590400, 3583598591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583598592, 3583606783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583606784, 3583639551, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583639552, 3583647743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583647744, 3583655935, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583655936, 3583664127, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583664128, 3583680511, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583680512, 3583688703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583688704, 3583696895, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583696896, 3583705087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583705088, 3583713279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583713280, 3583721471, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583721472, 3583729663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583729664, 3583737855, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583737856, 3583742719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583742720, 3583743615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583743616, 3583743711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583743712, 3583744067, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583744068, 3583744071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583744072, 3583744127, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583744128, 3583744303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583744304, 3583744831, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583744832, 3583744839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583744840, 3583745015, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583745016, 3583745023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583745024, 3583745807, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583745808, 3583745823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583745824, 3583746047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583746048, 3583754239, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583754240, 3583762431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583762432, 3583770623, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583770624, 3583772351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583772352, 3583772359, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583772360, 3583778815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583778816, 3583787007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583787008, 3583795199, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583795200, 3583803391, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583803392, 3583806719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583806720, 3583806975, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583806976, 3583811583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583811584, 3583819519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583819520, 3583819775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583819776, 3583827967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583827968, 3583836159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583836160, 3583844351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583844352, 3583852543, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583852544, 3583853055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853056, 3583853119, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853120, 3583853127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853128, 3583853255, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853256, 3583853263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853264, 3583853287, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853288, 3583853291, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853292, 3583853327, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853328, 3583853335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853336, 3583853359, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853360, 3583853367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853368, 3583853535, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853536, 3583853543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853544, 3583853551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853552, 3583853559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853560, 3583853655, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853656, 3583853659, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853660, 3583853671, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853672, 3583853695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853696, 3583853711, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853712, 3583853759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853760, 3583853783, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853784, 3583853791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853792, 3583853799, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853800, 3583853803, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853804, 3583853807, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853808, 3583853815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853816, 3583853823, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853824, 3583853839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853840, 3583853855, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853856, 3583853871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853872, 3583853903, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853904, 3583853911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853912, 3583853919, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853920, 3583853935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853936, 3583853951, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853952, 3583853967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853968, 3583853983, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853984, 3583853991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583853992, 3583853999, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854000, 3583854015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854016, 3583854031, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854032, 3583854039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854040, 3583854047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854048, 3583854055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854056, 3583854063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854064, 3583854071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854072, 3583854079, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854080, 3583854087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854088, 3583854095, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854096, 3583854103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854104, 3583854111, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854112, 3583854143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854144, 3583854159, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854160, 3583854183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854184, 3583854199, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854200, 3583854215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854216, 3583854223, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854224, 3583854231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854232, 3583854239, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854240, 3583854335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854336, 3583854591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854592, 3583854879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854880, 3583854927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854928, 3583854935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854936, 3583854943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854944, 3583854951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854952, 3583854983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583854984, 3583855007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855008, 3583855039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855040, 3583855047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855048, 3583855103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855104, 3583855135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855136, 3583855167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855168, 3583855175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855176, 3583855183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855184, 3583855191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855192, 3583855199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855200, 3583855207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855208, 3583855215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855216, 3583855311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855312, 3583855327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583855328, 3583856383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583856384, 3583856399, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583856400, 3583856407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583856408, 3583856415, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583856416, 3583856615, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583856616, 3583856639, N'SN', N'Senegal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583856640, 3583857407, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583857408, 3583857663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583857664, 3583857919, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583857920, 3583857983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583857984, 3583858047, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583858048, 3583858175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583858176, 3583858303, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583858304, 3583860735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583860736, 3583868927, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583868928, 3583877119, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583877120, 3583882239, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583882240, 3583882751, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583882752, 3583885311, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583885312, 3583893503, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583893504, 3583901695, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583901696, 3583909887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583909888, 3583918079, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583918080, 3583926271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583926272, 3583934463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583934464, 3583942655, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583942656, 3583950847, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583950848, 3583959039, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583959040, 3583967231, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583967232, 3583975423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583975424, 3583983615, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3583983616, 3583999999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584000000, 3584008191, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584008192, 3584013311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584013312, 3584016383, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584016384, 3584024575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584024576, 3584032767, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584032768, 3584040959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584040960, 3584049151, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584049152, 3584057343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584057344, 3584065535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584065536, 3584073727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584073728, 3584081919, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584081920, 3584081951, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584081952, 3584081959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584081960, 3584082271, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584082272, 3584082287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584082288, 3584082943, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584082944, 3584089087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584089088, 3584089855, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584089856, 3584089871, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584089872, 3584090111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584090112, 3584090623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584090624, 3584090879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584090880, 3584090943, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584090944, 3584090959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584090960, 3584094893, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584094894, 3584094895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584094896, 3584095935, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584095936, 3584095999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584096000, 3584096183, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584096184, 3584096191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584096192, 3584096255, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584096256, 3584098303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584098304, 3584106495, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584106496, 3584114687, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584114688, 3584122879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584122880, 3584131071, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584131072, 3584139263, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584139264, 3584147455, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584147456, 3584155647, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584155648, 3584163839, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584163840, 3584172031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584172032, 3584180223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584180224, 3584188415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584188416, 3584196607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584196608, 3584204799, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584204800, 3584212991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584212992, 3584221183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584221184, 3584229375, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584229376, 3584245759, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584245760, 3584253951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584253952, 3584262143, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584262144, 3584270335, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584270336, 3584278527, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584278528, 3584286719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584286720, 3584303103, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584303104, 3584311295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584311296, 3584319487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584319488, 3584327679, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584327680, 3584335871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584335872, 3584344063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584344064, 3584352255, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584352256, 3584360447, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584360448, 3584368639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584368640, 3584376831, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584376832, 3584385023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584385024, 3584393215, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584393216, 3584401407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584401408, 3584409599, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584409600, 3584412159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584412160, 3584412415, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584412416, 3584413695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584413696, 3584414207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584414208, 3584416255, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584416256, 3584416767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584416768, 3584417791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584417792, 3584434175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584434176, 3584442367, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584442368, 3584450559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584450560, 3584458751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584458752, 3584466943, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584466944, 3584475135, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584475136, 3584483327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584483328, 3584491519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584491520, 3584499711, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584499712, 3584507903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584507904, 3584508927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584508928, 3584508943, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584508944, 3584508951, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584508952, 3584509031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584509032, 3584509039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584509040, 3584509359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584509360, 3584509367, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584509368, 3584510623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584510624, 3584510655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584510656, 3584510719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584510720, 3584510975, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584510976, 3584511807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584511808, 3584511871, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584511872, 3584513535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584513536, 3584513567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584513568, 3584513599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584513600, 3584513615, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584513616, 3584516047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584516048, 3584516055, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584516056, 3584516095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584516096, 3584524287, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584524288, 3584532479, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584532480, 3584540671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584540672, 3584548863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584548864, 3584557055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584557056, 3584565247, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584565248, 3584573439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584573440, 3584589823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584589824, 3584598015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584598016, 3584606207, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584606208, 3584614399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584614400, 3584622591, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584622592, 3584630783, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584630784, 3584638975, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584638976, 3584647167, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584647168, 3584648191, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584648192, 3584648703, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584648704, 3584649215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584649216, 3584649983, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584649984, 3584650751, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584650752, 3584651007, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584651008, 3584655359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584655360, 3584663551, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584663552, 3584671743, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584671744, 3584688127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584688128, 3584696319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584696320, 3584701703, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584701704, 3584701711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584701712, 3584701751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584701752, 3584701823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584701824, 3584701967, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584701968, 3584701975, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584701976, 3584701983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584701984, 3584702007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584702008, 3584702015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584702016, 3584702047, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584702048, 3584702079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584702080, 3584702159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584702160, 3584702207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584702208, 3584702463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584702464, 3584703063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703064, 3584703071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703072, 3584703079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703080, 3584703087, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703088, 3584703095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703096, 3584703103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703104, 3584703111, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703112, 3584703119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584703120, 3584704511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584704512, 3584720895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584720896, 3584729087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584729088, 3584737279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584737280, 3584745471, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584745472, 3584753663, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584753664, 3584760519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584760520, 3584760527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584760528, 3584761855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584761856, 3584770047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584770048, 3584778239, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584778240, 3584786431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584786432, 3584794623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584794624, 3584802815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584802816, 3584811007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584811008, 3584819199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584819200, 3584827391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584827392, 3584835583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584835584, 3584843775, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584843776, 3584851967, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584851968, 3584860159, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584860160, 3584868351, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584868352, 3584876543, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584876544, 3584884735, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584884736, 3584892927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584892928, 3584901119, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584901120, 3584909311, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584909312, 3584917503, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584917504, 3584925695, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584925696, 3584933887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584933888, 3584942079, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584942080, 3584950271, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584950272, 3584958463, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584958464, 3584966655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584966656, 3584969727, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584969728, 3584969983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584969984, 3584970047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970048, 3584970111, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970112, 3584970175, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970176, 3584970239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970240, 3584970303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970304, 3584970367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970368, 3584970431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970432, 3584970495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970496, 3584970559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970560, 3584970623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970624, 3584970687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970688, 3584970751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584970752, 3584971263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971264, 3584971391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971392, 3584971519, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971520, 3584971647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971648, 3584971743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971744, 3584971775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971776, 3584971839, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971840, 3584971967, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584971968, 3584971999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972000, 3584972023, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972024, 3584972031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972032, 3584972287, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972288, 3584972319, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972320, 3584972351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972352, 3584972383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972384, 3584972415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972416, 3584972447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972448, 3584972479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972480, 3584972511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972512, 3584972543, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584972544, 3584973055, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584973056, 3584973183, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584973184, 3584973279, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584973280, 3584973311, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584973312, 3584974079, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584974080, 3584974143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584974144, 3584974847, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584974848, 3584983039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584983040, 3584991231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584991232, 3584999423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3584999424, 3585007615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585007616, 3585015807, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585015808, 3585023999, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585024000, 3585032191, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585032192, 3585048575, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585048576, 3585056767, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585056768, 3585064959, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585064960, 3585081343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585081344, 3585114111, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585114112, 3585122303, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585122304, 3585130495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585130496, 3585138687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585138688, 3585146879, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585146880, 3585147327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585147328, 3585155071, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585155072, 3585163263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585163264, 3585171455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585171456, 3585179647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585179648, 3585196031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585196032, 3585200415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585200416, 3585200463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585200464, 3585200895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585200896, 3585201151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585201152, 3585202431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202432, 3585202439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202440, 3585202463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202464, 3585202543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202544, 3585202591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202592, 3585202623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202624, 3585202703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202704, 3585202711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202712, 3585202719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202720, 3585202735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202736, 3585202759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202760, 3585202783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202784, 3585202799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202800, 3585202943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585202944, 3585203327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585203328, 3585212415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585212416, 3585220607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585220608, 3585228799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585228800, 3585236991, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585236992, 3585245183, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585245184, 3585253375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585253376, 3585261567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585261568, 3585269759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585269760, 3585277951, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585277952, 3585286143, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585286144, 3585294335, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585294336, 3585302527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585302528, 3585310719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585310720, 3585318911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585318912, 3585327103, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585327104, 3585335295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585335296, 3585343487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585343488, 3585351679, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585351680, 3585359871, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585359872, 3585368063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585368064, 3585376255, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585376256, 3585384447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585384448, 3585392639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585392640, 3585400831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585400832, 3585409023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585409024, 3585417215, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585417216, 3585418943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585418944, 3585419007, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585419008, 3585420031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585420032, 3585420287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585420288, 3585423359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585423360, 3585423871, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585423872, 3585425407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585425408, 3585433599, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585433600, 3585441791, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585441792, 3585445207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585445208, 3585445215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585445216, 3585449983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585449984, 3585458175, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585458176, 3585466367, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585466368, 3585474559, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585474560, 3585482751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585482752, 3585490943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585490944, 3585499135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585499136, 3585515519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585515520, 3585523711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585523712, 3585531903, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585531904, 3585540095, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585540096, 3585548287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585548288, 3585556479, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585556480, 3585564671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585564672, 3585572863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585572864, 3585581055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585581056, 3585597439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585597440, 3585605631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585605632, 3585613823, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585613824, 3585622015, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585622016, 3585630207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585630208, 3585638399, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585638400, 3585646591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585646592, 3585654783, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585654784, 3585662975, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585662976, 3585671167, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585671168, 3585672959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585672960, 3585673983, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585673984, 3585674239, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585674240, 3585675775, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585675776, 3585676287, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585676288, 3585676799, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585676800, 3585679359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585679360, 3585687551, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585687552, 3585695743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585695744, 3585695999, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585696000, 3585696255, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585696256, 3585696511, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585696512, 3585696767, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585696768, 3585696831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585696832, 3585697023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585697024, 3585697279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585697280, 3585697535, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585697536, 3585697791, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585697792, 3585698047, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585698048, 3585698303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585698304, 3585698815, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585698816, 3585699327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585699328, 3585699583, N'NP', N'Nepal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585699584, 3585699711, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585699712, 3585699839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585699840, 3585700095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700096, 3585700159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700160, 3585700223, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700224, 3585700231, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700232, 3585700239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700240, 3585700255, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700256, 3585700271, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700272, 3585700287, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700288, 3585700303, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700304, 3585700319, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700320, 3585700343, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700344, 3585700351, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700352, 3585700607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700608, 3585700863, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585700864, 3585701119, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585701120, 3585701375, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585701376, 3585701503, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585701504, 3585701519, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585701520, 3585701535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585701536, 3585701631, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585701632, 3585701887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585701888, 3585702143, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585702144, 3585702399, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585702400, 3585702527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585702528, 3585702655, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585702656, 3585702911, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585702912, 3585703423, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585703424, 3585703679, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585703680, 3585703935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585703936, 3585712127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585712128, 3585720319, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585720320, 3585728511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585728512, 3585736703, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585736704, 3585744895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585744896, 3585753087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585753088, 3585761279, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585761280, 3585769471, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585769472, 3585777663, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585777664, 3585785855, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585785856, 3585794047, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585794048, 3585802239, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585802240, 3585810431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585810432, 3585818623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585818624, 3585826815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585826816, 3585835007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835008, 3585835263, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835264, 3585835391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835392, 3585835519, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835520, 3585835583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835584, 3585835647, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835648, 3585835711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835712, 3585835775, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835776, 3585835791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835792, 3585835823, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835824, 3585835839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835840, 3585835871, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835872, 3585835887, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835888, 3585835895, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835896, 3585835903, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835904, 3585835919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835920, 3585835927, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835928, 3585835935, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835936, 3585835943, N'SD', N'Sudan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835944, 3585835951, N'DJ', N'Djibouti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835952, 3585835959, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835960, 3585835967, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835968, 3585835983, N'ER', N'Eritrea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585835984, 3585836031, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585836032, 3585836543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585836544, 3585837311, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585837312, 3585837439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585837440, 3585837567, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585837568, 3585838143, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838144, 3585838207, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838208, 3585838271, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838272, 3585838335, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838336, 3585838591, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838592, 3585838719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838720, 3585838847, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838848, 3585838879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838880, 3585838911, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838912, 3585838975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585838976, 3585839103, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585839104, 3585840127, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585840128, 3585841919, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585841920, 3585842175, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585842176, 3585842431, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585842432, 3585842687, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585842688, 3585843199, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585843200, 3585851391, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585851392, 3585859583, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585859584, 3585867775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585867776, 3585875967, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585875968, 3585884159, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585884160, 3585892351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585892352, 3585900543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585900544, 3585902447, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585902448, 3585902463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585902464, 3585908735, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585908736, 3585908991, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585908992, 3585909503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585909504, 3585909759, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585909760, 3585910015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585910016, 3585910271, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585910272, 3585910783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585910784, 3585911039, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585911040, 3585916927, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585916928, 3585925119, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585925120, 3585933311, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585933312, 3585936127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585936128, 3585937407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585937408, 3585939711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585939712, 3585940223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585940224, 3585940479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585940480, 3585940735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585940736, 3585941503, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585941504, 3585949695, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585949696, 3585957887, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585957888, 3585966079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585966080, 3585971735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585971736, 3585971743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585971744, 3585974271, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585974272, 3585982463, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585982464, 3585998847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3585998848, 3586007039, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586007040, 3586015231, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586015232, 3586023423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586023424, 3586031615, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586031616, 3586039807, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586039808, 3586047999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586048000, 3586056191, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586056192, 3586064383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586064384, 3586088959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586088960, 3586097151, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586097152, 3586105343, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586105344, 3586106879, N'ER', N'Eritrea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586106880, 3586113535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586113536, 3586121727, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586121728, 3586129919, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586129920, 3586146303, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586146304, 3586162687, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586162688, 3586179071, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586179072, 3586189567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586189568, 3586189823, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586189824, 3586191871, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586191872, 3586191887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586191888, 3586195455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586195456, 3586196767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586196768, 3586197503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586197504, 3586198015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586198016, 3586198527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586198528, 3586199295, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586199296, 3586200063, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586200064, 3586202367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586202368, 3586203135, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586203136, 3586203391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586203392, 3586203647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586203648, 3586204159, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586204160, 3586205695, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586205696, 3586207743, N'BW', N'Botswana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586207744, 3586208767, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586208768, 3586211839, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586211840, 3586220287, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586220288, 3586220303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586220304, 3586225295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586225296, 3586225311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586225312, 3586228223, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586228224, 3586228303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586228304, 3586228311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586228312, 3586237695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586237696, 3586237951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586237952, 3586244607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586244608, 3586244927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586244928, 3586246655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586246656, 3586248703, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586248704, 3586250449, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586250450, 3586250457, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586250458, 3586250751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586250752, 3586251775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586251776, 3586252799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586252800, 3586254847, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586254848, 3586258943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586258944, 3586259455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586259456, 3586269215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269216, 3586269247, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269248, 3586269263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269264, 3586269311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269312, 3586269343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269344, 3586269407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269408, 3586269423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269424, 3586269439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269440, 3586269471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269472, 3586269487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269488, 3586269495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269496, 3586269519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269520, 3586269535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269536, 3586269695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269696, 3586269759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269760, 3586269823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269824, 3586269855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269856, 3586269887, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269888, 3586269951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586269952, 3586271231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586271232, 3586271615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586271616, 3586271743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586271744, 3586271871, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586271872, 3586272767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586272768, 3586272799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586272800, 3586272831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586272832, 3586272895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586272896, 3586272959, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586272960, 3586272991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586272992, 3586273007, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586273008, 3586273015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586273016, 3586273023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586273024, 3586277375, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586277376, 3586286591, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586286592, 3586286607, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586286608, 3586293759, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586293760, 3586310143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586310144, 3586326527, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586326528, 3586342911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586342912, 3586359295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586359296, 3586375679, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586375680, 3586392063, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586392064, 3586408447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586408448, 3586424831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586424832, 3586441215, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586441216, 3586457599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586457600, 3586473983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586473984, 3586490367, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586490368, 3586506751, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586506752, 3586523135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586523136, 3586543423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586543424, 3586543431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586543432, 3586543519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586543520, 3586543527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586543528, 3586543623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586543624, 3586543631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586543632, 3586545679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586545680, 3586545703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586545704, 3586546375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586546376, 3586546383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586546384, 3586555903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586555904, 3586572287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586572288, 3586588671, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586588672, 3586596863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586596864, 3586605055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586605056, 3586621439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586621440, 3586625535, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586625536, 3586637823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586637824, 3586654207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586654208, 3586662399, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586662400, 3586670591, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586670592, 3586677759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586677760, 3586678015, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678016, 3586678271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678272, 3586678303, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678304, 3586678335, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678336, 3586678399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678400, 3586678415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678416, 3586678439, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678440, 3586678463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678464, 3586678527, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678528, 3586678623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678624, 3586678655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678656, 3586678671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678672, 3586678679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678680, 3586678687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678688, 3586678715, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678716, 3586678719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678720, 3586678783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586678784, 3586679039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679040, 3586679103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679104, 3586679167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679168, 3586679327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679328, 3586679335, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679336, 3586679551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679552, 3586679583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679584, 3586679599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679600, 3586679647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679648, 3586679711, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679712, 3586679727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679728, 3586679743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679744, 3586679839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679840, 3586679871, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679872, 3586679935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586679936, 3586679999, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680000, 3586680063, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680064, 3586680447, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680448, 3586680463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680464, 3586680623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680624, 3586680639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680640, 3586680831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680832, 3586680959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680960, 3586680975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680976, 3586680991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586680992, 3586681015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681016, 3586681087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681088, 3586681343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681344, 3586681471, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681472, 3586681535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681536, 3586681615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681616, 3586681727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681728, 3586681855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586681856, 3586682111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586682112, 3586682175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586682176, 3586682367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586682368, 3586682399, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586682400, 3586682623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586682624, 3586682879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586682880, 3586686975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586686976, 3586703359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586703360, 3586719743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586719744, 3586752511, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586752512, 3586785279, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586785280, 3586793471, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586793472, 3586801663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586801664, 3586818047, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586818048, 3586834431, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586834432, 3586850399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586850400, 3586850415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586850416, 3586850815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586850816, 3586867199, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586867200, 3586883583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586883584, 3586899967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586899968, 3586902375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586902376, 3586902383, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586902384, 3586903423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586903424, 3586903439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586903440, 3586904319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586904320, 3586904415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586904416, 3586905039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905040, 3586905055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905056, 3586905071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905072, 3586905079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905080, 3586905087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905088, 3586905119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905120, 3586905167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905168, 3586905199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905200, 3586905215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905216, 3586905247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905248, 3586905279, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586905280, 3586906391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586906392, 3586906399, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586906400, 3586906423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586906424, 3586906427, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586906428, 3586906719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586906720, 3586906735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586906736, 3586907903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586907904, 3586908031, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586908032, 3586910207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910208, 3586910463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910464, 3586910527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910528, 3586910567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910568, 3586910575, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910576, 3586910583, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910584, 3586910591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910592, 3586910655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910656, 3586910983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910984, 3586910991, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586910992, 3586911039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586911040, 3586911103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586911104, 3586911187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586911188, 3586911191, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586911192, 3586911195, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586911196, 3586912255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586912256, 3586912511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586912512, 3586912655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586912656, 3586912671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586912672, 3586912735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586912736, 3586912767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586912768, 3586915567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586915568, 3586915575, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586915576, 3586916351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586916352, 3586924543, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586924544, 3586926591, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586926592, 3586926847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586926848, 3586932735, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586932736, 3586949119, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586949120, 3586965503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586965504, 3586981887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586981888, 3586998271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3586998272, 3587006463, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587006464, 3587014655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587014656, 3587051007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587051008, 3587051775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587051776, 3587052031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587052032, 3587052799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587052800, 3587053055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587053056, 3587053823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587053824, 3587055615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587055616, 3587063807, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587063808, 3587078511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587078512, 3587078527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587078528, 3587080191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587080192, 3587082367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587082368, 3587082431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587082432, 3587088383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587088384, 3587096575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587096576, 3587112959, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587112960, 3587121151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587121152, 3587129343, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587129344, 3587145727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587145728, 3587162111, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587162112, 3587178495, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587178496, 3587179455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587179456, 3587179463, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587179464, 3587179471, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587179472, 3587186207, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587186208, 3587186215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587186216, 3587186687, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587186688, 3587186943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587186944, 3587187199, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587187200, 3587187455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587187456, 3587187711, N'RU', N'Russian Federation') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587187712, 3587187967, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587187968, 3587188223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587188224, 3587189503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587189504, 3587189759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587189760, 3587193343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587193344, 3587193599, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587193600, 3587194367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587194368, 3587194511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587194512, 3587194623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587194624, 3587194879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587194880, 3587211263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587211264, 3587219455, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587219456, 3587227647, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587227648, 3587230719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587230720, 3587230783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587230784, 3587230847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587230848, 3587230879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587230880, 3587230959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587230960, 3587230975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587230976, 3587230991, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587230992, 3587231231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587231232, 3587231263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587231264, 3587231487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587231488, 3587231743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587231744, 3587231871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587231872, 3587231887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587231888, 3587233279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233280, 3587233295, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233296, 3587233311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233312, 3587233319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233320, 3587233327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233328, 3587233343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233344, 3587233359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233360, 3587233367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233368, 3587233375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233376, 3587233383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233384, 3587233399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233400, 3587233407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233408, 3587233471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233472, 3587233535, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233536, 3587233543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233544, 3587233551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233552, 3587233599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233600, 3587233631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233632, 3587233663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233664, 3587233791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587233792, 3587234303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587234304, 3587236094, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236095, 3587236095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236096, 3587236447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236448, 3587236463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236464, 3587236471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236472, 3587236479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236480, 3587236503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236504, 3587236535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587236536, 3587237391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587237392, 3587237407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587237408, 3587237439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587237440, 3587237535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587237536, 3587237551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587237552, 3587237567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587237568, 3587237887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587237888, 3587240383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587240384, 3587240415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587240416, 3587244031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587244032, 3587260415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587260416, 3587284991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587284992, 3587287295, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287296, 3587287307, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287308, 3587287311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287312, 3587287319, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287320, 3587287327, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287328, 3587287335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287336, 3587287339, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287340, 3587287343, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287344, 3587287351, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287352, 3587287359, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287360, 3587287363, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287364, 3587287367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287368, 3587287387, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287388, 3587287391, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287392, 3587287395, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287396, 3587287403, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287404, 3587287411, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287412, 3587287415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287416, 3587287419, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287420, 3587287423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287424, 3587287427, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287428, 3587287431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287432, 3587287435, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287436, 3587287439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287440, 3587287447, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287448, 3587287451, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287452, 3587287455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287456, 3587287459, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287460, 3587287463, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287464, 3587287475, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287476, 3587287479, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287480, 3587287535, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287536, 3587287543, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287544, 3587287551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287552, 3587287559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287560, 3587287563, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287564, 3587287571, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287572, 3587287575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287576, 3587287579, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287580, 3587287583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287584, 3587287591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287592, 3587287599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287600, 3587287679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287680, 3587287687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287688, 3587287711, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287712, 3587287719, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287720, 3587287723, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287724, 3587287727, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287728, 3587287807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287808, 3587287815, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287816, 3587287823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287824, 3587287835, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287836, 3587287847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287848, 3587287851, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287852, 3587287879, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287880, 3587287887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287888, 3587287935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287936, 3587287943, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287944, 3587287947, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287948, 3587287959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287960, 3587287963, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287964, 3587287967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287968, 3587287983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587287984, 3587288575, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587288576, 3587288703, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587288704, 3587288707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587288708, 3587288759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587288760, 3587288959, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587288960, 3587289087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289088, 3587289343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289344, 3587289347, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289348, 3587289351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289352, 3587289359, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289360, 3587289367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289368, 3587289375, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289376, 3587289383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289384, 3587289387, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289388, 3587289391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289392, 3587289399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289400, 3587289407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289408, 3587289411, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289412, 3587289415, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289416, 3587289423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289424, 3587289467, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289468, 3587289855, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289856, 3587289859, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289860, 3587289863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289864, 3587289871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289872, 3587289895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289896, 3587289907, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289908, 3587289911, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289912, 3587289915, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289916, 3587289919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587289920, 3587290367, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587290368, 3587290431, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587290432, 3587290495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587290496, 3587290623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587290624, 3587290879, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587290880, 3587291135, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587291136, 3587291139, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587291140, 3587291967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587291968, 3587292031, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587292032, 3587292159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587292160, 3587292223, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587292224, 3587292415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587292416, 3587292419, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587292420, 3587292799, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587292800, 3587292863, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587292864, 3587309567, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587309568, 3587325951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587325952, 3587342335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587342336, 3587358719, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587358720, 3587375103, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587375104, 3587383295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587383296, 3587391487, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587391488, 3587407871, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587407872, 3587424255, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587424256, 3587440639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587440640, 3587457023, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587457024, 3587459263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587459264, 3587459295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587459296, 3587473407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587473408, 3587489791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587489792, 3587506175, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587506176, 3587538943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587538944, 3587547135, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587547136, 3587555327, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587555328, 3587571711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587571712, 3587579903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587579904, 3587588095, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587588096, 3587596287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587596288, 3587604479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587604480, 3587620863, N'FI', N'Finland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587620864, 3587637247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587637248, 3587653631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587653632, 3587670015, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587670016, 3587674735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587674736, 3587674751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587674752, 3587702783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587702784, 3587710975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587710976, 3587719167, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587719168, 3587735551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587735552, 3587751935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587751936, 3587751999, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587752000, 3587752127, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587752128, 3587752135, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587752136, 3587752143, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587752144, 3587752159, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587752160, 3587752175, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587752176, 3587752183, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587752184, 3587768319, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587768320, 3587776511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587776512, 3587784703, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587784704, 3587801087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587801088, 3587817471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587817472, 3587833855, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587833856, 3587835903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587835904, 3587836159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587836160, 3587841671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587841672, 3587841679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587841680, 3587842047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587842048, 3587850239, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587850240, 3587854335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587854336, 3587866623, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587866624, 3587874815, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587874816, 3587877383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587877384, 3587877391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587877392, 3587877407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587877408, 3587877439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587877440, 3587877471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587877472, 3587877479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587877480, 3587883007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587883008, 3587915775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587915776, 3587932159, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587932160, 3587933439, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587933440, 3587936255, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587936256, 3587936271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587936272, 3587944447, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587944448, 3587945471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587945472, 3587948031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587948032, 3587948543, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587948544, 3587964927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587964928, 3587981311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587981312, 3587997695, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3587997696, 3588014079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588014080, 3588030463, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588030464, 3588038655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588038656, 3588038783, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588038784, 3588046847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588046848, 3588063231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588063232, 3588071423, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588071424, 3588079615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588079616, 3588095999, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588096000, 3588104191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588104192, 3588112383, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588112384, 3588128767, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588128768, 3588145151, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588145152, 3588161535, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588161536, 3588227071, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588227072, 3588292607, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588292608, 3588308991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588308992, 3588325375, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588325376, 3588333567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588333568, 3588341759, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588341760, 3588358143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588358144, 3588374527, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588374528, 3588390911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588390912, 3588407295, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588407296, 3588423679, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588423680, 3588440063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588440064, 3588456447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588456448, 3588464639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588464640, 3588472831, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588472832, 3588489215, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588489216, 3588505599, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588505600, 3588521983, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588521984, 3588538367, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588538368, 3588538623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588538624, 3588547327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588547328, 3588547583, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588547584, 3588554687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588554688, 3588554751, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588554752, 3588571135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588571136, 3588587519, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588587520, 3588587527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588587528, 3588587551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588587552, 3588587647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588587648, 3588587663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588587664, 3588587711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588587712, 3588587775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588587776, 3588588035, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588036, 3588588095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588096, 3588588103, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588104, 3588588111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588112, 3588588159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588160, 3588588167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588168, 3588588207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588208, 3588588543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588544, 3588588607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588608, 3588588655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588656, 3588588663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588664, 3588588671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588672, 3588588751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588752, 3588588767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588768, 3588588783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588784, 3588588799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588588800, 3588589127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589128, 3588589135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589136, 3588589311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589312, 3588589375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589376, 3588589407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589408, 3588589439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589440, 3588589567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589568, 3588589823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588589824, 3588590127, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590128, 3588590135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590136, 3588590143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590144, 3588590151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590152, 3588590163, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590164, 3588590167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590168, 3588590175, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590176, 3588590591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588590592, 3588591103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588591104, 3588591359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588591360, 3588592931, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588592932, 3588592935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588592936, 3588593015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593016, 3588593023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593024, 3588593071, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593072, 3588593087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593088, 3588593119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593120, 3588593135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593136, 3588593279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593280, 3588593319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593320, 3588593327, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593328, 3588593375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593376, 3588593383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593384, 3588593399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588593400, 3588594431, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594432, 3588594687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594688, 3588594751, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594752, 3588594783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594784, 3588594807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594808, 3588594815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594816, 3588594879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594880, 3588594895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594896, 3588594927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594928, 3588594943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588594944, 3588595467, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595468, 3588595471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595472, 3588595483, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595484, 3588595491, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595492, 3588595503, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595504, 3588595507, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595508, 3588595527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595528, 3588595535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595536, 3588595567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595568, 3588595575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595576, 3588595607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595608, 3588595615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595616, 3588595631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595632, 3588595639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595640, 3588595671, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595672, 3588595679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595680, 3588595743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595744, 3588595751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588595752, 3588596079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588596080, 3588596095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588596096, 3588596991, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588596992, 3588597247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588597248, 3588597487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588597488, 3588597495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588597496, 3588598591, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598592, 3588598687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598688, 3588598695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598696, 3588598703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598704, 3588598711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598712, 3588598719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598720, 3588598767, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598768, 3588598783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588598784, 3588600831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588600832, 3588601087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588601088, 3588601663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588601664, 3588601727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588601728, 3588601791, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588601792, 3588601855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588601856, 3588602551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588602552, 3588602559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588602560, 3588602727, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588602728, 3588602735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588602736, 3588602799, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588602800, 3588602815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588602816, 3588603199, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588603200, 3588603263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588603264, 3588603279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588603280, 3588603327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588603328, 3588603903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588603904, 3588620287, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588620288, 3588628479, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588628480, 3588636671, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588636672, 3588653055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588653056, 3588661247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588661248, 3588669439, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588669440, 3588685823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588685824, 3588702207, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588702208, 3588734975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588734976, 3588751359, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588751360, 3588767743, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588767744, 3588773759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588773760, 3588773887, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588773888, 3588775935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588775936, 3588776191, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588776192, 3588782271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588782272, 3588782279, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588782280, 3588784127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588784128, 3588800511, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588800512, 3588816895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588816896, 3588833279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588833280, 3588848767, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588848768, 3588848775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588848776, 3588849663, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588849664, 3588857855, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588857856, 3588866047, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588866048, 3588882431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588882432, 3588890623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588890624, 3588898815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588898816, 3588915199, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588915200, 3588931583, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588931584, 3588947967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588947968, 3588964351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588964352, 3588997119, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3588997120, 3589013503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589013504, 3589021695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589021696, 3589029887, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589029888, 3589029951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589029952, 3589029983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589029984, 3589030015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030016, 3589030143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030144, 3589030175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030176, 3589030183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030184, 3589030207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030208, 3589030239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030240, 3589030303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030304, 3589030335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030336, 3589030351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030352, 3589030367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589030368, 3589031423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589031424, 3589033983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589033984, 3589034015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034016, 3589034111, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034112, 3589034143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034144, 3589034159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034160, 3589034167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034168, 3589034175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034176, 3589034183, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034184, 3589034191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034192, 3589034207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034208, 3589034215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034216, 3589034223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034224, 3589034231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034232, 3589034271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034272, 3589034303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034304, 3589034335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034336, 3589034367, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034368, 3589034431, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034432, 3589034495, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589034496, 3589037055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037056, 3589037327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037328, 3589037343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037344, 3589037375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037376, 3589037407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037408, 3589037423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037424, 3589037439, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037440, 3589037471, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037472, 3589037559, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037560, 3589037567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589037568, 3589038079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589038080, 3589040127, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589040128, 3589042207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589042208, 3589042367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589042368, 3589043231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589043232, 3589043327, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589043328, 3589043455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589043456, 3589043711, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589043712, 3589044223, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589044224, 3589044319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589044320, 3589046271, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589046272, 3589079039, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589079040, 3589092223, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589092224, 3589092227, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589092228, 3589128191, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589128192, 3589144575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589144576, 3589152767, N'SA', N'Saudi Arabia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589152768, 3589153027, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589153028, 3589153031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589153032, 3589156591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589156592, 3589156607, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589156608, 3589160959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589160960, 3589177343, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589177344, 3589193727, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589193728, 3589210111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589210112, 3589226495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589226496, 3589230415, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589230416, 3589230431, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589230432, 3589230759, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589230760, 3589230775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589230776, 3589242879, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589242880, 3589248511, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589248512, 3589248767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589248768, 3589256191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589256192, 3589256447, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589256448, 3589258495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589258496, 3589258751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589258752, 3589259263, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589259264, 3589267455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589267456, 3589267711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589267712, 3589267855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589267856, 3589267863, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589267864, 3589267967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589267968, 3589267975, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589267976, 3589268095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589268096, 3589268111, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589268112, 3589269039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269040, 3589269047, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269048, 3589269343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269344, 3589269351, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269352, 3589269375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269376, 3589269407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269408, 3589269455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269456, 3589269471, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269472, 3589269919, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269920, 3589269951, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269952, 3589269959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269960, 3589269967, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589269968, 3589270047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589270048, 3589270079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589270080, 3589270463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589270464, 3589270495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589270496, 3589273391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589273392, 3589273407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589273408, 3589273423, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589273424, 3589273903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589273904, 3589273919, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589273920, 3589275647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589275648, 3589292031, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589292032, 3589308415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589308416, 3589324799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589324800, 3589341183, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589341184, 3589373951, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589373952, 3589375495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589375496, 3589375503, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589375504, 3589406719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589406720, 3589423103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589423104, 3589423615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589423616, 3589424127, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589424128, 3589424639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589424640, 3589425151, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589425152, 3589425663, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589425664, 3589427199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589427200, 3589427231, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589427232, 3589429247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589429248, 3589429503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589429504, 3589430655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589430656, 3589430719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589430720, 3589430783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589430784, 3589431343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589431344, 3589431551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589431552, 3589431807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589431808, 3589432319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589432320, 3589432575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589432576, 3589432831, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589432832, 3589433343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433344, 3589433375, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433376, 3589433407, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433408, 3589433439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433440, 3589433471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433472, 3589433503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433504, 3589433535, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433536, 3589433567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433568, 3589433599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589433600, 3589434111, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589434112, 3589434623, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589434624, 3589434879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589434880, 3589435135, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589435136, 3589439487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589439488, 3589444631, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589444632, 3589444639, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589444640, 3589455871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589455872, 3589472255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589472256, 3589488639, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589488640, 3589505023, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589505024, 3589521407, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589521408, 3589537791, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589537792, 3589538511, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589538512, 3589538527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589538528, 3589545983, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589545984, 3589554175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589554176, 3589570559, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589570560, 3589571327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589571328, 3589571455, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589571456, 3589578751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589578752, 3589580031, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580032, 3589580127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580128, 3589580159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580160, 3589580287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580288, 3589580799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580800, 3589580895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580896, 3589580911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580912, 3589580991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589580992, 3589581055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589581056, 3589581199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589581200, 3589581215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589581216, 3589581327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589581328, 3589581759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589581760, 3589581823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589581824, 3589582591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589582592, 3589582607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589582608, 3589582639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589582640, 3589582655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589582656, 3589582687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589582688, 3589582719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589582720, 3589582975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589582976, 3589583103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589583104, 3589583615, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589583616, 3589583647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589583648, 3589583671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589583672, 3589583679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589583680, 3589584271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589584272, 3589584383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589584384, 3589584895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589584896, 3589585919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589585920, 3589585983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589585984, 3589586175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589586176, 3589586943, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589586944, 3589603327, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589603328, 3589668863, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589668864, 3589677055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589677056, 3589680287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589680288, 3589680303, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589680304, 3589680751, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589680752, 3589680767, N'MQ', N'Martinique') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589680768, 3589685247, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589685248, 3589701631, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589701632, 3589718015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589718016, 3589718543, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589718544, 3589718559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589718560, 3589718599, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589718600, 3589718631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589718632, 3589718639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589718640, 3589718783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589718784, 3589719343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719344, 3589719359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719360, 3589719423, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719424, 3589719551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719552, 3589719679, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719680, 3589719743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719744, 3589719971, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719972, 3589719975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719976, 3589719983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589719984, 3589719999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720000, 3589720071, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720072, 3589720075, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720076, 3589720207, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720208, 3589720223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720224, 3589720311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720312, 3589720319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720320, 3589720695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720696, 3589720703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720704, 3589720727, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720728, 3589720735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720736, 3589720767, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720768, 3589720775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720776, 3589720791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720792, 3589720799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720800, 3589720887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720888, 3589720895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720896, 3589720911, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720912, 3589720927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720928, 3589720983, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720984, 3589720991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589720992, 3589721055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721056, 3589721063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721064, 3589721103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721104, 3589721111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721112, 3589721155, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721156, 3589721159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721160, 3589721215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721216, 3589721223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721224, 3589721295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721296, 3589721311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721312, 3589721327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721328, 3589721335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721336, 3589721375, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721376, 3589721599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721600, 3589721623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721624, 3589721647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721648, 3589721655, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721656, 3589721823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721824, 3589721831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721832, 3589721855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721856, 3589721895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721896, 3589721899, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721900, 3589721967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721968, 3589721983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589721984, 3589722059, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722060, 3589722063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722064, 3589722151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722152, 3589722159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722160, 3589722295, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722296, 3589722299, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722300, 3589722351, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722352, 3589722359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722360, 3589722395, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722396, 3589722399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722400, 3589722511, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722512, 3589722527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722528, 3589722575, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722576, 3589722591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722592, 3589722655, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722656, 3589722663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722664, 3589722671, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722672, 3589722679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722680, 3589722691, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722692, 3589722695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722696, 3589722711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722712, 3589722719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722720, 3589722743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722744, 3589722751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722752, 3589722791, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722792, 3589722803, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722804, 3589722835, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722836, 3589722843, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722844, 3589722855, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722856, 3589722863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722864, 3589722871, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722872, 3589722875, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722876, 3589722883, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722884, 3589722887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722888, 3589722895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589722896, 3589723135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589723136, 3589723391, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589723392, 3589723967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589723968, 3589724031, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589724032, 3589724815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589724816, 3589724823, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589724824, 3589724883, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589724884, 3589724887, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589724888, 3589725623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589725624, 3589725695, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589725696, 3589734399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589734400, 3589742591, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589742592, 3589744895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589744896, 3589744959, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589744960, 3589745119, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589745120, 3589745151, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589745152, 3589747047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589747048, 3589747055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589747056, 3589747071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589747072, 3589747103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589747104, 3589747167, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589747168, 3589747199, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589747200, 3589750783, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589750784, 3589761535, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589761536, 3589767167, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589767168, 3589816319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589816320, 3589827071, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589827072, 3589827327, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589827328, 3589827583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589827584, 3589827687, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589827688, 3589827695, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589827696, 3589827711, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589827712, 3589828095, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589828096, 3589828111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589828112, 3589828607, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589828608, 3589828639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589828640, 3589828671, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589828672, 3589828735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589828736, 3589829183, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589829184, 3589829247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589829248, 3589830143, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589830144, 3589830655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589830656, 3589831167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589831168, 3589831679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589831680, 3589832703, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589832704, 3589849087, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589849088, 3589865471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589865472, 3589881855, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589881856, 3589890047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589890048, 3589890175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589890176, 3589890303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589890304, 3589890367, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589890368, 3589890431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589890432, 3589890559, N'BE', N'Belgium') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589890560, 3589890687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589890688, 3589891327, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589891328, 3589891615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589891616, 3589891631, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589891632, 3589931007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589931008, 3589947391, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589947392, 3589963775, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589963776, 3589971231, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589971232, 3589971247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589971248, 3589980159, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589980160, 3589996543, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589996544, 3589996623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589996624, 3589996631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3589996632, 3590012927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590012928, 3590029311, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590029312, 3590045695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590045696, 3590053887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590053888, 3590057983, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590057984, 3590062079, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590062080, 3590078463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590078464, 3590094847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590094848, 3590111231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590111232, 3590111999, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590112000, 3590112255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590112256, 3590113023, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590113024, 3590113279, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590113280, 3590127615, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590127616, 3590143999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590144000, 3590150303, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590150304, 3590150399, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590150400, 3590151143, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590151144, 3590151151, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590151152, 3590154047, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590154048, 3590154063, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590154064, 3590155775, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590155776, 3590155807, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590155808, 3590155815, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590155816, 3590155823, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590155824, 3590156287, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590156288, 3590156375, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590156376, 3590156383, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590156384, 3590156415, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590156416, 3590156423, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590156424, 3590156951, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590156952, 3590157311, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157312, 3590157351, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157352, 3590157439, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157440, 3590157495, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157496, 3590157503, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157504, 3590157567, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157568, 3590157631, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157632, 3590157639, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157640, 3590157663, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157664, 3590157695, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157696, 3590157823, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157824, 3590157831, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157832, 3590157847, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157848, 3590157855, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590157856, 3590158335, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158336, 3590158343, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158344, 3590158351, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158352, 3590158367, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158368, 3590158399, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158400, 3590158439, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158440, 3590158591, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158592, 3590158847, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590158848, 3590160383, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590160384, 3590176767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590176768, 3590193151, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590193152, 3590201343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590201344, 3590209535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590209536, 3590225919, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590225920, 3590234111, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590234112, 3590242303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590242304, 3590244351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590244352, 3590244863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590244864, 3590245119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245120, 3590245135, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245136, 3590245151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245152, 3590245183, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245184, 3590245215, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245216, 3590245247, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245248, 3590245311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245312, 3590245375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245376, 3590245488, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245489, 3590245503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245504, 3590245631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245632, 3590245887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245888, 3590245983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590245984, 3590246015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590246016, 3590246143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590246144, 3590246175, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590246176, 3590246207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590246208, 3590246271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590246272, 3590246399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590246400, 3590246911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590246912, 3590247039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247040, 3590247055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247056, 3590247167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247168, 3590247231, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247232, 3590247295, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247296, 3590247423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247424, 3590247487, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247488, 3590247551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247552, 3590247679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247680, 3590247935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590247936, 3590248191, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590248192, 3590248447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590248448, 3590248959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590248960, 3590249471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590249472, 3590249727, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590249728, 3590249983, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590249984, 3590250495, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590250496, 3590250751, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590250752, 3590251007, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251008, 3590251263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251264, 3590251519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251520, 3590251551, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251552, 3590251583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251584, 3590251647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251648, 3590251775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251776, 3590251839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251840, 3590251903, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251904, 3590251967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590251968, 3590252543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590252544, 3590253055, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253056, 3590253087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253088, 3590253311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253312, 3590253343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253344, 3590253359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253360, 3590253375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253376, 3590253407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253408, 3590253567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590253568, 3590254079, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254080, 3590254111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254112, 3590254127, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254128, 3590254143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254144, 3590254207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254208, 3590254303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254304, 3590254335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254336, 3590254591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254592, 3590254879, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254880, 3590254911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254912, 3590254975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590254976, 3590255047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255048, 3590255055, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255056, 3590255071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255072, 3590255103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255104, 3590255615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255616, 3590255647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255648, 3590255871, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255872, 3590255903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255904, 3590255935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590255936, 3590255999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590256000, 3590256127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590256128, 3590256159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590256160, 3590256639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590256640, 3590256703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590256704, 3590256735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590256736, 3590256895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590256896, 3590257407, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590257408, 3590258431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590258432, 3590258447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590258448, 3590258687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590258688, 3590291455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590291456, 3590299647, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590299648, 3590307839, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590307840, 3590307903, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590307904, 3590307935, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590307936, 3590307951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590307952, 3590307967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590307968, 3590307999, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308000, 3590308031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308032, 3590308047, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308048, 3590308063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308064, 3590308071, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308072, 3590308351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308352, 3590308607, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308608, 3590308767, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308768, 3590308775, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308776, 3590308831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308832, 3590308839, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308840, 3590308911, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308912, 3590308951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308952, 3590308959, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308960, 3590308991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590308992, 3590308999, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309000, 3590309007, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309008, 3590309023, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309024, 3590309055, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309056, 3590309071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309072, 3590309079, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309080, 3590309087, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309088, 3590309183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309184, 3590309187, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309188, 3590309355, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309356, 3590309359, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309360, 3590309503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309504, 3590309511, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309512, 3590309519, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309520, 3590309527, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309528, 3590309535, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309536, 3590309543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309544, 3590309551, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309552, 3590309575, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309576, 3590309583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309584, 3590309591, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309592, 3590309607, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309608, 3590309615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309616, 3590309623, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309624, 3590309631, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309632, 3590309759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309760, 3590309887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590309888, 3590310143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590310144, 3590310399, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590310400, 3590310655, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590310656, 3590310911, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590310912, 3590311423, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590311424, 3590311679, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590311680, 3590311935, N'YT', N'Mayotte') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590311936, 3590312447, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312448, 3590312831, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312832, 3590312895, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312896, 3590312903, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312904, 3590312911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312912, 3590312919, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312920, 3590312927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312928, 3590312943, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312944, 3590312959, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590312960, 3590314639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314640, 3590314655, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314656, 3590314679, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314680, 3590314687, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314688, 3590314703, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314704, 3590314735, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314736, 3590314751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314752, 3590314759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314760, 3590314767, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314768, 3590314775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314776, 3590314783, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314784, 3590314815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314816, 3590314847, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314848, 3590314895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314896, 3590314903, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314904, 3590314911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314912, 3590314927, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314928, 3590314943, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314944, 3590314959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314960, 3590314967, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590314968, 3590315007, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590315008, 3590316031, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316032, 3590316063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316064, 3590316071, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316072, 3590316079, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316080, 3590316087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316088, 3590316095, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316096, 3590316143, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316144, 3590316151, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316152, 3590316159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316160, 3590316543, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316544, 3590316559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316560, 3590316575, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316576, 3590316591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316592, 3590316607, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316608, 3590316623, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316624, 3590316655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316656, 3590316663, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316664, 3590316687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316688, 3590316703, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316704, 3590316727, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316728, 3590316735, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316736, 3590316751, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316752, 3590316767, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316768, 3590316783, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316784, 3590316799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590316800, 3590317055, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590317056, 3590318063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590318064, 3590318079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590318080, 3590319103, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590319104, 3590319165, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590319166, 3590319167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590319168, 3590319359, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590319360, 3590319375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590319376, 3590319391, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590319392, 3590319423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590319424, 3590320112, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590320113, 3590320127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590320128, 3590320191, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590320192, 3590320199, N'BJ', N'Benin') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590320200, 3590320383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590320384, 3590320639, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590320640, 3590321727, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590321728, 3590321927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590321928, 3590321935, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590321936, 3590321943, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590321944, 3590321991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590321992, 3590321999, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322000, 3590322007, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322008, 3590322015, N'CI', N'Cote D''Ivoire') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322016, 3590322047, N'A2', N'Satellite Provider') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322048, 3590322055, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322056, 3590322063, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322064, 3590322071, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322072, 3590322079, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322080, 3590322119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322120, 3590322127, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322128, 3590322135, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322136, 3590322151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322152, 3590322159, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322160, 3590322167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322168, 3590322175, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322176, 3590322303, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322304, 3590322367, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322368, 3590322383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322384, 3590322391, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322392, 3590322415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322416, 3590322423, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322424, 3590322431, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322432, 3590322687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590322688, 3590323199, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323200, 3590323711, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323712, 3590323775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323776, 3590323840, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323841, 3590323903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323904, 3590323911, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323912, 3590323919, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323920, 3590323967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590323968, 3590324223, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3590324224, 3623890943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3623890944, 3623891199, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3623891200, 3623891455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3623891456, 3623891711, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3623891712, 3623891967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3623891968, 3623892479, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3623892480, 3624054783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624054784, 3624056831, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624056832, 3624181759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624181760, 3624182783, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624182784, 3624206335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624206336, 3624208383, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624208384, 3624255487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624255488, 3624257535, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624257536, 3624271871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624271872, 3624272383, N'SY', N'Syrian Arab Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624272384, 3624272415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624272416, 3624272639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624272640, 3624272895, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624272896, 3624278015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624278016, 3624279039, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624279040, 3624279087, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624279088, 3624281087, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624281088, 3624281343, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624281344, 3624288255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624288256, 3624290303, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624290304, 3624292351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624292352, 3624292607, N'GP', N'Guadeloupe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624292608, 3624295935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624295936, 3624296191, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624296192, 3624297471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624297472, 3624298495, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624298496, 3624299519, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624299520, 3624300031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624300032, 3624300287, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624300288, 3624303359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624303360, 3624303615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624303616, 3624304127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624304128, 3624304383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624304384, 3624304639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624304640, 3624321023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624321024, 3624325119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624325120, 3624370431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624370432, 3624370943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624370944, 3624371199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624371200, 3624371455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624371456, 3624372991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624372992, 3624373247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624373248, 3624373503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624373504, 3624373759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624373760, 3624374271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624378368, 3624379391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624379392, 3624379399, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624379400, 3624380415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380416, 3624380447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380448, 3624380455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380456, 3624380511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380512, 3624380519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380520, 3624380527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380528, 3624380535, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380536, 3624380543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380544, 3624380551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380552, 3624380687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380688, 3624380695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380696, 3624380719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380720, 3624380727, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380728, 3624380735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380736, 3624380743, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380744, 3624380751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380752, 3624380759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380760, 3624380767, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380768, 3624380799, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380800, 3624380807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380808, 3624380831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380832, 3624380839, N'OM', N'Oman') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380840, 3624380855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380856, 3624380863, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380864, 3624380871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380872, 3624380903, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380904, 3624380935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380936, 3624380943, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380944, 3624380967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380968, 3624380983, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624380984, 3624384767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624384768, 3624385023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624385024, 3624386559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624386560, 3624394751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624394752, 3624435711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624435712, 3624452095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624452096, 3624474879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624474880, 3624475391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624475392, 3624480767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624480768, 3624484863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624484864, 3624525823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624529920, 3624530439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624530440, 3624530447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624530448, 3624534015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624534016, 3624730623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624730624, 3624796159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624796160, 3624828927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624828928, 3624833023, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624837120, 3624845311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624845312, 3624849407, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624849408, 3624857599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624861696, 3624895103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624895104, 3624895119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624895120, 3624895135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624895136, 3624895151, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624895152, 3624895183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624895184, 3624895199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624895200, 3624896415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624896416, 3624896447, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624896448, 3624898815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624898816, 3624899071, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624899072, 3624899327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624899328, 3624899583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624899584, 3624899839, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624899840, 3624900735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900736, 3624900767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900768, 3624900831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900832, 3624900863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900864, 3624900951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900952, 3624900959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900960, 3624900967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900968, 3624900975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624900976, 3624901055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624901056, 3624901063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624901064, 3624901279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624901280, 3624901311, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624901312, 3624901887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624901888, 3624901919, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624901920, 3624901951, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624901952, 3624902015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902016, 3624902047, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902048, 3624902111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902112, 3624902143, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902144, 3624902271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902272, 3624902399, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902400, 3624902783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902784, 3624902911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902912, 3624902943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624902944, 3624903007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624903008, 3624903071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624903072, 3624903167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624903168, 3624903423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624903424, 3624903551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624903552, 3624903583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624903584, 3624903679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624903680, 3624904703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624904704, 3624904767, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624904768, 3624904831, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624904832, 3624905087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624905088, 3624905151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624905152, 3624905471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624905472, 3624905727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624905728, 3624906879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624906880, 3624907007, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907008, 3624907039, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907040, 3624907199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907200, 3624907231, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907232, 3624907455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907456, 3624907518, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907519, 3624907519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907520, 3624907551, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907552, 3624907583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907584, 3624907615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907616, 3624907647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907648, 3624907679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907680, 3624907711, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907712, 3624907745, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907746, 3624907775, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907776, 3624907903, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624907904, 3624908031, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908032, 3624908159, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908160, 3624908287, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908288, 3624908351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908352, 3624908383, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908384, 3624908415, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908416, 3624908479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908480, 3624908511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908512, 3624908607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908608, 3624908622, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908623, 3624908639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908640, 3624908687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624908688, 3624909375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624909376, 3624909407, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624909408, 3624909471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624909472, 3624909503, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624909504, 3624909535, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624909536, 3624909567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624909568, 3624909822, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624909823, 3624910079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910080, 3624910111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910112, 3624910271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910272, 3624910303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910304, 3624910655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910656, 3624910687, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910688, 3624910719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910720, 3624910815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910816, 3624910847, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910848, 3624910911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910912, 3624910975, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624910976, 3624911007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624911008, 3624911039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624911040, 3624911103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624911104, 3624911135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624911136, 3624911359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624911360, 3624911615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624911616, 3624911999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624912000, 3624912127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624912128, 3624912639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624912640, 3624912895, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624912896, 3624912959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624912960, 3624913023, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913024, 3624913087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913088, 3624913151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913152, 3624913215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913216, 3624913279, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913280, 3624913311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913312, 3624913343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913344, 3624913375, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624913376, 3624914047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914048, 3624914079, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914080, 3624914143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914144, 3624914175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914176, 3624914271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914272, 3624914303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914304, 3624914335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914336, 3624914367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914368, 3624914687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914688, 3624914943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624914944, 3624915199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624915200, 3624915455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624915456, 3624915903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624915904, 3624915935, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624915936, 3624916159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624916160, 3624916223, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624916224, 3624917247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624917248, 3624917503, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624917504, 3624917919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624917920, 3624917951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624917952, 3624917983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624917984, 3624918015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624918016, 3624918527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624918528, 3624918783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624918784, 3624918815, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624918816, 3624918847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624918848, 3624918875, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624918876, 3624919007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919008, 3624919039, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919040, 3624919071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919072, 3624919103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919104, 3624919295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919296, 3624919423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919424, 3624919551, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919552, 3624919679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919680, 3624919967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624919968, 3624919999, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920000, 3624920031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920032, 3624920063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920064, 3624920191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920192, 3624920319, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920320, 3624920703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920704, 3624920831, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920832, 3624920959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624920960, 3624921087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624921088, 3624921215, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624921216, 3624921343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624921344, 3624921599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624921600, 3624922111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922112, 3624922143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922144, 3624922207, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922208, 3624922239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922240, 3624922367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922368, 3624922495, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922496, 3624922623, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922624, 3624922815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922816, 3624922847, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922848, 3624922879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624922880, 3624923007, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624923008, 3624923263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624923264, 3624923391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624923392, 3624923519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624923520, 3624923647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624923648, 3624923775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624923776, 3624924287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624924288, 3624924671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624924672, 3624924895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624924896, 3624924927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624924928, 3624925054, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624925055, 3624925695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624925696, 3624926719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624926720, 3624926975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624926976, 3624927039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624927040, 3624927071, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624927072, 3624927103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624927104, 3624927135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624927136, 3624927167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624927168, 3624927199, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624927200, 3624984575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624984576, 3624992767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3624992768, 3625002351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625002352, 3625002367, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625002368, 3625019135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625019136, 3625019391, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625019392, 3625021439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625025536, 3625058303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625058304, 3625091071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625091072, 3625140223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625140224, 3625148415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625148416, 3625168895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625168896, 3625172991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625172992, 3625176767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625176768, 3625176831, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625176832, 3625287679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625287680, 3625295871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625299968, 3625320447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625320448, 3625320467, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625320468, 3625321215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625321216, 3625321471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625321472, 3625321983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625321984, 3625322239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625322240, 3625322751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625322752, 3625323007, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625323008, 3625325055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625325056, 3625325087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625325088, 3625326632, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625326633, 3625326642, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625326643, 3625327359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327360, 3625327615, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327616, 3625327748, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327749, 3625327812, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327813, 3625327814, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327815, 3625327824, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327825, 3625327907, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327908, 3625327917, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625327918, 3625329407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625329408, 3625329919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625329920, 3625330943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625330944, 3625331199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625331200, 3625331455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625331456, 3625331711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625331712, 3625333279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333280, 3625333287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333288, 3625333295, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333296, 3625333375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333376, 3625333383, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333384, 3625333391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333392, 3625333399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333400, 3625333407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333408, 3625333439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333440, 3625333447, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333448, 3625333455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333456, 3625333463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333464, 3625333471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333472, 3625333479, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625333480, 3625346047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625346048, 3625346303, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625346304, 3625357631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625357632, 3625357639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625357640, 3625358055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625358056, 3625358063, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625358064, 3625364351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364352, 3625364479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364480, 3625364607, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364608, 3625364733, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364734, 3625364895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364896, 3625364911, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364912, 3625364951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364952, 3625364959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364960, 3625364967, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625364968, 3625373711, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373712, 3625373719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373720, 3625373735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373736, 3625373743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373744, 3625373751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373752, 3625373823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373824, 3625373831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373832, 3625373887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373888, 3625373895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373896, 3625373953, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373954, 3625373983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625373984, 3625374031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374032, 3625374044, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374045, 3625374047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374048, 3625374063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374064, 3625374143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374144, 3625374159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374160, 3625374879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374880, 3625374911, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625374912, 3625375039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375040, 3625375071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375072, 3625375135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375136, 3625375167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375168, 3625375247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375248, 3625375255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375256, 3625375271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375272, 3625375279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375280, 3625375359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375360, 3625375367, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375368, 3625375399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375400, 3625375407, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375408, 3625375519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375520, 3625375527, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375528, 3625375599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375600, 3625375607, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375608, 3625375935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375936, 3625375982, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625375983, 3625376031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625376032, 3625376063, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625376064, 3625376159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625376160, 3625376191, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625376192, 3625376223, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625376224, 3625377023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625377024, 3625377535, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625377536, 3625377583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625377584, 3625377599, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625377600, 3625381911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625381912, 3625381919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625381920, 3625382079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625382080, 3625382111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625382112, 3625418751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625418752, 3625420031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625420032, 3625420543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625420544, 3625422591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625422592, 3625423103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625423104, 3625426943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625426944, 3625508863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625508864, 3625512959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625517056, 3625528541, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625528542, 3625528551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625528552, 3625574399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625574400, 3625578495, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625582592, 3625607167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625607168, 3625615359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625615360, 3625631743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625631744, 3625639935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3625639936, 3626270719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626270720, 3626287103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626287104, 3626369023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626369024, 3626377215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626385408, 3626508287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626508288, 3626512383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626512384, 3626524671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626532864, 3626893311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626893312, 3626901503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626901504, 3626926079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626926080, 3626934271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3626934272, 3627044863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627044864, 3627048959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627048960, 3627053055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627057152, 3627061247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627065344, 3627069439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627069440, 3627317087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627317088, 3627317119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627317120, 3627318015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627318016, 3627318079, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627318080, 3627387903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627387904, 3627388415, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627388416, 3627399935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627399936, 3627399967, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627399968, 3627399999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400000, 3627400063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400064, 3627400151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400152, 3627400191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400192, 3627400319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400320, 3627400351, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400352, 3627400639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400640, 3627400671, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400672, 3627400959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627400960, 3627401103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627401104, 3627401151, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627401152, 3627401215, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627401216, 3627507711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627507712, 3627511807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627511808, 3627532287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627532288, 3627544575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627544576, 3627665407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627665408, 3627665439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627665440, 3627665839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627665840, 3627665855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627665856, 3627666239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627666240, 3627666271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627666272, 3627666719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627666720, 3627666751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627666752, 3627667519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627667520, 3627667583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627667584, 3627667839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627667840, 3627667903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627667904, 3627668671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627668672, 3627668735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627668736, 3627669831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627669832, 3627669839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627669840, 3627670799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627670800, 3627670815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627670816, 3627679743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627679744, 3627712511, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627712512, 3627802623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627802624, 3627810815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627810816, 3627842047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627842048, 3627842303, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627842304, 3627896935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627896936, 3627896943, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627896944, 3627897279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627897280, 3627897287, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627897288, 3627897391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627897392, 3627897399, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627897400, 3627912367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627912368, 3627912375, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627912376, 3627970103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627970104, 3627970111, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627970112, 3627970487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627970488, 3627970495, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627970496, 3627970519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627970520, 3627970527, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3627970528, 3628001399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628001400, 3628001407, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628001408, 3628005167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628005168, 3628005175, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628005176, 3628138751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628138752, 3628139007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139008, 3628139311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139312, 3628139327, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139328, 3628139343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139344, 3628139487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139488, 3628139503, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139504, 3628139519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139520, 3628139535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139536, 3628139695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139696, 3628139711, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139712, 3628139967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628139968, 3628139999, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628140000, 3628140351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628140352, 3628140415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628140416, 3628145919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628145920, 3628146175, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628146176, 3628146527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628146528, 3628146559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628146560, 3628148447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628148448, 3628148479, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628148480, 3628148815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628148816, 3628148831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628148832, 3628148847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628148848, 3628148871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628148872, 3628148879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628148880, 3628151423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628151424, 3628151551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628151552, 3628151871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628151872, 3628151935, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628151936, 3628152063, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628152064, 3628153087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628153088, 3628153343, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628153344, 3628154239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628154240, 3628154303, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628154304, 3628154463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628154464, 3628154495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628154496, 3628155023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628155024, 3628155039, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628155040, 3628155103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628155104, 3628155119, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628155120, 3628155647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628155648, 3628155903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628155904, 3628161023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628161024, 3628161279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628161280, 3628164479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628164480, 3628164607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628164608, 3628164927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628164928, 3628164943, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628164944, 3628164959, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628164960, 3628165119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628165120, 3628165183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628165184, 3628165311, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628165312, 3628165375, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628165376, 3628165647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628165648, 3628165663, N'VI', N'Virgin Islands, U.S.') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628165664, 3628169471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628169472, 3628169599, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628169600, 3628236799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628236800, 3628257279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628257280, 3628598271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628598272, 3628599295, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628599296, 3628603391, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628603392, 3628604415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628604416, 3628605439, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628605440, 3628608511, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628608512, 3628609023, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628609024, 3628609151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628609152, 3628609215, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628609216, 3628613375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628613376, 3628613631, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628613632, 3628614399, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628614400, 3628614911, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628614912, 3628615167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628615168, 3628615679, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628615680, 3628616191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628616192, 3628617215, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628617216, 3628617471, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628617472, 3628617727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628617728, 3628618239, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628618240, 3628619775, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628619776, 3628622847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628622848, 3628623871, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628623872, 3628625919, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628625920, 3628626175, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628626176, 3628626943, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628626944, 3628627199, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628627200, 3628627455, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628627456, 3628627711, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628627712, 3628628991, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628628992, 3628629247, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628629248, 3628629503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628629504, 3628631807, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628631808, 3628633855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628633856, 3628634111, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628634112, 3628636159, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628636160, 3628637183, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628637184, 3628637695, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628637696, 3628638207, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628638208, 3628646399, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628646400, 3628646911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628646912, 3628647423, N'HN', N'Honduras') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628647424, 3628647679, N'SZ', N'Swaziland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628647680, 3628648959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628648960, 3628649215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628649216, 3628649727, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628649728, 3628654079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628654080, 3628654591, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628654592, 3628654847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628654848, 3628655103, N'CR', N'Costa Rica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628655104, 3628655359, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628655360, 3628656383, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628656384, 3628656639, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628656640, 3628657407, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628657408, 3628657663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628657664, 3628657919, N'VE', N'Venezuela') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628657920, 3628658175, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628658176, 3628834815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628834816, 3628843007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628843008, 3628854271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628854272, 3628854527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3628854528, 3629187071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629187072, 3629195263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629195264, 3629199359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629203456, 3629318143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629318144, 3629326335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629334528, 3629362887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629362888, 3629362895, N'PR', N'Puerto Rico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629362896, 3629364399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629364400, 3629364407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629364408, 3629365055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629365056, 3629365071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629365072, 3629365295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629365296, 3629365303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629365304, 3629539327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629539328, 3629547519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629547520, 3629732095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629732096, 3629732111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629732112, 3629735943, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629735944, 3629735951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629735952, 3629736119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629736120, 3629736127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629736128, 3629737215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629737216, 3629737471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629737472, 3629761551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629761552, 3629761567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629761568, 3629761647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629761648, 3629761663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629761664, 3629767935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629767936, 3629768191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629768192, 3629785375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629785376, 3629785407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629785408, 3629789439, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629789440, 3629789695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629789696, 3629789951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629789952, 3629790207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629790208, 3629808095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629808096, 3629808127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629808128, 3629838551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629838552, 3629838559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629838560, 3629838583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629838584, 3629838591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629838592, 3629839103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629839104, 3629839359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629839360, 3629841951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629841952, 3629841983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629841984, 3629859551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629859552, 3629859583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629859584, 3629875199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629875200, 3629875215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629875216, 3629875775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629875776, 3629875807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629875808, 3629876079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629876080, 3629876095, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629876096, 3629876255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629876256, 3629876263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629876264, 3629876279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629876280, 3629876287, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629876288, 3629877055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629877056, 3629877063, N'DO', N'Dominican Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3629877064, 3630039039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630039040, 3630170111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630170112, 3630301695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630301696, 3630301711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630301712, 3630309375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630309376, 3630317567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630317568, 3630374911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630374912, 3630383103, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630383104, 3630391295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630391296, 3630395391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630395392, 3630694399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630706688, 3630718975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630718976, 3630727167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630727168, 3630746879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630746880, 3630747391, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630747392, 3630780415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630784512, 3630787568, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630787569, 3630787576, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630787577, 3630850047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630850048, 3630854143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630854144, 3630956543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3630956544, 3631005695, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631005696, 3631016959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631016960, 3631017215, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631017216, 3631017471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631017472, 3631017727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631017728, 3631057577, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631057578, 3631057597, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631057598, 3631058405, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631058406, 3631058415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631058416, 3631058511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631058512, 3631058521, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631058522, 3631058581, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631058582, 3631058591, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631058592, 3631059229, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631059230, 3631059239, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631059240, 3631095823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631095824, 3631095839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631095840, 3631095855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631095856, 3631095967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631095968, 3631095999, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096000, 3631096023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096024, 3631096031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096032, 3631096039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096040, 3631096047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096048, 3631096063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096064, 3631096071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096072, 3631096095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096096, 3631096111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096112, 3631096119, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096120, 3631096135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096136, 3631096143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096144, 3631096151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096152, 3631096159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096160, 3631096167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096168, 3631096175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096176, 3631096183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096184, 3631096191, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096192, 3631096279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096280, 3631096287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096288, 3631096295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096296, 3631096319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096320, 3631096327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096328, 3631096415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096416, 3631096423, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096424, 3631096431, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096432, 3631096439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096440, 3631096447, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096448, 3631096471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096472, 3631096479, N'MH', N'Marshall Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096480, 3631096495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096496, 3631096503, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096504, 3631096519, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096520, 3631096527, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096528, 3631096543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096544, 3631096559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096560, 3631096575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096576, 3631096639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096640, 3631096655, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096656, 3631096671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096672, 3631096679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096680, 3631096687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096688, 3631096695, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096696, 3631096767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096768, 3631096799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096800, 3631096815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096816, 3631096823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631096824, 3631097127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097128, 3631097135, N'CK', N'Cook Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097136, 3631097351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097352, 3631097359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097360, 3631097367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097368, 3631097375, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097376, 3631097391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097392, 3631097415, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097416, 3631097423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097424, 3631097431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097432, 3631097439, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097440, 3631097575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097576, 3631097583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097584, 3631097599, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097600, 3631097607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097608, 3631097615, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097616, 3631097623, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097624, 3631097631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097632, 3631097647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097648, 3631097727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097728, 3631097743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097744, 3631097775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097776, 3631097783, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097784, 3631097887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097888, 3631097895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097896, 3631097903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097904, 3631097911, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631097912, 3631097999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098000, 3631098007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098008, 3631098015, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098016, 3631098031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098032, 3631098039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098040, 3631098047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098048, 3631098063, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098064, 3631098095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098096, 3631098110, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098111, 3631098111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098112, 3631098119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098120, 3631098127, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098128, 3631098143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098144, 3631098159, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098160, 3631098239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098240, 3631098255, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098256, 3631098263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098264, 3631098271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098272, 3631098335, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098336, 3631098351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098352, 3631098366, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098367, 3631098383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098384, 3631098391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098392, 3631098399, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098400, 3631098423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098424, 3631098431, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098432, 3631098439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098440, 3631098679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098680, 3631098687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098688, 3631098703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098704, 3631098719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098720, 3631098735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098736, 3631098751, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098752, 3631098791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098792, 3631098799, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098800, 3631098807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098808, 3631098815, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098816, 3631098831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098832, 3631098863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098864, 3631098879, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631098880, 3631099087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099088, 3631099095, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099096, 3631099103, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099104, 3631099111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099112, 3631099119, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099120, 3631099391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099392, 3631099407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099408, 3631099439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099440, 3631099447, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099448, 3631099471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099472, 3631099487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099488, 3631099527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099528, 3631099535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099536, 3631099551, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099552, 3631099567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099568, 3631099575, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099576, 3631099607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099608, 3631099615, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099616, 3631099631, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099632, 3631099646, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099647, 3631099647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099648, 3631099775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631099776, 3631112191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631112192, 3631112703, N'VC', N'Saint Vincent and the Grenadines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631112704, 3631116543, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631116544, 3631117567, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631117568, 3631117823, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631117824, 3631118079, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631118080, 3631119103, N'VC', N'Saint Vincent and the Grenadines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631119104, 3631119615, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631119616, 3631120383, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631120384, 3631144959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631144960, 3631153151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631153152, 3631284223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631284224, 3631316991, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631316992, 3631333375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631333376, 3631333679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631333680, 3631333695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631333696, 3631341567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631341568, 3631480831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631480832, 3631484927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631484928, 3631665151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631665152, 3631669247, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669248, 3631669759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669760, 3631669767, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669768, 3631669775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669776, 3631669783, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669784, 3631669791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669792, 3631669799, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669800, 3631669807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669808, 3631669823, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669824, 3631669839, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669840, 3631669855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669856, 3631669871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669872, 3631669887, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669888, 3631669919, N'BO', N'Bolivia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669920, 3631669951, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631669952, 3631670015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631670016, 3631670143, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631670144, 3631670207, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631670208, 3631670271, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631670272, 3631670527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631670528, 3631670783, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631670784, 3631671039, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631671040, 3631671551, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631671552, 3631672575, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631672576, 3631672831, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631672832, 3631673087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673088, 3631673119, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673120, 3631673151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673152, 3631673183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673184, 3631673199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673200, 3631673231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673232, 3631673247, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673248, 3631673263, N'JM', N'Jamaica') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673264, 3631673295, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673296, 3631673311, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631673312, 3631677439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631677440, 3631879199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631879200, 3631879231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631879232, 3631881759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631881760, 3631881791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631881792, 3631939583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3631939584, 3632005119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632005120, 3632136191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632136192, 3632144383, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632144384, 3632152575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632152576, 3632168959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632168960, 3632197631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632197632, 3632201727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632201728, 3632210047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632210048, 3632210055, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632210056, 3632210111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632210112, 3632210143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632210144, 3632211583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632211584, 3632211711, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632211712, 3632212159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632212160, 3632212223, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632212224, 3632213887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632213888, 3632214015, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632214016, 3632216319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632216320, 3632216351, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632216352, 3632217087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632217088, 3632217343, N'PA', N'Panama') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632217344, 3632275455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632283648, 3632287239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632287240, 3632287263, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632287264, 3632291775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632291776, 3632291839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632291840, 3632332799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632332800, 3632357375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632357376, 3632370559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632370560, 3632370575, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632370576, 3632373503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632373504, 3632373759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632373760, 3632381951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632381952, 3632383855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632383856, 3632383871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632383872, 3632390143, N'CA', N'Canada') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632390144, 3632414719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632414720, 3632422911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632422912, 3632447487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632447488, 3632449535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632449536, 3632449567, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632449568, 3632449584, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632449585, 3632452351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632452352, 3632452607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632452608, 3632453119, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632453120, 3632453151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632453152, 3632453183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632453184, 3632453199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632453200, 3632454143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632454144, 3632454399, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632454400, 3632454655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632454656, 3632455167, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632455168, 3632455679, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632455680, 3632480367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480368, 3632480375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480376, 3632480383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480384, 3632480391, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480392, 3632480423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480424, 3632480431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480432, 3632480439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480440, 3632480447, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480448, 3632480471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480472, 3632480479, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480480, 3632480503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480504, 3632480511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480512, 3632480599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480600, 3632480607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480608, 3632480615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480616, 3632480647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480648, 3632480655, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480656, 3632480671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632480672, 3632481183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481184, 3632481199, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481200, 3632481247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481248, 3632481255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481256, 3632481279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481280, 3632481287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481288, 3632481431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481432, 3632481439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481440, 3632481471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481472, 3632481487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481488, 3632481503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481504, 3632481519, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481520, 3632481527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481528, 3632481535, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481536, 3632481631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481632, 3632481647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481648, 3632481655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481656, 3632481663, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481664, 3632481751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481752, 3632481759, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481760, 3632481767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481768, 3632481775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481776, 3632481783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481784, 3632481791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632481792, 3632482039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632482040, 3632482047, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632482048, 3632482399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632482400, 3632482431, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632482432, 3632483151, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483152, 3632483159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483160, 3632483207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483208, 3632483215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483216, 3632483327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483328, 3632483335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483336, 3632483343, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483344, 3632483359, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483360, 3632483375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483376, 3632483407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483408, 3632483423, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483424, 3632483455, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483456, 3632483471, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483472, 3632483551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483552, 3632483583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483584, 3632483599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483600, 3632483607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483608, 3632483615, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483616, 3632483671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483672, 3632483679, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483680, 3632483743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483744, 3632483759, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483760, 3632483775, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483776, 3632483823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483824, 3632483831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483832, 3632483871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483872, 3632483879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483880, 3632483903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483904, 3632483935, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483936, 3632483951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483952, 3632483967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483968, 3632483983, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632483984, 3632484039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484040, 3632484047, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484048, 3632484063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484064, 3632484079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484080, 3632484087, N'PH', N'Philippines') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484088, 3632484623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484624, 3632484639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484640, 3632484647, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484648, 3632484655, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484656, 3632484687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484688, 3632484695, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484696, 3632484727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484728, 3632484735, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484736, 3632484743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484744, 3632484783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484784, 3632484807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484808, 3632484815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484816, 3632484823, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484824, 3632484831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484832, 3632484839, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484840, 3632484855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484856, 3632484863, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632484864, 3632485055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485056, 3632485087, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485088, 3632485119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485120, 3632485135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485136, 3632485143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485144, 3632485151, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485152, 3632485167, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485168, 3632485175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485176, 3632485183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485184, 3632485247, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485248, 3632485263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485264, 3632485271, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485272, 3632485279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485280, 3632485311, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485312, 3632485351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485352, 3632485359, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485360, 3632485375, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485376, 3632485391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485392, 3632485399, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485400, 3632485431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485432, 3632485439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485440, 3632485535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485536, 3632485559, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485560, 3632485583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485584, 3632485599, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485600, 3632485615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485616, 3632485623, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485624, 3632485631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485632, 3632485647, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485648, 3632485655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485656, 3632485663, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485664, 3632485679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485680, 3632485687, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485688, 3632485727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485728, 3632485735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485736, 3632485751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485752, 3632485759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485760, 3632485767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485768, 3632485847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485848, 3632485855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485856, 3632485871, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632485872, 3632486087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486088, 3632486095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486096, 3632486103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486104, 3632486111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486112, 3632486159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486160, 3632486167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486168, 3632486263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486264, 3632486271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486272, 3632486287, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486288, 3632486343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486344, 3632486351, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486352, 3632486367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486368, 3632486375, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486376, 3632486479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486480, 3632486495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486496, 3632486543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486544, 3632486551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486552, 3632486583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486584, 3632486591, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486592, 3632486711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486712, 3632486719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486720, 3632486751, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486752, 3632486783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486784, 3632486815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486816, 3632486847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632486848, 3632487023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487024, 3632487031, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487032, 3632487103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487104, 3632487135, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487136, 3632487423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487424, 3632487455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487456, 3632487783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487784, 3632487791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487792, 3632487855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487856, 3632487871, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487872, 3632487895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487896, 3632487903, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632487904, 3632489119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632489120, 3632489135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632489136, 3632489143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632489144, 3632489151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632489152, 3632490535, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490536, 3632490543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490544, 3632490559, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490560, 3632490623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490624, 3632490687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490688, 3632490695, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490696, 3632490703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490704, 3632490719, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490720, 3632490743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490744, 3632490751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490752, 3632490783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490784, 3632490815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490816, 3632490823, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490824, 3632490847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490848, 3632490879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490880, 3632490935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490936, 3632490943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632490944, 3632491007, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491008, 3632491231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491232, 3632491239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491240, 3632491327, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491328, 3632491343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491344, 3632491359, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491360, 3632491471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491472, 3632491487, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491488, 3632491503, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491504, 3632491511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491512, 3632491519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491520, 3632491639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491640, 3632491647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491648, 3632491807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491808, 3632491823, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491824, 3632491967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632491968, 3632491999, N'SR', N'Suriname') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492000, 3632492007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492008, 3632492015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492016, 3632492023, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492024, 3632492031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492032, 3632492231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492232, 3632492239, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492240, 3632492255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492256, 3632492271, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492272, 3632492279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492280, 3632492471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492472, 3632492479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492480, 3632492543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492544, 3632492551, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492552, 3632492559, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492560, 3632492575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492576, 3632492639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492640, 3632492671, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492672, 3632492783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492784, 3632492791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492792, 3632492839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492840, 3632492847, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492848, 3632492903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492904, 3632492919, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632492920, 3632493023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493024, 3632493055, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493056, 3632493087, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493088, 3632493119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493120, 3632493191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493192, 3632493215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493216, 3632493223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493224, 3632493231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493232, 3632493239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493240, 3632493247, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493248, 3632493255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493256, 3632493263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493264, 3632493271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493272, 3632493279, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493280, 3632493287, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493288, 3632493487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493488, 3632493503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493504, 3632493567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493568, 3632493575, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493576, 3632493583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493584, 3632493607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493608, 3632493615, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493616, 3632493639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493640, 3632493647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493648, 3632493663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493664, 3632493711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493712, 3632493727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493728, 3632493807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493808, 3632493823, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493824, 3632493831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493832, 3632493839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493840, 3632493847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493848, 3632493855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493856, 3632493863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493864, 3632493871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493872, 3632493879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493880, 3632493911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632493912, 3632494023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494024, 3632494031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494032, 3632494039, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494040, 3632494063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494064, 3632494079, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494080, 3632494335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494336, 3632494399, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494400, 3632494415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494416, 3632494431, N'NA', N'Namibia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494432, 3632494439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494440, 3632494447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494448, 3632494455, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494456, 3632494543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494544, 3632494559, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494560, 3632494959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494960, 3632494975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632494976, 3632495007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495008, 3632495039, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495040, 3632495103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495104, 3632495111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495112, 3632495119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495120, 3632495135, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495136, 3632495263, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495264, 3632495295, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495296, 3632495319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495320, 3632495327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495328, 3632495359, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495360, 3632495487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495488, 3632495519, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495520, 3632495535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495536, 3632495551, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632495552, 3632496063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632496064, 3632496127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632496128, 3632496143, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632496144, 3632496159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632496160, 3632496191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632496192, 3632496223, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632496224, 3632710191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632710192, 3632710207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632710208, 3632721919, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632726016, 3632857087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632873472, 3632881663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632881664, 3632889855, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632889856, 3632898047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632898048, 3632902143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632902144, 3632971775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632971776, 3632988159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3632988160, 3633028607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633028608, 3633028863, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633028864, 3633029119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633029120, 3633029631, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633029632, 3633030143, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633030144, 3633030215, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633030216, 3633030223, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633030224, 3633031519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031520, 3633031535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031536, 3633031647, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031648, 3633031655, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031656, 3633031687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031688, 3633031695, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031696, 3633031703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031704, 3633031711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031712, 3633031719, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031720, 3633031743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031744, 3633031759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031760, 3633031767, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031768, 3633031911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031912, 3633031919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031920, 3633031959, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031960, 3633031967, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031968, 3633031983, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031984, 3633031991, N'PG', N'Papua New Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633031992, 3633031999, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032000, 3633032087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032088, 3633032095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032096, 3633032167, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032168, 3633032175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032176, 3633032223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032224, 3633032231, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032232, 3633032287, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032288, 3633032319, N'GQ', N'Equatorial Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032320, 3633032511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032512, 3633032575, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633032576, 3633033287, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033288, 3633033295, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033296, 3633033303, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033304, 3633033319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033320, 3633033327, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033328, 3633033359, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033360, 3633033367, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033368, 3633033951, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033952, 3633033983, N'CU', N'Cuba') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633033984, 3633034111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633034112, 3633034239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633034240, 3633034519, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633034520, 3633034527, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633034528, 3633034559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633034560, 3633034751, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633034752, 3633035015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035016, 3633035023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035024, 3633035071, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035072, 3633035087, N'NR', N'Nauru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035088, 3633035095, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035096, 3633035135, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035136, 3633035151, N'NR', N'Nauru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035152, 3633035199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035200, 3633035207, N'ID', N'Indonesia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035208, 3633035311, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035312, 3633035319, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035320, 3633035335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035336, 3633035343, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035344, 3633035375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035376, 3633035383, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035384, 3633035423, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035424, 3633035431, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035432, 3633035439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035440, 3633035447, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035448, 3633035455, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035456, 3633035487, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035488, 3633035527, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035528, 3633035535, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633035536, 3633036031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633036032, 3633036287, N'HT', N'Haiti') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633036288, 3633036479, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633036480, 3633036511, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633036512, 3633036591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633036592, 3633036599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633036600, 3633037055, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633037056, 3633166079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633166080, 3633166207, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633166208, 3633336319, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633336320, 3633340415, N'KY', N'Cayman Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633340416, 3633344511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633344512, 3633348607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633348608, 3633405951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633405952, 3633410047, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633410048, 3633479679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633479680, 3633483775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633487872, 3633513984, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633513985, 3633514238, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633514239, 3633545215, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633545216, 3633547263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633547264, 3633547775, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633547776, 3633551359, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551360, 3633551367, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551368, 3633551375, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551376, 3633551391, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551392, 3633551399, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551400, 3633551407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551408, 3633551423, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551424, 3633551439, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551440, 3633551455, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551456, 3633551487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551488, 3633551519, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551520, 3633551535, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551536, 3633551543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551544, 3633551559, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551560, 3633551599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551600, 3633551615, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551616, 3633551743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551744, 3633551759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551760, 3633551775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551776, 3633551815, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551816, 3633551823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551824, 3633551855, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551856, 3633551859, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551860, 3633551867, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633551868, 3633552991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633552992, 3633553023, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633553024, 3633553151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633553152, 3633553279, N'GW', N'Guinea-Bissau') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633553280, 3633553407, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633553408, 3633698975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633698976, 3633698991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633698992, 3633701439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701440, 3633701447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701448, 3633701695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701696, 3633701759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701760, 3633701815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701816, 3633701823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701824, 3633701871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701872, 3633701879, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701880, 3633701935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701936, 3633701951, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633701952, 3633702463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702464, 3633702527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702528, 3633702591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702592, 3633702599, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702600, 3633702799, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702800, 3633702807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702808, 3633702815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702816, 3633702847, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633702848, 3633881087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633881088, 3633885183, N'AN', N'Netherlands Antilles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633885184, 3633889279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633889280, 3633893375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633893376, 3633915647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633915648, 3633915903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633915904, 3633922303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633922304, 3633922367, N'TN', N'Tunisia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633922368, 3633971199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3633971200, 3634020351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634020352, 3634053119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634053120, 3634061311, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634061312, 3634065311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634065312, 3634065343, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634065344, 3634125831, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634125832, 3634125839, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634125840, 3634125855, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634125856, 3634125887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634125888, 3634125903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634125904, 3634125951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634125952, 3634125967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634125968, 3634135423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634135424, 3634135487, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634135488, 3634135935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634135936, 3634136062, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634136063, 3634136103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634136104, 3634136111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634136112, 3634138127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634138128, 3634138143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634138144, 3634204255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634204256, 3634204263, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634204264, 3634204591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634204592, 3634204607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634204608, 3634267649, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634267650, 3634267681, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634267682, 3634269669, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634269670, 3634269679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634269680, 3634269801, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634269802, 3634269815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634269816, 3634270016, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634270017, 3634270080, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634270081, 3634270976, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634270977, 3634271231, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634271232, 3634271232, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634271233, 3634271328, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634271329, 3634367023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634367024, 3634367031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634367032, 3634506239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634506240, 3634506751, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634506752, 3634511871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634511872, 3634515967, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634515968, 3634552831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634552832, 3634556927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634556928, 3634610175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634610176, 3634614271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634614272, 3634880511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634880512, 3634888703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634888704, 3634913279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634913280, 3634915663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634915664, 3634915679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634915680, 3634921471, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634921472, 3634925567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634925568, 3634929663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3634929664, 3635091695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635091696, 3635091703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635091704, 3635091839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635091840, 3635091903, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635091904, 3635105791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635109888, 3635113983, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635118080, 3635142655, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635142656, 3635146751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635146752, 3635164927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635164928, 3635165183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635165184, 3635314687, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635314688, 3635322879, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635322880, 3635425279, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635425280, 3635429375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635429376, 3635464031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635464032, 3635464063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635464064, 3635464127, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635464128, 3635464135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635464136, 3635464223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635464224, 3635464239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635464240, 3635466239, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635466240, 3635470335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635470336, 3635658751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635658752, 3635660799, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635660800, 3635871743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635871744, 3635879935, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635879936, 3635892223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635892224, 3635896319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635896320, 3635904511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635904512, 3635912703, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635912704, 3635961855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635961856, 3635963903, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635963904, 3635964415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635964416, 3635965951, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635965952, 3635966975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635966976, 3635967999, N'PY', N'Paraguay') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635968000, 3635970047, N'SV', N'El Salvador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3635970048, 3636019199, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636019200, 3636021775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636021776, 3636021791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636021792, 3636022527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636022528, 3636022783, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636022784, 3636023039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636023040, 3636023295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636023296, 3636024191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636024192, 3636024223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636024224, 3636025007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636025008, 3636025015, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636025016, 3636025071, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636025072, 3636025087, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636025088, 3636027391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636027392, 3636064255, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636064256, 3636068351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636068352, 3636150495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636150496, 3636150527, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636150528, 3636150815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636150816, 3636150847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636150848, 3636150911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636150912, 3636151007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151008, 3636151023, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151024, 3636151039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151040, 3636151103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151104, 3636151455, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151456, 3636151479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151480, 3636151488, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151489, 3636151535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151536, 3636151759, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151760, 3636151775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636151776, 3636152575, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152576, 3636152591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152592, 3636152639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152640, 3636152703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152704, 3636152767, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152768, 3636152831, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152832, 3636152863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152864, 3636152895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636152896, 3636153343, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636153344, 3636153375, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636153376, 3636153583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636153584, 3636153599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636153600, 3636154895, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636154896, 3636154927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636154928, 3636154975, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636154976, 3636154979, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636154980, 3636154990, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636154991, 3636154991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636154992, 3636155007, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636155008, 3636155071, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636155072, 3636155391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636155392, 3636155519, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636155520, 3636155775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636155776, 3636155839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636155840, 3636156159, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636156160, 3636156191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636156192, 3636156255, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636156256, 3636156256, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636156257, 3636156415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636156416, 3636156927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636156928, 3636157063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636157064, 3636157119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636157120, 3636157151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636157152, 3636157167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636157168, 3636157183, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636157184, 3636157439, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636157440, 3636158015, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158016, 3636158047, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158048, 3636158063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158064, 3636158079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158080, 3636158207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158208, 3636158223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158224, 3636158335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158336, 3636158463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158464, 3636158719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158720, 3636158783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158784, 3636158815, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158816, 3636158823, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158824, 3636158847, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158848, 3636158879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158880, 3636158927, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636158928, 3636159487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636159488, 3636159743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636159744, 3636159775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636159776, 3636159807, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636159808, 3636159839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636159840, 3636159871, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636159872, 3636159999, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636160000, 3636160415, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636160416, 3636160447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636160448, 3636160831, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636160832, 3636160895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636160896, 3636160911, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636160912, 3636160975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636160976, 3636161279, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636161280, 3636161343, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636161344, 3636161535, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636161536, 3636161791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636161792, 3636162559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636162560, 3636163583, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636163584, 3636164319, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636164320, 3636164351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636164352, 3636164863, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636164864, 3636165119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636165120, 3636165375, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636165376, 3636165471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636165472, 3636165503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636165504, 3636166143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636166144, 3636166399, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636166400, 3636206079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636206080, 3636206087, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636206088, 3636206271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636206272, 3636206303, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636206304, 3636224159, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636224160, 3636224191, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636224192, 3636396031, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636396032, 3636461567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636461568, 3636577647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636577648, 3636577663, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636577664, 3636609023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636609024, 3636610559, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636610560, 3636610815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636610816, 3636621311, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636621312, 3636625407, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636625408, 3636626431, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636626432, 3636626943, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636626944, 3636627199, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636627200, 3636627455, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636627456, 3636628479, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636628480, 3636628991, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636628992, 3636667391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636667392, 3636667647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636667648, 3636667903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636667904, 3636668159, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636668160, 3636668415, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636668416, 3636668671, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636668672, 3636668927, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636668928, 3636669183, N'BZ', N'Belize') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636669184, 3636669439, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636669440, 3636669695, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636669696, 3636669951, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636669952, 3636670207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670208, 3636670314, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670315, 3636670330, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670331, 3636670684, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670685, 3636670700, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670701, 3636670783, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670784, 3636670799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670800, 3636670985, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670986, 3636670993, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636670994, 3636671209, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636671210, 3636671225, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636671226, 3636671231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636671232, 3636671487, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636671488, 3636671743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636671744, 3636822015, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636822016, 3636854783, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636854784, 3636887551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636887552, 3636895743, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636895744, 3636899839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636903936, 3636904351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904352, 3636904383, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904384, 3636904479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904480, 3636904511, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904512, 3636904543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904544, 3636904575, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904576, 3636904607, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904608, 3636904639, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904640, 3636904703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904704, 3636904959, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636904960, 3636905087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905088, 3636905215, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905216, 3636905471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905472, 3636905727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905728, 3636905759, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905760, 3636905791, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905792, 3636905823, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905824, 3636905887, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905888, 3636905951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636905952, 3636906079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906080, 3636906111, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906112, 3636906143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906144, 3636906175, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906176, 3636906367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906368, 3636906465, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906466, 3636906623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906624, 3636906751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906752, 3636906879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636906880, 3636907007, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907008, 3636907103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907104, 3636907135, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907136, 3636907199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907200, 3636907231, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907232, 3636907391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907392, 3636907519, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907520, 3636907775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636907776, 3636908031, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636908032, 3636908543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636908544, 3636908799, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636908800, 3636909055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909056, 3636909567, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909568, 3636909663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909664, 3636909695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909696, 3636909791, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909792, 3636909855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909856, 3636909887, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909888, 3636909919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909920, 3636909951, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636909952, 3636910079, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910080, 3636910335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910336, 3636910399, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910400, 3636910495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910496, 3636910527, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910528, 3636910591, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910592, 3636910719, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910720, 3636910847, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636910848, 3636911103, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911104, 3636911295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911296, 3636911359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911360, 3636911423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911424, 3636911455, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911456, 3636911615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911616, 3636911743, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911744, 3636911871, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636911872, 3636912383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636912384, 3636912447, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636912448, 3636912511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636912512, 3636912639, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636912640, 3636913663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636913664, 3636913919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636913920, 3636914175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636914176, 3636914431, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636914432, 3636914687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636914688, 3636914815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636914816, 3636914943, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636914944, 3636915199, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636915200, 3636915327, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636915328, 3636915455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636915456, 3636915583, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636915584, 3636916159, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916160, 3636916191, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916192, 3636916223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916224, 3636916351, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916352, 3636916479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916480, 3636916607, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916608, 3636916735, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916736, 3636916991, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636916992, 3636917120, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917121, 3636917255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917256, 3636917263, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917264, 3636917271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917272, 3636917295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917296, 3636917303, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917304, 3636917447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917448, 3636917455, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917456, 3636917631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636917632, 3636919039, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919040, 3636919071, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919072, 3636919103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919104, 3636919135, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919136, 3636919167, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919168, 3636919199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919200, 3636919231, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919232, 3636919295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919296, 3636919359, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919360, 3636919711, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919712, 3636919743, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919744, 3636919807, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919808, 3636919871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636919872, 3636920063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636920064, 3636920127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3636920128, 3637067775, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637071872, 3637080063, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637080064, 3637191167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637191168, 3637191199, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637191200, 3637196351, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637196352, 3637196359, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637196360, 3637196487, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637196488, 3637196495, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637196496, 3637197471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637197472, 3637197503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637197504, 3637443103, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637443104, 3637443135, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637443136, 3637510143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637510144, 3637520127, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637520128, 3637520191, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637520192, 3637667439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637667440, 3637667518, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637667519, 3637669887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637669888, 3637706751, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637706752, 3637739519, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637739520, 3637740911, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637740912, 3637740919, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637740920, 3637742527, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637742528, 3637742559, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3637742560, 3638165503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638165504, 3638181887, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638181888, 3638304767, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638304768, 3638312959, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638312960, 3638370303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638370304, 3638386687, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638386688, 3638509567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638509568, 3638528751, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638528752, 3638528759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638528760, 3638529439, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638529440, 3638529447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638529448, 3638530239, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638530240, 3638530255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638530256, 3638533727, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638533728, 3638533735, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638533736, 3638534143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638534144, 3638697983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638697984, 3638706175, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638714368, 3638738943, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638738944, 3638739199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638739200, 3638740479, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638740480, 3638749183, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638749184, 3638749439, N'AI', N'Anguilla') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638749440, 3638750207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638750208, 3638751231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638751232, 3638755327, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638755328, 3638874111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638874112, 3638878207, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638882304, 3638960383, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638960384, 3638960639, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638960640, 3638984703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638984704, 3638992895, N'GT', N'Guatemala') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3638992896, 3639083007, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639083008, 3639148543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639148544, 3639222271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639222272, 3639230463, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639230464, 3639255039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639255040, 3639258677, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639258678, 3639258678, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639258679, 3639263231, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639263232, 3639279615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639279616, 3639283711, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639283712, 3639322399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639322400, 3639322407, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639322408, 3639342703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639342704, 3639342711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639342712, 3639343135, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639343136, 3639343167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639343168, 3639343231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639343232, 3639343263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639343264, 3639344447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639344448, 3639344463, N'MA', N'Morocco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639344464, 3639344543, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639344544, 3639344575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639344576, 3639344591, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639344592, 3639369727, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369728, 3639369743, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369744, 3639369751, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369752, 3639369775, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369776, 3639369783, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369784, 3639369791, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369792, 3639369831, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369832, 3639369855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639369856, 3639370207, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370208, 3639370503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370504, 3639370511, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370512, 3639370535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370536, 3639370543, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370544, 3639370551, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370552, 3639370567, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370568, 3639370575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370576, 3639370583, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370584, 3639370591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370592, 3639370599, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370600, 3639370615, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370616, 3639370623, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370624, 3639370663, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370664, 3639370671, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370672, 3639370679, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370680, 3639370687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370688, 3639370695, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370696, 3639370703, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370704, 3639370711, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370712, 3639370719, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370720, 3639370735, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370736, 3639370751, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639370752, 3639371007, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371008, 3639371135, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371136, 3639371391, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371392, 3639371455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371456, 3639371775, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371776, 3639371799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371800, 3639371839, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371840, 3639371855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371856, 3639371871, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371872, 3639371895, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639371896, 3639372031, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372032, 3639372095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372096, 3639372135, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372136, 3639372143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372144, 3639372159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372160, 3639372191, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372192, 3639372223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372224, 3639372255, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372256, 3639372287, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372288, 3639372415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372416, 3639372543, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639372544, 3639374335, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639374336, 3639374847, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639374848, 3639376383, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639376384, 3639377407, N'GU', N'Guam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639377408, 3639377663, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639377664, 3639390207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639390208, 3639394303, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639394304, 3639396095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396096, 3639396351, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396352, 3639396383, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396384, 3639396415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396416, 3639396431, N'PK', N'Pakistan') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396432, 3639396447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396448, 3639396463, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396464, 3639396471, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396472, 3639396487, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396488, 3639396519, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396520, 3639396543, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396544, 3639396551, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396552, 3639396671, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396672, 3639396735, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396736, 3639396743, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396744, 3639396863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396864, 3639396879, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396880, 3639396927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396928, 3639396959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396960, 3639396975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396976, 3639396991, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639396992, 3639397023, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639397024, 3639397119, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639397120, 3639397375, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639397376, 3639397631, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639397632, 3639397887, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639397888, 3639398399, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398400, 3639398423, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398424, 3639398431, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398432, 3639398439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398440, 3639398447, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398448, 3639398463, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398464, 3639398495, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398496, 3639398527, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398528, 3639398591, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398592, 3639398599, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398600, 3639398655, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398656, 3639398663, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398664, 3639398911, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639398912, 3639399935, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639399936, 3639400447, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639400448, 3639401471, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401472, 3639401495, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401496, 3639401511, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401512, 3639401519, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401520, 3639401535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401536, 3639401551, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401552, 3639401559, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401560, 3639401591, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401592, 3639401599, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401600, 3639401623, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401624, 3639401631, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401632, 3639401647, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401648, 3639401655, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401656, 3639401687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401688, 3639401727, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639401728, 3639402015, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402016, 3639402039, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402040, 3639402047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402048, 3639402055, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402056, 3639402071, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402072, 3639402079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402080, 3639402095, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402096, 3639402111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402112, 3639402175, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402176, 3639402191, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402192, 3639402199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402200, 3639402207, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402208, 3639402239, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402240, 3639402495, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639402496, 3639558143, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639558144, 3639566335, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639566336, 3639607295, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639607296, 3639611391, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639611392, 3639656447, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639656448, 3639660543, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639660544, 3639664639, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639664640, 3639668735, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639672832, 3639673599, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639673600, 3639675391, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639675392, 3639676159, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676160, 3639676415, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676416, 3639676543, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676544, 3639676575, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676576, 3639676639, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676640, 3639676655, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676656, 3639676695, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676696, 3639676703, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676704, 3639676959, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676960, 3639676967, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676968, 3639676983, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639676984, 3639676999, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677000, 3639677063, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677064, 3639677071, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677072, 3639677111, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677112, 3639677119, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677120, 3639677223, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677224, 3639677231, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677232, 3639677335, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677336, 3639677343, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677344, 3639677375, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677376, 3639677383, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677384, 3639677431, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677432, 3639677439, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677440, 3639677503, N'CO', N'Colombia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677504, 3639677519, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677520, 3639677559, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677560, 3639677567, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677568, 3639677575, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677576, 3639677583, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677584, 3639677631, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677632, 3639677695, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677696, 3639677751, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677752, 3639677767, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677768, 3639677823, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677824, 3639677831, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677832, 3639677839, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677840, 3639677847, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677848, 3639677927, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677928, 3639677951, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677952, 3639677975, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677976, 3639677983, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639677984, 3639677999, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678000, 3639678007, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678008, 3639678031, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678032, 3639678039, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678040, 3639678175, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678176, 3639678191, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678192, 3639678199, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678200, 3639678463, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678464, 3639678487, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678488, 3639678495, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678496, 3639678647, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678648, 3639678655, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678656, 3639678735, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678736, 3639678751, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678752, 3639678895, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678896, 3639678911, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678912, 3639678927, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678928, 3639678935, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639678936, 3639679359, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639679360, 3639679383, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639679384, 3639679455, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639679456, 3639679463, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639679464, 3639679487, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639679488, 3639679743, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639679744, 3639680255, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680256, 3639680271, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680272, 3639680343, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680344, 3639680351, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680352, 3639680359, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680360, 3639680367, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680368, 3639680895, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680896, 3639680927, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680928, 3639680991, N'CO', N'Colombia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639680992, 3639681023, N'CL', N'Chile') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639681024, 3639721983, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639726080, 3639730175, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639730176, 3639734271, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639734272, 3639888927, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639888928, 3639888959, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639888960, 3639902207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639902208, 3639918591, N'PE', N'Peru') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639918592, 3639934975, N'AR', N'Argentina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3639934976, 3640016895, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640033280, 3640041471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640049664, 3640057855, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640057856, 3640061951, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640066048, 3640075391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640075392, 3640075407, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640075408, 3640075759, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640075760, 3640075775, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640075776, 3640112063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640112064, 3640112079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640112080, 3640112575, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640112576, 3640112591, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640112592, 3640197119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640197120, 3640201215, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640201216, 3640205311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640205312, 3640209407, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640209408, 3640213503, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640225792, 3640246271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640262656, 3640287231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640287232, 3640291327, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640291328, 3640312063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312064, 3640312079, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312080, 3640312095, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312096, 3640312103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312104, 3640312159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312160, 3640312191, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312192, 3640312319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312320, 3640312575, N'NI', N'Nicaragua') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312576, 3640312607, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312608, 3640312639, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312640, 3640312703, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640312704, 3640315391, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640315392, 3640315647, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640315648, 3640316415, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640316416, 3640316671, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640316672, 3640316927, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640316928, 3640317183, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317184, 3640317303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317304, 3640317311, N'EC', N'Ecuador') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317312, 3640317375, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317376, 3640317407, N'EC', N'Ecuador') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317408, 3640317503, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317504, 3640317535, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317536, 3640317559, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317560, 3640317567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317568, 3640317695, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317696, 3640317951, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640317952, 3640318207, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640318208, 3640318975, N'NC', N'New Caledonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640318976, 3640319103, N'GQ', N'Equatorial Guinea') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640319104, 3640319231, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640319232, 3640319487, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640319488, 3640319999, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640320000, 3640344959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640344960, 3640345007, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345008, 3640345023, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345024, 3640345086, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345087, 3640345087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345088, 3640345342, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345343, 3640345391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345392, 3640345407, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345408, 3640345423, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345424, 3640345431, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345432, 3640345455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345456, 3640345503, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345504, 3640345663, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345664, 3640345711, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345712, 3640345743, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345744, 3640345854, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640345855, 3640346815, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640346816, 3640346847, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640346848, 3640346879, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640346880, 3640347134, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347135, 3640347391, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347392, 3640347455, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347456, 3640347471, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347472, 3640347487, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347488, 3640347503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347504, 3640347519, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347520, 3640347535, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347536, 3640347551, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347552, 3640347567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347568, 3640347599, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347600, 3640347615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347616, 3640347631, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347632, 3640347647, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347648, 3640347711, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347712, 3640347839, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347840, 3640347902, N'MX', N'Mexico') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640347903, 3640360959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640360960, 3640362431, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640362432, 3640362463, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640362464, 3640369151, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640369152, 3640410111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640410112, 3640418303, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640418304, 3640426495, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640426496, 3640442879, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640442880, 3640446975, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640446976, 3640459263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640459264, 3640557567, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640557568, 3640582143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640582144, 3640647679, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640647680, 3640651775, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640651776, 3640655871, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3640655872, 3641017895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641017896, 3641017903, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641017904, 3641024247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641024248, 3641024255, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641024256, 3641029375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641029376, 3641029631, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641029632, 3641041887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641041888, 3641041895, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641041896, 3641056319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641056320, 3641056327, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641056328, 3641056359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641056360, 3641056367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641056368, 3641056375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641056376, 3641057655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641057656, 3641057663, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641057664, 3641068623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641068624, 3641068631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641068632, 3641078559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641078560, 3641078567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641078568, 3641085687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641085688, 3641085695, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641085696, 3641087695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641087696, 3641087703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641087704, 3641098191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641098192, 3641098207, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641098208, 3641102607, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641102608, 3641102615, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641102616, 3641103719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641103720, 3641103727, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641103728, 3641106951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641106952, 3641106959, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641106960, 3641114031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641114032, 3641114039, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641114040, 3641134367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641134368, 3641134375, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641134376, 3641140671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641140672, 3641140679, N'US', N'United States') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641140680, 3641147495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641147496, 3641147503, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641147504, 3641147519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641147520, 3641147527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641147528, 3641150303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641150304, 3641150311, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641150312, 3641157951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641157952, 3641157959, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641157960, 3641158031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158032, 3641158055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158056, 3641158103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158104, 3641158111, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158112, 3641158127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158128, 3641158135, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158136, 3641158199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158200, 3641158207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158208, 3641158335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158336, 3641158343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158344, 3641158423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158424, 3641158431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158432, 3641158519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158520, 3641158527, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641158528, 3641159679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641159680, 3641159687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641159688, 3641159727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641159728, 3641159743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641159744, 3641159767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641159768, 3641159775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641159776, 3641180159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641180160, 3641188351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641188352, 3641192447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641192448, 3641196543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641196544, 3641200639, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641200640, 3641204735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641204736, 3641206015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641206016, 3641206271, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641206272, 3641208831, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641208832, 3641212927, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641212928, 3641221119, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641221120, 3641229311, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641229312, 3641230559, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641230560, 3641230567, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641230568, 3641237503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641237504, 3641241599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641241600, 3641245695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641245696, 3641249791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641249792, 3641262079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641262080, 3641266175, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641266176, 3641270271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641270272, 3641278175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641278176, 3641278191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641278192, 3641278463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641278464, 3641282559, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641282560, 3641286655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641286656, 3641294847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641294848, 3641298943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641298944, 3641303039, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641303040, 3641307135, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641307136, 3641311231, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641311232, 3641315327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641315328, 3641319423, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641319424, 3641323519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641323520, 3641331711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641331712, 3641335807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641335808, 3641343999, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641344000, 3641345199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641345200, 3641345215, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641345216, 3641353087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353088, 3641353151, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353152, 3641353183, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353184, 3641353215, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353216, 3641353343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353344, 3641353639, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353640, 3641353647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353648, 3641353727, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353728, 3641353759, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353760, 3641353775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353776, 3641353807, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353808, 3641353983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641353984, 3641354239, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641354240, 3641354495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641354496, 3641355263, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641355264, 3641355519, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641355520, 3641355583, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641355584, 3641355615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641355616, 3641355679, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641355680, 3641355775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641355776, 3641356031, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641356032, 3641356111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641356112, 3641356119, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641356120, 3641356191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641356192, 3641356207, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641356208, 3641358591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641358592, 3641358847, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641358848, 3641359359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641359360, 3641359615, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641359616, 3641360383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641360384, 3641368575, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641368576, 3641372671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641372672, 3641376767, N'BG', N'Bulgaria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641376768, 3641380863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641380864, 3641384959, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641384960, 3641389055, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641389056, 3641393151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641393152, 3641401343, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641401344, 3641409535, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641409536, 3641417727, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641417728, 3641421823, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641421824, 3641425919, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641425920, 3641430015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641430016, 3641434111, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641434112, 3641442303, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641442304, 3641446399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641446400, 3641450495, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641450496, 3641454591, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641454592, 3641458687, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641458688, 3641462783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641462784, 3641466879, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641466880, 3641470975, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641470976, 3641475071, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641475072, 3641479167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641479168, 3641483263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641483264, 3641491455, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641491456, 3641493503, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641493504, 3641494015, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641494016, 3641499647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641499648, 3641503743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641503744, 3641507839, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641507840, 3641516031, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641516032, 3641520127, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641520128, 3641524223, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641524224, 3641528319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641528320, 3641532415, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641532416, 3641536511, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641536512, 3641540607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641540608, 3641548799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641548800, 3641552895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641552896, 3641556991, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641556992, 3641558783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641558784, 3641558911, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641558912, 3641559039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641559040, 3641560319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641560320, 3641560795, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641560796, 3641560827, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641560828, 3641561087, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641561088, 3641565183, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641565184, 3641573375, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641573376, 3641577471, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641577472, 3641581567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641581568, 3641585663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641585664, 3641589759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641589760, 3641593855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641593856, 3641597951, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641597952, 3641602047, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641602048, 3641606143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641606144, 3641607695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641607696, 3641607711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641607712, 3641610239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641610240, 3641618431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641618432, 3641622527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641622528, 3641626623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641626624, 3641630719, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641630720, 3641634815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641634816, 3641638911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641638912, 3641643007, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641643008, 3641647103, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641647104, 3641651199, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641651200, 3641655295, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641655296, 3641659391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641659392, 3641663487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641663488, 3641667583, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641667584, 3641668863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641668864, 3641670655, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641670656, 3641670783, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641670784, 3641670791, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641670792, 3641670911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641670912, 3641671679, N'LS', N'Lesotho') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641671680, 3641679871, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641679872, 3641683967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641683968, 3641688063, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641688064, 3641692159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641692160, 3641696255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641696256, 3641700351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641700352, 3641704447, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641704448, 3641704959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641704960, 3641708543, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641708544, 3641712639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641712640, 3641716735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641716736, 3641720831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641720832, 3641729023, N'MK', N'Macedonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641729024, 3641733119, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641733120, 3641737215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641737216, 3641741311, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641741312, 3641745407, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641745408, 3641749503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641749504, 3641753599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641753600, 3641757695, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641757696, 3641761791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641761792, 3641762907, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641762908, 3641763063, N'GR', N'Greece') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641763064, 3641765631, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641765632, 3641765887, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641765888, 3641769983, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641769984, 3641774079, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641774080, 3641778175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641778176, 3641782271, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641782272, 3641784079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641784080, 3641786367, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641786368, 3641790463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641790464, 3641794559, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641794560, 3641798655, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641798656, 3641802751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641802752, 3641806847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641806848, 3641809663, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641809664, 3641809919, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641809920, 3641810943, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641810944, 3641819135, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641819136, 3641823231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641823232, 3641827327, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641827328, 3641835519, N'BH', N'Bahrain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641835520, 3641839615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641839616, 3641843711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641843712, 3641847807, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641847808, 3641851903, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641851904, 3641855999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641856000, 3641860095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641860096, 3641868287, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641868288, 3641876479, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641876480, 3641880575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641880576, 3641881447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641881448, 3641881455, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641881456, 3641881567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641881568, 3641881583, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641881584, 3641884671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641884672, 3641888767, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641888768, 3641892863, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641892864, 3641896959, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641896960, 3641901055, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641901056, 3641905151, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641905152, 3641909247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641909248, 3641913343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641913344, 3641917439, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641917440, 3641925631, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641925632, 3641929727, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641929728, 3641933823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641933824, 3641937919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641937920, 3641942015, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641942016, 3641950207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641950208, 3641954303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641954304, 3641958399, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641958400, 3641959423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641959424, 3641961727, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641961728, 3641961743, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641961744, 3641961775, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641961776, 3641961855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641961856, 3641962495, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641962496, 3641966591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641966592, 3641970687, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641970688, 3641978879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641978880, 3641987071, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641987072, 3641991167, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641991168, 3641995263, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641995264, 3641999359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3641999360, 3642003455, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642003456, 3642007551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642007552, 3642015743, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642015744, 3642019839, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642019840, 3642023935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642023936, 3642028031, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028032, 3642028159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028160, 3642028275, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028276, 3642028287, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028288, 3642028288, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028289, 3642028295, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028296, 3642028303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028304, 3642028319, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028320, 3642028327, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028328, 3642028503, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028504, 3642028511, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028512, 3642028519, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028520, 3642028543, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028544, 3642028599, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028600, 3642028607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028608, 3642028671, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028672, 3642028703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028704, 3642028735, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028736, 3642028767, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028768, 3642028815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028816, 3642028823, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028824, 3642028863, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028864, 3642028959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028960, 3642028991, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642028992, 3642029051, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029052, 3642029055, N'SO', N'Somalia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029056, 3642029183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029184, 3642029199, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029200, 3642029215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029216, 3642029247, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029248, 3642029407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029408, 3642029439, N'SO', N'Somalia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029440, 3642029567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029568, 3642029823, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642029824, 3642030079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642030080, 3642030335, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642030336, 3642030623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642030624, 3642030631, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642030632, 3642031519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642031520, 3642031551, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642031552, 3642032127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642032128, 3642036223, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642036224, 3642040319, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642040320, 3642048511, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642048512, 3642052863, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642052864, 3642053119, N'AO', N'Angola') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642053120, 3642053439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642053440, 3642053631, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642053632, 3642055935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642055936, 3642056703, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642056704, 3642060799, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642060800, 3642064895, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642064896, 3642068991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642068992, 3642070079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642070080, 3642070111, N'TG', N'Togo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642070112, 3642070127, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642070128, 3642070143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642070144, 3642070207, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642070208, 3642070271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642070272, 3642070527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642070528, 3642073087, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642073088, 3642077183, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642077184, 3642081279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642081280, 3642085375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642085376, 3642089471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642089472, 3642093567, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642093568, 3642097663, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642097664, 3642101759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642101760, 3642105855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642105856, 3642109951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642109952, 3642110687, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110688, 3642110719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110720, 3642110723, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110724, 3642110847, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110848, 3642110863, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110864, 3642110911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110912, 3642110943, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110944, 3642110975, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642110976, 3642111023, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642111024, 3642111231, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642111232, 3642111263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642111264, 3642111359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642111360, 3642111486, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642111487, 3642111487, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642111488, 3642111967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642111968, 3642111999, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642112000, 3642113022, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642113023, 3642113023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642113024, 3642113278, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642113279, 3642113279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642113280, 3642113919, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642113920, 3642114015, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642114016, 3642114047, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642114048, 3642118143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642118144, 3642122239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642122240, 3642126335, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642126336, 3642130431, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642130432, 3642134527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642134528, 3642138623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642138624, 3642142719, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642142720, 3642146815, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642146816, 3642150911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642150912, 3642163199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642163200, 3642167295, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642167296, 3642171391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642171392, 3642175487, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642175488, 3642179583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642179584, 3642187775, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642187776, 3642190591, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642190592, 3642190623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642190624, 3642191423, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191424, 3642191455, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191456, 3642191487, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191488, 3642191519, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191520, 3642191551, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191552, 3642191583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191584, 3642191615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191616, 3642191647, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191648, 3642191679, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191680, 3642191711, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191712, 3642191743, N'BR', N'Brazil') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191744, 3642191871, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642191872, 3642195967, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642195968, 3642204159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642204160, 3642208255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642208256, 3642212351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642212352, 3642216447, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642216448, 3642220543, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642220544, 3642224639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642224640, 3642228735, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642228736, 3642232831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642232832, 3642236927, N'CS', N'Serbia and Montenegro') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642236928, 3642241023, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642241024, 3642245119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642245120, 3642249215, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642249216, 3642253311, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642253312, 3642257407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642257408, 3642261503, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642261504, 3642265599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642265600, 3642266367, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642266368, 3642266623, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642266624, 3642268927, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642268928, 3642269183, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642269184, 3642269695, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642269696, 3642273791, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642273792, 3642277887, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642277888, 3642290175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642290176, 3642294271, N'AL', N'Albania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642294272, 3642298367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642298368, 3642302463, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642302464, 3642306559, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642306560, 3642310655, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642310656, 3642314751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642314752, 3642318847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642318848, 3642322943, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642322944, 3642327039, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642327040, 3642331135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642331136, 3642335231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642335232, 3642339327, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642339328, 3642343423, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642343424, 3642347519, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642347520, 3642351615, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642351616, 3642355711, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642355712, 3642359807, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642359808, 3642367999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642368000, 3642376191, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642376192, 3642380287, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642380288, 3642384383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642384384, 3642388479, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642388480, 3642392575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642392576, 3642396671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642396672, 3642404863, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642404864, 3642408959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642408960, 3642413055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642413056, 3642414591, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642414592, 3642417151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642417152, 3642421247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642421248, 3642425343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642425344, 3642429439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642429440, 3642433535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642433536, 3642435583, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642435584, 3642436607, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642436608, 3642437119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642437120, 3642437631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642437632, 3642439423, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642439424, 3642439459, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642439460, 3642439463, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642439464, 3642439471, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642439472, 3642439487, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642439488, 3642439495, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642439496, 3642440447, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642440448, 3642440451, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642440452, 3642441727, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642441728, 3642449919, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642449920, 3642454015, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642454016, 3642458111, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642458112, 3642462207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642462208, 3642466303, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642466304, 3642474495, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642474496, 3642478591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642478592, 3642482687, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642482688, 3642490879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642490880, 3642494975, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642494976, 3642499071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642499072, 3642503167, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642503168, 3642507263, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642507264, 3642511359, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642511360, 3642515455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642515456, 3642519551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642519552, 3642523647, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642523648, 3642527743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642527744, 3642531839, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642531840, 3642532351, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642532352, 3642532607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642532608, 3642532863, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642532864, 3642535935, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642535936, 3642540031, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642540032, 3642544127, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642544128, 3642548223, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642548224, 3642552319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642552320, 3642552639, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642552640, 3642552655, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642552656, 3642552663, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642552664, 3642552671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642552672, 3642552687, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642552688, 3642553343, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642553344, 3642553379, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642553380, 3642553383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642553384, 3642553407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642553408, 3642553423, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642553424, 3642553519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642553520, 3642553855, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642553856, 3642554367, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554368, 3642554375, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554376, 3642554383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554384, 3642554623, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554624, 3642554655, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554656, 3642554675, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554676, 3642554679, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554680, 3642554799, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554800, 3642554807, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554808, 3642554847, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554848, 3642554879, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554880, 3642554923, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642554924, 3642555135, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642555136, 3642555215, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642555216, 3642555391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642555392, 3642555423, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642555424, 3642555647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642555648, 3642555679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642555680, 3642556415, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642556416, 3642560511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642560512, 3642564607, N'KG', N'Kyrgyzstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642564608, 3642568703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642568704, 3642572799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642572800, 3642576895, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642576896, 3642580991, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642580992, 3642585087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642585088, 3642585855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642585856, 3642586111, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642586112, 3642589183, N'UZ', N'Uzbekistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642589184, 3642593279, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642593280, 3642597375, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642597376, 3642601471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642601472, 3642605567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642605568, 3642609663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642609664, 3642613759, N'DZ', N'Algeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642613760, 3642617855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642617856, 3642621951, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642621952, 3642626047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642626048, 3642630143, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642630144, 3642634239, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642634240, 3642638335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642638336, 3642642431, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642642432, 3642646527, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642646528, 3642650623, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642650624, 3642654719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642654720, 3642662911, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642662912, 3642667007, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642667008, 3642671103, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642671104, 3642675199, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642675200, 3642679295, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642679296, 3642683391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642683392, 3642687487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642687488, 3642691583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642691584, 3642695679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642695680, 3642699775, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642699776, 3642703871, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642703872, 3642707967, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642707968, 3642712063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642712064, 3642716159, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642716160, 3642720255, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642720256, 3642728447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642728448, 3642736639, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642736640, 3642740735, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642740736, 3642744831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642744832, 3642753023, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642753024, 3642830671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642830672, 3642830687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3642830688, 3643801599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3643801600, 3644031487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644031488, 3644031743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644031744, 3644033023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644033024, 3644033151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644033152, 3644033279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644033280, 3644033407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644033408, 3644063743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644063744, 3644325887, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644325888, 3644588031, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644588032, 3644719103, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644719104, 3644850175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644850176, 3644854271, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644854272, 3644858367, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644858368, 3644862463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644862464, 3644866559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644866560, 3644871167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644871168, 3644871423, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644871424, 3644874751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644874752, 3644878847, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644878848, 3644887039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644887040, 3644891135, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644891136, 3644895231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644895232, 3644899327, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644899328, 3644903423, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644903424, 3644907519, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644907520, 3644908983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644908984, 3644908991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644908992, 3644911615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644911616, 3644915711, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644915712, 3644919807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644919808, 3644923903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644923904, 3644932095, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644932096, 3644936191, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644936192, 3644940287, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644940288, 3644948479, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644948480, 3644952575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644952576, 3644960767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644960768, 3644964863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644964864, 3644968959, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644968960, 3644973055, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644973056, 3644977151, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644977152, 3644981247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644981248, 3644985343, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644985344, 3644989439, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644989440, 3644997631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3644997632, 3645005823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645005824, 3645009919, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645009920, 3645014015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645014016, 3645018111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645018112, 3645022207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645022208, 3645030399, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645030400, 3645038591, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645038592, 3645046783, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645046784, 3645050879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645050880, 3645050987, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645050988, 3645050991, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645050992, 3645050995, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645050996, 3645051003, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051004, 3645051007, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051008, 3645051155, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051156, 3645051199, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051200, 3645051391, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051392, 3645051647, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051648, 3645051711, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051712, 3645051719, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051720, 3645051727, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051728, 3645051743, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051744, 3645051775, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051776, 3645051871, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051872, 3645051891, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051892, 3645051895, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051896, 3645051903, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645051904, 3645052031, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052032, 3645052035, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052036, 3645052039, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052040, 3645052043, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052044, 3645052047, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052048, 3645052095, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052096, 3645052423, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052424, 3645052479, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052480, 3645052575, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052576, 3645052599, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052600, 3645052607, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052608, 3645052671, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052672, 3645052927, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645052928, 3645053087, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053088, 3645053095, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053096, 3645053139, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053140, 3645053143, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053144, 3645053183, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053184, 3645053287, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053288, 3645053375, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053376, 3645053407, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053408, 3645053471, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053472, 3645053631, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053632, 3645053695, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053696, 3645053712, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053713, 3645053759, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053760, 3645053823, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053824, 3645053855, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053856, 3645053887, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645053888, 3645054463, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645054464, 3645054719, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645054720, 3645054975, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645054976, 3645059071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645059072, 3645063167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645063168, 3645067263, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645067264, 3645071359, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645071360, 3645075455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645075456, 3645079551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645079552, 3645083647, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645083648, 3645087743, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645087744, 3645091839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645091840, 3645095935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645095936, 3645104127, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645104128, 3645112319, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645112320, 3645113631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645113632, 3645113639, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645113640, 3645116415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645116416, 3645120511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645120512, 3645124607, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645124608, 3645128703, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645128704, 3645132799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645132800, 3645136895, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645136896, 3645145087, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645145088, 3645149183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645149184, 3645150615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645150616, 3645150623, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645150624, 3645150975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645150976, 3645151231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645151232, 3645151263, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645151264, 3645151743, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645151744, 3645151771, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645151772, 3645161471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645161472, 3645164031, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645164032, 3645165567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645165568, 3645169663, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645169664, 3645173759, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645173760, 3645174543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645174544, 3645174551, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645174552, 3645177855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645177856, 3645181951, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645181952, 3645183103, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645183104, 3645183167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645183168, 3645186047, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645186048, 3645190143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645190144, 3645194239, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645194240, 3645202431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645202432, 3645206527, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645206528, 3645210623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645210624, 3645214719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645214720, 3645218815, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645218816, 3645222911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645222912, 3645227007, N'KW', N'Kuwait') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645227008, 3645235199, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645235200, 3645243391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645243392, 3645247487, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645247488, 3645251583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645251584, 3645255679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645255680, 3645259775, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645259776, 3645263871, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645263872, 3645267967, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645267968, 3645276159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645276160, 3645280255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645280256, 3645281279, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645281280, 3645281535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645281536, 3645281791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645281792, 3645281919, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645281920, 3645282047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645282048, 3645282303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645282304, 3645284351, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645284352, 3645288447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645288448, 3645292543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645292544, 3645295103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645295104, 3645295359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645295360, 3645296639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645296640, 3645300735, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645300736, 3645301247, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645301248, 3645303039, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645303040, 3645304831, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645304832, 3645308927, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645308928, 3645313023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645313024, 3645317119, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645317120, 3645321215, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645321216, 3645325311, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645325312, 3645329407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645329408, 3645333503, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645333504, 3645334015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645334016, 3645335039, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645335040, 3645336927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645336928, 3645336935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645336936, 3645336975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645336976, 3645337007, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645337008, 3645337023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645337024, 3645337087, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645337088, 3645337599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645337600, 3645337631, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645337632, 3645337663, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645337664, 3645339903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645339904, 3645339967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645339968, 3645340447, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645340448, 3645340543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645340544, 3645341439, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645341440, 3645341695, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645341696, 3645345791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645345792, 3645349887, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645349888, 3645353983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645353984, 3645358079, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645358080, 3645362175, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645362176, 3645366271, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645366272, 3645370367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645370368, 3645374463, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645374464, 3645378559, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645378560, 3645382655, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645382656, 3645386751, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645386752, 3645390847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645390848, 3645399039, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645399040, 3645403135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645403136, 3645404671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645404672, 3645405183, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645405184, 3645411327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645411328, 3645415423, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645415424, 3645423615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645423616, 3645431807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645431808, 3645435903, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645435904, 3645439999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645440000, 3645444095, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645444096, 3645448191, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645448192, 3645456383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645456384, 3645456639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645456640, 3645456895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645456896, 3645457407, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645457408, 3645460479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645460480, 3645464575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645464576, 3645468671, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645468672, 3645472767, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645472768, 3645476863, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645476864, 3645480959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645480960, 3645485055, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645485056, 3645489151, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645489152, 3645493247, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645493248, 3645501439, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645501440, 3645505535, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645505536, 3645506559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645506560, 3645506815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645506816, 3645507583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645507584, 3645507587, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645507588, 3645507591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645507592, 3645507595, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645507596, 3645507599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645507600, 3645507607, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645507608, 3645509631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645509632, 3645513727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645513728, 3645517823, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645517824, 3645521919, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645521920, 3645526015, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645526016, 3645530111, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645530112, 3645534207, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645534208, 3645544959, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645544960, 3645544991, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645544992, 3645545087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645545088, 3645545215, N'TJ', N'Tajikistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645545216, 3645550591, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645550592, 3645552471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645552472, 3645552479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645552480, 3645558783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645558784, 3645562879, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645562880, 3645563135, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645563136, 3645564671, N'LS', N'Lesotho') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645564672, 3645564927, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645564928, 3645566975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645566976, 3645571071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645571072, 3645575167, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645575168, 3645579263, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645579264, 3645583359, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645583360, 3645587455, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645587456, 3645595647, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645595648, 3645597751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645597752, 3645597759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645597760, 3645603839, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645603840, 3645612031, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645612032, 3645616127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645616128, 3645620223, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645620224, 3645624319, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645624320, 3645628415, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645628416, 3645636607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645636608, 3645640703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645640704, 3645644799, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645644800, 3645648895, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645648896, 3645652991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645652992, 3645657087, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645657088, 3645661183, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645661184, 3645665279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645665280, 3645669375, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645669376, 3645669631, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645669632, 3645669855, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645669856, 3645670399, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645670400, 3645670911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645670912, 3645673471, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645673472, 3645673535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645673536, 3645675263, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645675264, 3645675519, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645675520, 3645675760, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645675761, 3645675775, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645675776, 3645676016, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645676017, 3645676031, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645676032, 3645677567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645677568, 3645681663, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645681664, 3645685759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645685760, 3645689855, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645689856, 3645693951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645693952, 3645698047, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645698048, 3645702143, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645702144, 3645706239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645706240, 3645710335, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645710336, 3645714431, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645714432, 3645718527, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645718528, 3645722623, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645722624, 3645726719, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645726720, 3645734911, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645734912, 3645743103, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645743104, 3645747199, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645747200, 3645751295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645751296, 3645755391, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645755392, 3645759487, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645759488, 3645763583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763584, 3645763585, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763586, 3645763587, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763588, 3645763588, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763589, 3645763589, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763590, 3645763590, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763591, 3645763591, N'IT', N'Italy') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763592, 3645763592, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763593, 3645763593, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763594, 3645763594, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763595, 3645763595, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763596, 3645763597, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763598, 3645763598, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763599, 3645763601, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763602, 3645763603, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763604, 3645763609, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763610, 3645763610, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763611, 3645763612, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763613, 3645763613, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763614, 3645763614, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763615, 3645763615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763616, 3645763616, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763617, 3645763617, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763618, 3645763618, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763619, 3645763619, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763620, 3645763620, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763621, 3645763621, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763622, 3645763622, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763623, 3645763623, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763624, 3645763624, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763625, 3645763625, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763626, 3645763626, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763627, 3645763627, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763628, 3645763629, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763630, 3645763631, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763632, 3645763633, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763634, 3645763634, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763635, 3645763635, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763636, 3645763636, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763637, 3645763637, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763638, 3645763638, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763639, 3645763639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763640, 3645763640, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763641, 3645763641, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763642, 3645763642, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763643, 3645763644, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763645, 3645763645, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763646, 3645763647, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763648, 3645763648, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763649, 3645763649, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763650, 3645763650, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763651, 3645763651, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763652, 3645763653, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763654, 3645763654, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763655, 3645763660, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763661, 3645763662, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763663, 3645763663, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763664, 3645763665, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763666, 3645763666, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763667, 3645763667, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763668, 3645763668, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763669, 3645763669, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763670, 3645763670, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763671, 3645763671, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763672, 3645763672, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763673, 3645763673, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763674, 3645763674, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763675, 3645763675, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763676, 3645763676, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763677, 3645763678, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763679, 3645763679, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763680, 3645763680, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763681, 3645763681, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763682, 3645763682, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763683, 3645763683, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763684, 3645763684, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763685, 3645763685, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763686, 3645763686, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763687, 3645763687, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763688, 3645763690, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763691, 3645763691, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763692, 3645763692, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763693, 3645763693, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763694, 3645763694, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763695, 3645763696, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763697, 3645763697, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763698, 3645763698, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763699, 3645763699, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763700, 3645763700, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763701, 3645763701, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763702, 3645763702, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763703, 3645763703, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763704, 3645763705, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763706, 3645763706, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763707, 3645763707, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763708, 3645763708, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763709, 3645763709, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763710, 3645763710, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763711, 3645763715, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763716, 3645763716, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763717, 3645763717, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763718, 3645763718, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763719, 3645763719, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763720, 3645763720, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763721, 3645763721, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763722, 3645763722, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763723, 3645763723, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763724, 3645763726, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763727, 3645763727, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763728, 3645763728, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763729, 3645763730, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763731, 3645763732, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763733, 3645763733, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763734, 3645763734, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763735, 3645763735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763736, 3645763736, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763737, 3645763737, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763738, 3645763738, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763739, 3645763741, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763742, 3645763742, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763743, 3645763743, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763744, 3645763744, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763745, 3645763745, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763746, 3645763746, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763747, 3645763752, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763753, 3645763753, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763754, 3645763755, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763756, 3645763756, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763757, 3645763757, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763758, 3645763758, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763759, 3645763760, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763761, 3645763761, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763762, 3645763762, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763763, 3645763764, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763765, 3645763765, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763766, 3645763766, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763767, 3645763768, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763769, 3645763769, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763770, 3645763770, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763771, 3645763771, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763772, 3645763773, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763774, 3645763774, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763775, 3645763775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763776, 3645763776, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763777, 3645763777, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763778, 3645763779, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763780, 3645763780, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763781, 3645763781, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763782, 3645763782, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763783, 3645763783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763784, 3645763784, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763785, 3645763785, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763786, 3645763786, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763787, 3645763787, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763788, 3645763788, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763789, 3645763789, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763790, 3645763790, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763791, 3645763791, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763792, 3645763792, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763793, 3645763793, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763794, 3645763794, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763795, 3645763795, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763796, 3645763796, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763797, 3645763797, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763798, 3645763798, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763799, 3645763801, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763802, 3645763802, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763803, 3645763803, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763804, 3645763806, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763807, 3645763807, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763808, 3645763808, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763809, 3645763809, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763810, 3645763810, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763811, 3645763813, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763814, 3645763814, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763815, 3645763816, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763817, 3645763817, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763818, 3645763818, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763819, 3645763822, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763823, 3645763823, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763824, 3645763825, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763826, 3645763826, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763827, 3645763827, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763828, 3645763841, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763842, 3645763842, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763843, 3645763845, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763846, 3645763846, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763847, 3645763847, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763848, 3645763849, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763850, 3645763850, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763851, 3645763851, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763852, 3645763852, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763853, 3645763853, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763854, 3645763855, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763856, 3645763858, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763859, 3645763859, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763860, 3645763860, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763861, 3645763861, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763862, 3645763862, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763863, 3645763864, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763865, 3645763865, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763866, 3645763866, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763867, 3645763868, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763869, 3645763869, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763870, 3645763870, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763871, 3645763874, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763875, 3645763875, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763876, 3645763876, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763877, 3645763877, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763878, 3645763879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763880, 3645763881, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763882, 3645763882, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763883, 3645763883, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763884, 3645763884, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763885, 3645763886, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763887, 3645763887, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763888, 3645763888, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763889, 3645763889, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763890, 3645763890, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763891, 3645763894, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763895, 3645763895, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763896, 3645763896, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763897, 3645763897, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763898, 3645763898, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763899, 3645763899, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763900, 3645763900, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763901, 3645763902, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763903, 3645763903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763904, 3645763904, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763905, 3645763905, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763906, 3645763906, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763907, 3645763908, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763909, 3645763909, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763910, 3645763910, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763911, 3645763911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763912, 3645763912, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763913, 3645763913, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763914, 3645763914, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763915, 3645763915, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763916, 3645763916, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763917, 3645763918, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763919, 3645763919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763920, 3645763920, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763921, 3645763921, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763922, 3645763922, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763923, 3645763923, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763924, 3645763924, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763925, 3645763926, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763927, 3645763927, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763928, 3645763928, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763929, 3645763929, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763930, 3645763930, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763931, 3645763931, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763932, 3645763932, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763933, 3645763933, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763934, 3645763934, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763935, 3645763935, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763936, 3645763936, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763937, 3645763937, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763938, 3645763938, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763939, 3645763939, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763940, 3645763941, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763942, 3645763942, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763943, 3645763943, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763944, 3645763944, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763945, 3645763945, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763946, 3645763947, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763948, 3645763949, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763950, 3645763950, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763951, 3645763951, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763952, 3645763952, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763953, 3645763953, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763954, 3645763954, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763955, 3645763955, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763956, 3645763956, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763957, 3645763957, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763958, 3645763958, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763959, 3645763959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763960, 3645763960, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763961, 3645763961, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763962, 3645763962, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763963, 3645763964, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763965, 3645763965, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763966, 3645763966, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763967, 3645763967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763968, 3645763968, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763969, 3645763969, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763970, 3645763970, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763971, 3645763971, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763972, 3645763972, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763973, 3645763973, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763974, 3645763974, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763975, 3645763975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763976, 3645763976, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763977, 3645763977, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763978, 3645763978, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763979, 3645763979, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763980, 3645763981, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763982, 3645763982, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763983, 3645763984, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763985, 3645763985, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763986, 3645763986, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763987, 3645763987, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763988, 3645763988, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763989, 3645763989, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763990, 3645763991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763992, 3645763992, N'NL', N'Netherlands') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763993, 3645763993, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763994, 3645763994, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763995, 3645763995, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645763996, 3645764000, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764001, 3645764001, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764002, 3645764005, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764006, 3645764006, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764007, 3645764007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764008, 3645764008, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764009, 3645764010, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764011, 3645764012, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764013, 3645764013, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764014, 3645764015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764016, 3645764016, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764017, 3645764017, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764018, 3645764018, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764019, 3645764019, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764020, 3645764020, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764021, 3645764021, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764022, 3645764022, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764023, 3645764023, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764024, 3645764026, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764027, 3645764027, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764028, 3645764028, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764029, 3645764029, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764030, 3645764030, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764031, 3645764031, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764032, 3645764032, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764033, 3645764033, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764034, 3645764034, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764035, 3645764035, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764036, 3645764037, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764038, 3645764038, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764039, 3645764039, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764040, 3645764040, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764041, 3645764041, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764042, 3645764042, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764043, 3645764043, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764044, 3645764044, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764045, 3645764045, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764046, 3645764046, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764047, 3645764047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764048, 3645764048, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764049, 3645764049, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764050, 3645764051, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764052, 3645764052, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764053, 3645764055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764056, 3645764056, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764057, 3645764057, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764058, 3645764058, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764059, 3645764059, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764060, 3645764060, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764061, 3645764061, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764062, 3645764062, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764063, 3645764063, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764064, 3645764064, N'SI', N'Slovenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764065, 3645764065, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764066, 3645764066, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764067, 3645764067, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764068, 3645764068, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764069, 3645764069, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764070, 3645764070, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764071, 3645764074, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764075, 3645764075, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764076, 3645764076, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764077, 3645764078, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764079, 3645764079, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764080, 3645764080, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764081, 3645764081, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764082, 3645764084, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764085, 3645764085, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764086, 3645764086, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764087, 3645764087, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764088, 3645764093, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764094, 3645764094, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764095, 3645764097, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764098, 3645764098, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764099, 3645764099, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764100, 3645764100, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764101, 3645764101, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764102, 3645764102, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764103, 3645764103, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764104, 3645764105, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764106, 3645764106, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764107, 3645764107, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764108, 3645764108, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764109, 3645764109, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764110, 3645764110, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764111, 3645764111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764112, 3645764112, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764113, 3645764114, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764115, 3645764115, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764116, 3645764116, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764117, 3645764117, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764118, 3645764118, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764119, 3645764119, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764120, 3645764120, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764121, 3645764121, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764122, 3645764122, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764123, 3645764123, N'PL', N'Poland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764124, 3645764124, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764125, 3645764125, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764126, 3645764126, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764127, 3645764127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764128, 3645764128, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764129, 3645764129, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764130, 3645764130, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764131, 3645764131, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764132, 3645764132, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764133, 3645764133, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764134, 3645764134, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764135, 3645764135, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764136, 3645764136, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764137, 3645764137, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764138, 3645764138, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764139, 3645764139, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764140, 3645764140, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764141, 3645764141, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764142, 3645764142, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764143, 3645764145, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764146, 3645764147, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764148, 3645764148, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764149, 3645764149, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764150, 3645764150, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764151, 3645764154, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764155, 3645764155, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764156, 3645764156, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764157, 3645764158, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764159, 3645764159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764160, 3645764160, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764161, 3645764161, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764162, 3645764162, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764163, 3645764163, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764164, 3645764164, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764165, 3645764165, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764166, 3645764166, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764167, 3645764167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764168, 3645764168, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764169, 3645764169, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764170, 3645764170, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764171, 3645764172, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764173, 3645764173, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764174, 3645764174, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764175, 3645764175, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764176, 3645764176, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764177, 3645764177, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764178, 3645764178, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764179, 3645764179, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764180, 3645764181, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764182, 3645764182, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764183, 3645764184, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764185, 3645764185, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764186, 3645764186, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764187, 3645764187, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764188, 3645764188, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764189, 3645764189, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764190, 3645764190, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764191, 3645764191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764192, 3645764192, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764193, 3645764194, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764195, 3645764195, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764196, 3645764196, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764197, 3645764197, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764198, 3645764198, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764199, 3645764199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764200, 3645764200, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764201, 3645764201, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764202, 3645764202, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764203, 3645764203, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764204, 3645764204, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764205, 3645764205, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764206, 3645764206, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764207, 3645764207, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764208, 3645764208, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764209, 3645764210, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764211, 3645764211, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764212, 3645764212, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764213, 3645764213, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764214, 3645764214, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764215, 3645764216, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764217, 3645764217, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764218, 3645764218, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764219, 3645764219, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764220, 3645764220, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764221, 3645764221, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764222, 3645764222, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764223, 3645764224, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764225, 3645764226, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764227, 3645764227, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764228, 3645764228, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764229, 3645764229, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764230, 3645764230, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764231, 3645764231, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764232, 3645764232, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764233, 3645764233, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764234, 3645764234, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764235, 3645764235, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764236, 3645764236, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764237, 3645764238, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764239, 3645764240, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764241, 3645764241, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764242, 3645764242, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764243, 3645764243, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764244, 3645764244, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764245, 3645764246, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764247, 3645764247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764248, 3645764249, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764250, 3645764250, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764251, 3645764251, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764252, 3645764253, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764254, 3645764254, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764255, 3645764255, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764256, 3645764257, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764258, 3645764258, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764259, 3645764259, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764260, 3645764260, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764261, 3645764261, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764262, 3645764262, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764263, 3645764264, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764265, 3645764265, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764266, 3645764266, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764267, 3645764268, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764269, 3645764270, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764271, 3645764271, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764272, 3645764272, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764273, 3645764273, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764274, 3645764274, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764275, 3645764275, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764276, 3645764277, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764278, 3645764278, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764279, 3645764279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764280, 3645764280, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764281, 3645764281, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764282, 3645764282, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764283, 3645764284, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764285, 3645764285, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764286, 3645764286, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764287, 3645764287, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764288, 3645764288, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764289, 3645764289, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764290, 3645764290, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764291, 3645764291, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764292, 3645764292, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764293, 3645764294, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764295, 3645764295, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764296, 3645764297, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764298, 3645764298, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764299, 3645764299, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764300, 3645764300, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764301, 3645764301, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764302, 3645764302, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764303, 3645764303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764304, 3645764304, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764305, 3645764305, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764306, 3645764306, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764307, 3645764307, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764308, 3645764308, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764309, 3645764309, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764310, 3645764310, N'ZA', N'South Africa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764311, 3645764313, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764314, 3645764315, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764316, 3645764316, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764317, 3645764317, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764318, 3645764318, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764319, 3645764319, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764320, 3645764320, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764321, 3645764321, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764322, 3645764322, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764323, 3645764323, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764324, 3645764324, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764325, 3645764325, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764326, 3645764326, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764327, 3645764327, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764328, 3645764328, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764329, 3645764329, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764330, 3645764330, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764331, 3645764331, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764332, 3645764332, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764333, 3645764333, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764334, 3645764334, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764335, 3645764335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764336, 3645764336, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764337, 3645764337, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764338, 3645764338, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764339, 3645764340, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764341, 3645764341, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764342, 3645764342, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764343, 3645764343, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764344, 3645764345, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764346, 3645764346, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764347, 3645764347, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764348, 3645764348, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764349, 3645764349, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764350, 3645764350, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764351, 3645764356, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764357, 3645764357, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764358, 3645764358, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764359, 3645764359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764360, 3645764360, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764361, 3645764361, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764362, 3645764362, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764363, 3645764364, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764365, 3645764365, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764366, 3645764367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764368, 3645764368, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764369, 3645764369, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764370, 3645764370, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764371, 3645764371, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764372, 3645764373, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764374, 3645764375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764376, 3645764377, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764378, 3645764378, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764379, 3645764380, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764381, 3645764381, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764382, 3645764382, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764383, 3645764383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764384, 3645764384, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764385, 3645764388, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764389, 3645764389, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764390, 3645764390, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764391, 3645764391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764392, 3645764392, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764393, 3645764393, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764394, 3645764394, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764395, 3645764396, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764397, 3645764397, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764398, 3645764398, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764399, 3645764399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764400, 3645764401, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764402, 3645764403, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764404, 3645764406, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764407, 3645764408, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764409, 3645764409, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764410, 3645764410, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764411, 3645764411, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764412, 3645764412, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764413, 3645764413, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764414, 3645764417, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764418, 3645764418, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764419, 3645764419, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764420, 3645764420, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764421, 3645764421, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764422, 3645764422, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764423, 3645764423, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764424, 3645764424, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764425, 3645764425, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764426, 3645764433, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764434, 3645764434, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764435, 3645764435, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764436, 3645764436, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764437, 3645764437, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764438, 3645764439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764440, 3645764440, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764441, 3645764441, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764442, 3645764442, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764443, 3645764444, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764445, 3645764445, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764446, 3645764446, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764447, 3645764456, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764457, 3645764457, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764458, 3645764458, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764459, 3645764459, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764460, 3645764462, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764463, 3645764463, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764464, 3645764464, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764465, 3645764465, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764466, 3645764466, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764467, 3645764467, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764468, 3645764468, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764469, 3645764470, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764471, 3645764471, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764472, 3645764472, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764473, 3645764473, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764474, 3645764474, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764475, 3645764475, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764476, 3645764476, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764477, 3645764477, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764478, 3645764478, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764479, 3645764479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764480, 3645764481, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764482, 3645764482, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764483, 3645764483, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764484, 3645764484, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764485, 3645764485, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764486, 3645764486, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764487, 3645764487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764488, 3645764490, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764491, 3645764491, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764492, 3645764492, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764493, 3645764493, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764494, 3645764494, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764495, 3645764495, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764496, 3645764496, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764497, 3645764497, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764498, 3645764498, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764499, 3645764500, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764501, 3645764501, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764502, 3645764505, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764506, 3645764506, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764507, 3645764507, N'ES', N'Spain') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764508, 3645764508, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645764509, 3645765127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765128, 3645765131, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765132, 3645765135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765136, 3645765139, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765140, 3645765143, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765144, 3645765147, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765148, 3645765151, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765152, 3645765155, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765156, 3645765171, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765172, 3645765175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765176, 3645765179, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765180, 3645765183, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765184, 3645765187, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765188, 3645765195, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765196, 3645765199, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765200, 3645765207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765208, 3645765211, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765212, 3645765219, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765220, 3645765223, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765224, 3645765227, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765228, 3645765231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765232, 3645765235, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765236, 3645765239, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765240, 3645765243, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765244, 3645765247, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765248, 3645765251, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765252, 3645765255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765256, 3645765259, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765260, 3645765263, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765264, 3645765267, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765268, 3645765271, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765272, 3645765275, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765276, 3645765279, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765280, 3645765283, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765284, 3645765287, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765288, 3645765291, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765292, 3645765295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765296, 3645765299, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765300, 3645765303, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765304, 3645765311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765312, 3645765315, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765316, 3645765319, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765320, 3645765323, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765324, 3645765331, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765332, 3645765335, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765336, 3645765339, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765340, 3645765343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765344, 3645765347, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765348, 3645765351, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765352, 3645765355, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765356, 3645765359, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765360, 3645765363, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765364, 3645765367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765368, 3645765371, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765372, 3645765375, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765376, 3645765379, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765380, 3645765383, N'BM', N'Bermuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765384, 3645765387, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765388, 3645765391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765392, 3645765403, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765404, 3645765407, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765408, 3645765411, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765412, 3645765415, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765416, 3645765419, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765420, 3645765423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765424, 3645765427, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765428, 3645765443, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765444, 3645765447, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765448, 3645765451, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765452, 3645765455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765456, 3645765459, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765460, 3645765463, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765464, 3645765467, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765468, 3645765471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765472, 3645765475, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765476, 3645765487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765488, 3645765491, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765492, 3645765495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765496, 3645765499, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765500, 3645765503, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765504, 3645765507, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765508, 3645765511, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765512, 3645765519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765520, 3645765523, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765524, 3645765527, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765528, 3645765535, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765536, 3645765539, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765540, 3645765543, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765544, 3645765547, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765548, 3645765555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765556, 3645765559, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765560, 3645765563, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765564, 3645765567, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765568, 3645765571, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765572, 3645765575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765576, 3645765579, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765580, 3645765583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765584, 3645765591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765592, 3645765595, N'IE', N'Ireland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765596, 3645765611, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765612, 3645765615, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765616, 3645765619, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765620, 3645765623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765624, 3645765627, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765628, 3645765639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765640, 3645765643, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765644, 3645765647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765648, 3645765651, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765652, 3645765667, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765668, 3645765675, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765676, 3645765679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765680, 3645765683, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765684, 3645765687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765688, 3645765691, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765692, 3645765695, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765696, 3645765703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765704, 3645765707, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765708, 3645765711, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645765712, 3645767187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767188, 3645767188, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767189, 3645767193, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767194, 3645767194, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767195, 3645767195, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767196, 3645767196, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767197, 3645767197, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767198, 3645767198, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767199, 3645767208, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767209, 3645767209, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767210, 3645767222, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767223, 3645767223, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767224, 3645767240, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767241, 3645767241, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767242, 3645767426, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767427, 3645767427, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767428, 3645767428, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767429, 3645767429, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767430, 3645767431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767432, 3645767433, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767434, 3645767434, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767435, 3645767448, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767449, 3645767449, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767450, 3645767455, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767456, 3645767502, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767503, 3645767503, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767504, 3645767679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645767680, 3645771775, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645771776, 3645779967, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645779968, 3645784063, N'PS', N'Palestinian Territory, Occupied') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645784064, 3645788159, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645788160, 3645792255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645792256, 3645796351, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645796352, 3645800447, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645800448, 3645804543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645804544, 3645808639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645808640, 3645812735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645812736, 3645816831, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645816832, 3645825023, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645825024, 3645829119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645829120, 3645833215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645833216, 3645837311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645837312, 3645841407, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645841408, 3645845503, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645845504, 3645849599, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645849600, 3645857791, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645857792, 3645865983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645865984, 3645870079, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645870080, 3645874175, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645874176, 3645875711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645875712, 3645877247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645877248, 3645878271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645878272, 3645883647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645883648, 3645886463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645886464, 3645888127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645888128, 3645888143, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645888144, 3645888159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645888160, 3645888191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645888192, 3645888639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645888640, 3645888703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645888704, 3645894655, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645894656, 3645898751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3645898752, 3646501711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3646501712, 3646501719, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3646501720, 3646513103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3646513104, 3646513111, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3646513112, 3646519103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3646519104, 3646519135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3646519136, 3646947327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3646947328, 3647209471, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647209472, 3647602687, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647602688, 3647658751, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647658752, 3647659007, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647659008, 3647665151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647665152, 3647665407, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647665408, 3647722751, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647722752, 3647722879, N'BY', N'Belarus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647722880, 3647733759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647733760, 3647841487, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647841488, 3647841488, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647841489, 3647864831, N'FR', N'France') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647864832, 3647864863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647864864, 3647864879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647864880, 3647864887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647864888, 3647864935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647864936, 3647864943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647864944, 3647865071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865072, 3647865087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865088, 3647865127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865128, 3647865135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865136, 3647865143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865144, 3647865151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865152, 3647865159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865160, 3647865167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865168, 3647865223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865224, 3647865231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865232, 3647865327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865328, 3647865343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865344, 3647865391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865392, 3647865399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865400, 3647865551, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865552, 3647865559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865560, 3647865567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865568, 3647865575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865576, 3647865687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865688, 3647865703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865704, 3647865735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865736, 3647865743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865744, 3647865783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865784, 3647865791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865792, 3647865895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865896, 3647865903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865904, 3647865935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865936, 3647865951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865952, 3647865959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865960, 3647865967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647865968, 3647866039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866040, 3647866047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866048, 3647866087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866088, 3647866111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866112, 3647866151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866152, 3647866159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866160, 3647866175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866176, 3647866183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866184, 3647866279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866280, 3647866287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866288, 3647866311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866312, 3647866319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866320, 3647866327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866328, 3647866367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866368, 3647866391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866392, 3647866399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866400, 3647866463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866464, 3647866479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866480, 3647866535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866536, 3647866551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866552, 3647866559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866560, 3647866567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866568, 3647866591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866592, 3647866599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866600, 3647866663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866664, 3647866671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866672, 3647866727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866728, 3647866735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866736, 3647866743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866744, 3647866751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866752, 3647866815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866816, 3647866823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866824, 3647866863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866864, 3647866871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866872, 3647866975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866976, 3647866983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647866984, 3647867127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867128, 3647867135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867136, 3647867167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867168, 3647867175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867176, 3647867199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867200, 3647867207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867208, 3647867255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867256, 3647867263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867264, 3647867343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867344, 3647867351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867352, 3647867383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867384, 3647867423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867424, 3647867463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867464, 3647867471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867472, 3647867599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867600, 3647867607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867608, 3647867679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867680, 3647867687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867688, 3647867695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867696, 3647867703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867704, 3647867727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867728, 3647867735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647867736, 3647868063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868064, 3647868071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868072, 3647868135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868136, 3647868159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868160, 3647868231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868232, 3647868239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868240, 3647868263, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868264, 3647868271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868272, 3647868287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868288, 3647868295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868296, 3647868367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868368, 3647868375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868376, 3647868383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868384, 3647868391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868392, 3647868399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868400, 3647868415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868416, 3647868431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868432, 3647868447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868448, 3647868479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868480, 3647868487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868488, 3647868639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868640, 3647868647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868648, 3647868663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868664, 3647868703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868704, 3647868711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868712, 3647868719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868720, 3647868727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868728, 3647868735, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868736, 3647868831, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868832, 3647868839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868840, 3647868887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868888, 3647868895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868896, 3647868959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868960, 3647868967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647868968, 3647869071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869072, 3647869087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869088, 3647869279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869280, 3647869287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869288, 3647869375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869376, 3647869383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869384, 3647869407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869408, 3647869415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869416, 3647869423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869424, 3647869439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869440, 3647869455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869456, 3647869463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869464, 3647869511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869512, 3647869519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869520, 3647869567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869568, 3647869575, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869576, 3647869583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869584, 3647869591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869592, 3647869775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869776, 3647869783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869784, 3647869791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869792, 3647869799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869800, 3647869863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869864, 3647869871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869872, 3647869895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869896, 3647869903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869904, 3647869991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647869992, 3647869999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870000, 3647870127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870128, 3647870135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870136, 3647870191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870192, 3647870207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870208, 3647870447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870448, 3647870463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870464, 3647870503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870504, 3647870519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870520, 3647870535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870536, 3647870543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870544, 3647870583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870584, 3647870591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870592, 3647870639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870640, 3647870647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870648, 3647870719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870720, 3647870751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870752, 3647870815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870816, 3647870823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647870824, 3647871039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871040, 3647871047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871048, 3647871055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871056, 3647871071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871072, 3647871103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871104, 3647871119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871120, 3647871127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871128, 3647871135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871136, 3647871151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871152, 3647871167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871168, 3647871191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871192, 3647871199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871200, 3647871215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871216, 3647871231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871232, 3647871287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871288, 3647871295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871296, 3647871303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871304, 3647871311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871312, 3647871351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871352, 3647871367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871368, 3647871407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871408, 3647871431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871432, 3647871447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871448, 3647871455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871456, 3647871471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871472, 3647871487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871488, 3647871631, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647871632, 3647871999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872000, 3647872239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872240, 3647872247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872248, 3647872311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872312, 3647872335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872336, 3647872359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872360, 3647872367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872368, 3647872495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872496, 3647872511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872512, 3647872679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872680, 3647872687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872688, 3647872759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872760, 3647872767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872768, 3647872783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872784, 3647872927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872928, 3647872975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872976, 3647872983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647872984, 3647873075, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647873076, 3647873079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647873080, 3647873095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647873096, 3647873103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647873104, 3647874958, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647874959, 3647874959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647874960, 3647875151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875152, 3647875167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875168, 3647875175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875176, 3647875183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875184, 3647875191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875192, 3647875231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875232, 3647875247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875248, 3647875255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875256, 3647875367, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875368, 3647875375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875376, 3647875379, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875380, 3647875383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875384, 3647875519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875520, 3647875839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647875840, 3647876095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876096, 3647876351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876352, 3647876375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876376, 3647876383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876384, 3647876455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876456, 3647876471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876472, 3647876479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876480, 3647876607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876608, 3647876647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876648, 3647876655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876656, 3647876663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876664, 3647876671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876672, 3647876767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876768, 3647876783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647876784, 3647877439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877440, 3647877447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877448, 3647877543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877544, 3647877559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877560, 3647877635, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877636, 3647877639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877640, 3647877643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877644, 3647877671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877672, 3647877675, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877676, 3647877771, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877772, 3647877775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877776, 3647877875, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877876, 3647877879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877880, 3647877887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647877888, 3647878103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878104, 3647878111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878112, 3647878447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878448, 3647878463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878464, 3647878487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878488, 3647878495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878496, 3647878503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878504, 3647878527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878528, 3647878591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878592, 3647878607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647878608, 3647879679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879680, 3647879695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879696, 3647879703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879704, 3647879807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879808, 3647879839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879840, 3647879867, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879868, 3647879895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879896, 3647879903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647879904, 3647880047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880048, 3647880055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880056, 3647880183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880184, 3647880447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880448, 3647880575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880576, 3647880703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880704, 3647880959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880960, 3647880991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647880992, 3647881015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881016, 3647881023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881024, 3647881199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881200, 3647881215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881216, 3647881271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881272, 3647881279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881280, 3647881823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881824, 3647881855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881856, 3647881983, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881984, 3647881995, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647881996, 3647881999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647882000, 3647882007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647882008, 3647882239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647882240, 3647882751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647882752, 3647883087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883088, 3647883095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883096, 3647883135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883136, 3647883199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883200, 3647883207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883208, 3647883215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883216, 3647883231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883232, 3647883239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883240, 3647883535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883536, 3647883543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883544, 3647883559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883560, 3647883567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883568, 3647883679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883680, 3647883711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647883712, 3647884799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647884800, 3647884807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647884808, 3647884847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647884848, 3647884855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647884856, 3647884915, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647884916, 3647884919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647884920, 3647885055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647885056, 3647885311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647885312, 3647885567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647885568, 3647885599, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647885600, 3647885615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647885616, 3647885823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647885824, 3647886187, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647886188, 3647886191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647886192, 3647886199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647886200, 3647886207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647886208, 3647886271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647886272, 3647886303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647886304, 3647886335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647886336, 3647887359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887360, 3647887427, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887428, 3647887431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887432, 3647887479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887480, 3647887483, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887484, 3647887519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887520, 3647887527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887528, 3647887583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887584, 3647887591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887592, 3647887903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887904, 3647887911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887912, 3647887951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887952, 3647887959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647887960, 3647888151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647888152, 3647888159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647888160, 3647888191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647888192, 3647888199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647888200, 3647888207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647888208, 3647888215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647888216, 3647888895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647888896, 3647889471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647889472, 3647889535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647889536, 3647890215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647890216, 3647890223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647890224, 3647891199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891200, 3647891455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891456, 3647891471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891472, 3647891487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891488, 3647891503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891504, 3647891791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891792, 3647891807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891808, 3647891855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891856, 3647891871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647891872, 3647892383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647892384, 3647892415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647892416, 3647892991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647892992, 3647893135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893136, 3647893183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893184, 3647893199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893200, 3647893503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893504, 3647893511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893512, 3647893519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893520, 3647893527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893528, 3647893535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893536, 3647893543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647893544, 3647894335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647894336, 3647894351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647894352, 3647894719, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647894720, 3647894783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647894784, 3647894911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647894912, 3647894975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647894976, 3647894991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647894992, 3647895007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895008, 3647895023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895024, 3647895039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895040, 3647895311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895312, 3647895327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895328, 3647895359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895360, 3647895399, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895400, 3647895711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895712, 3647895807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647895808, 3647896063, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896064, 3647896351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896352, 3647896399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896400, 3647896407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896408, 3647896415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896416, 3647896423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896424, 3647896511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896512, 3647896519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896520, 3647896527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896528, 3647896535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896536, 3647896559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896560, 3647896567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896568, 3647896631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896632, 3647896647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647896648, 3647897039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647897040, 3647897047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647897048, 3647897215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647897216, 3647897343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647897344, 3647897415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647897416, 3647897423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647897424, 3647901247, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901248, 3647901255, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901256, 3647901259, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901260, 3647901263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901264, 3647901439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901440, 3647901519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901520, 3647901535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901536, 3647901695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901696, 3647901735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901736, 3647901743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901744, 3647901751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901752, 3647901759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901760, 3647901863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901864, 3647901871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901872, 3647901895, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901896, 3647901911, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901912, 3647901935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901936, 3647901951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647901952, 3647902063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902064, 3647902071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902072, 3647902079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902080, 3647902087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902088, 3647902095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902096, 3647902111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902112, 3647902151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902152, 3647902167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902168, 3647902183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902184, 3647902207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902208, 3647902263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902264, 3647902463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902464, 3647902495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902496, 3647902511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902512, 3647902559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902560, 3647902719, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902720, 3647902807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647902808, 3647903007, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903008, 3647903039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903040, 3647903047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903048, 3647903055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903056, 3647903063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903064, 3647903111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903112, 3647903743, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903744, 3647903935, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903936, 3647903943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647903944, 3647904119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904120, 3647904127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904128, 3647904391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904392, 3647904447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904448, 3647904735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904736, 3647904751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904752, 3647904799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904800, 3647904807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904808, 3647904967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647904968, 3647904999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905000, 3647905007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905008, 3647905023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905024, 3647905055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905056, 3647905063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905064, 3647905071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905072, 3647905079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905080, 3647905191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905192, 3647905279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905280, 3647905311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905312, 3647905535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905536, 3647905567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905568, 3647905791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905792, 3647905823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905824, 3647905831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905832, 3647905839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905840, 3647905847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905848, 3647905863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647905864, 3647906047, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906048, 3647906079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906080, 3647906087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906088, 3647906095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906096, 3647906103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906104, 3647906119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906120, 3647906127, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906128, 3647906151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906152, 3647906159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906160, 3647906175, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906176, 3647906303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906304, 3647906335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906336, 3647906559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906560, 3647906591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647906592, 3647907839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647907840, 3647907879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647907880, 3647907887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647907888, 3647907967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647907968, 3647907975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647907976, 3647908007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908008, 3647908015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908016, 3647908071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908072, 3647908079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908080, 3647908127, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908128, 3647908135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908136, 3647908151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908152, 3647908159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908160, 3647908207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908208, 3647908215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908216, 3647908255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908256, 3647908263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908264, 3647908271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908272, 3647908279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908280, 3647908343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908344, 3647908351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908352, 3647908479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908480, 3647908487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908488, 3647908495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908496, 3647908503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908504, 3647908687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908688, 3647908695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908696, 3647908735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908736, 3647908751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908752, 3647908775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908776, 3647908783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908784, 3647908815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908816, 3647908831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908832, 3647908847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908848, 3647908855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908856, 3647908967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908968, 3647908975, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647908976, 3647909095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909096, 3647909111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909112, 3647909119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909120, 3647909151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909152, 3647909167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909168, 3647909175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909176, 3647909207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909208, 3647909215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909216, 3647909303, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909304, 3647909311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909312, 3647909631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909632, 3647909671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909672, 3647909695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909696, 3647909703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909704, 3647909775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909776, 3647909791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909792, 3647909823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909824, 3647909839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909840, 3647909879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647909880, 3647911423, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647911424, 3647911439, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647911440, 3647911455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647911456, 3647911519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647911520, 3647911535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647911536, 3647911567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647911568, 3647911583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647911584, 3647912575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647912576, 3647912583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647912584, 3647912631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647912632, 3647912639, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647912640, 3647912687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647912688, 3647912695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647912696, 3647912959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647912960, 3647913983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647913984, 3647914039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914040, 3647914055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914056, 3647914223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914224, 3647914231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914232, 3647914239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914240, 3647914271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914272, 3647914319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914320, 3647914327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914328, 3647914399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914400, 3647914407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914408, 3647914463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914464, 3647914471, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914472, 3647914487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914488, 3647914751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647914752, 3647915055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915056, 3647915063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915064, 3647915111, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915112, 3647915135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915136, 3647915175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915176, 3647915183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915184, 3647915223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915224, 3647915231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915232, 3647915327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915328, 3647915335, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915336, 3647915495, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915496, 3647915519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915520, 3647915527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915528, 3647915535, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915536, 3647915583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915584, 3647915591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915592, 3647915671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915672, 3647915687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915688, 3647915775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915776, 3647915807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915808, 3647915823, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915824, 3647915831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915832, 3647915855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915856, 3647915871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915872, 3647915911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915912, 3647915919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915920, 3647915927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915928, 3647915935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915936, 3647915943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915944, 3647915951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647915952, 3647916023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916024, 3647916095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916096, 3647916223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916224, 3647916303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916304, 3647916351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916352, 3647916367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916368, 3647916415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916416, 3647916543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916544, 3647916575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916576, 3647916607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916608, 3647916623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916624, 3647916663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916664, 3647916799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647916800, 3647917055, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917056, 3647917599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917600, 3647917615, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917616, 3647917647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917648, 3647917663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917664, 3647917791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917792, 3647917823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917824, 3647917839, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917840, 3647917871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647917872, 3647918151, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918152, 3647918159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918160, 3647918423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918424, 3647918431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918432, 3647918471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918472, 3647918479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918480, 3647918487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918488, 3647918495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918496, 3647918511, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918512, 3647918519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918520, 3647918543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918544, 3647918551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918552, 3647918615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918616, 3647918623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918624, 3647918671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918672, 3647918679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918680, 3647918703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918704, 3647918711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918712, 3647918751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918752, 3647918759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918760, 3647918927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918928, 3647918935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647918936, 3647919015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919016, 3647919023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919024, 3647919031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919032, 3647919039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919040, 3647919079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919080, 3647919135, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919136, 3647919175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919176, 3647919391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919392, 3647919431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919432, 3647919439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919440, 3647919447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647919448, 3647920159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920160, 3647920223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920224, 3647920415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920416, 3647920431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920432, 3647920479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920480, 3647920495, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920496, 3647920503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920504, 3647920519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920520, 3647920527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920528, 3647920535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920536, 3647920679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920680, 3647920695, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647920696, 3647921151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921152, 3647921391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921392, 3647921407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921408, 3647921559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921560, 3647921567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921568, 3647921615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921616, 3647921631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921632, 3647921647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921648, 3647921663, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921664, 3647921911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921912, 3647921919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921920, 3647921967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921968, 3647921983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647921984, 3647922095, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922096, 3647922103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922104, 3647922167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922168, 3647922207, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922208, 3647922219, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922220, 3647922223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922224, 3647922687, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922688, 3647922811, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922812, 3647922815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922816, 3647922831, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922832, 3647922835, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922836, 3647922843, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922844, 3647922847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922848, 3647922943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922944, 3647922959, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922960, 3647922967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647922968, 3647923327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647923328, 3647923331, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647923332, 3647923399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647923400, 3647923407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647923408, 3647924287, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924288, 3647924319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924320, 3647924335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924336, 3647924367, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924368, 3647924399, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924400, 3647924415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924416, 3647924447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924448, 3647924463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924464, 3647924479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647924480, 3647925247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925248, 3647925255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925256, 3647925263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925264, 3647925335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925336, 3647925343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925344, 3647925543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925544, 3647925559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925560, 3647925575, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925576, 3647925583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925584, 3647925671, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925672, 3647925679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925680, 3647925751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925752, 3647925759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647925760, 3647926055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926056, 3647926063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926064, 3647926095, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926096, 3647926103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926104, 3647926159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926160, 3647926167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926168, 3647926183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926184, 3647926191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926192, 3647926231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926232, 3647926239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926240, 3647926255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647926256, 3647928319, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647928320, 3647928703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647928704, 3647929343, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647929344, 3647929791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647929792, 3647929855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647929856, 3647930463, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647930464, 3647930495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647930496, 3647930623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647930624, 3647930879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647930880, 3647931159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931160, 3647931167, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931168, 3647931279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931280, 3647931287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931288, 3647931391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931392, 3647931611, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931612, 3647931615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931616, 3647931647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931648, 3647931855, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931856, 3647931863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647931864, 3647932191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647932192, 3647932223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647932224, 3647932415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647932416, 3647932671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647932672, 3647932975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647932976, 3647932991, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647932992, 3647933063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933064, 3647933071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933072, 3647933103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933104, 3647933119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933120, 3647933375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933376, 3647933439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933440, 3647933791, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933792, 3647933823, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647933824, 3647934783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647934784, 3647934799, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647934800, 3647934847, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647934848, 3647935103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647935104, 3647935199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647935200, 3647935231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647935232, 3647935743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647935744, 3647935999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936000, 3647936539, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936540, 3647936543, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936544, 3647936555, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936556, 3647936559, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936560, 3647936563, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936564, 3647936567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936568, 3647936575, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936576, 3647936579, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936580, 3647936603, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936604, 3647936607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936608, 3647936623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936624, 3647936635, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936636, 3647936639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936640, 3647936655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936656, 3647936659, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936660, 3647936767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647936768, 3647937535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647937536, 3647937595, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647937596, 3647937599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647937600, 3647937611, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647937612, 3647937615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647937616, 3647937791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647937792, 3647938815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647938816, 3647939103, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939104, 3647939143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939144, 3647939151, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939152, 3647939167, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939168, 3647939175, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939176, 3647939239, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939240, 3647939247, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939248, 3647939583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939584, 3647939591, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939592, 3647939615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939616, 3647939623, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939624, 3647939639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939640, 3647939647, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939648, 3647939703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939704, 3647939711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939712, 3647939751, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939752, 3647939759, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939760, 3647939807, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939808, 3647939839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939840, 3647939927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939928, 3647939935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647939936, 3647940047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647940048, 3647940055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647940056, 3647940415, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647940416, 3647940607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647940608, 3647941375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941376, 3647941439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941440, 3647941887, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941888, 3647941935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941936, 3647941939, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941940, 3647941943, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941944, 3647941955, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941956, 3647941959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941960, 3647941967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941968, 3647941971, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941972, 3647941983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941984, 3647941987, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941988, 3647941991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647941992, 3647941999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647942000, 3647942007, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647942008, 3647942015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647942016, 3647942023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647942024, 3647942031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647942032, 3647942047, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647942048, 3647942143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647942144, 3647943423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943424, 3647943431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943432, 3647943435, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943436, 3647943499, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943500, 3647943503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943504, 3647943527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943528, 3647943543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943544, 3647943547, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943548, 3647943559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943560, 3647943679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647943680, 3647944623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647944624, 3647944703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647944704, 3647945475, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647945476, 3647945531, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647945532, 3647945535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647945536, 3647945635, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647945636, 3647945643, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647945644, 3647945727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647945728, 3647946499, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647946500, 3647946503, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647946504, 3647947279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647947280, 3647947295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647947296, 3647947391, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647947392, 3647947775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647947776, 3647947903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647947904, 3647947935, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647947936, 3647947967, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647947968, 3647948031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647948032, 3647948159, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647948160, 3647948287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647948288, 3647948543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647948544, 3647948807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647948808, 3647948815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647948816, 3647949055, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647949056, 3647949079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647949080, 3647949311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647949312, 3647949567, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647949568, 3647950847, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647950848, 3647951007, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647951008, 3647951039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647951040, 3647951071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647951072, 3647951087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647951088, 3647951423, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647951424, 3647951439, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647951440, 3647951455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647951456, 3647952895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647952896, 3647953031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647953032, 3647953087, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647953088, 3647953407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647953408, 3647955199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647955200, 3647955207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647955208, 3647955215, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647955216, 3647955311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647955312, 3647955455, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647955456, 3647956223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647956224, 3647995903, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647995904, 3647997183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3647997184, 3647999999, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648000000, 3648004095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648004096, 3648008191, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648008192, 3648016383, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648016384, 3648020479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648020480, 3648024575, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648024576, 3648028671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648028672, 3648032767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648032768, 3648033279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648033280, 3648033791, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648033792, 3648036863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648036864, 3648040959, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648040960, 3648045055, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648045056, 3648049151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648049152, 3648053247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648053248, 3648057343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648057344, 3648061439, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648061440, 3648069631, N'AM', N'Armenia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648069632, 3648073727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648073728, 3648077823, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648077824, 3648078079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648078080, 3648078975, N'CG', N'Congo') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648078976, 3648079103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648079104, 3648080383, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080384, 3648080639, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080640, 3648080895, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080896, 3648080903, N'NE', N'Niger') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080904, 3648080919, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080920, 3648080927, N'GA', N'Gabon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080928, 3648080959, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080960, 3648080991, N'TD', N'Chad') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648080992, 3648081007, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648081008, 3648081407, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648081408, 3648082175, N'MW', N'Malawi') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648082176, 3648082239, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648082240, 3648082687, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648082688, 3648085759, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648085760, 3648086015, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648086016, 3648090111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648090112, 3648094207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648094208, 3648102399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648102400, 3648102655, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648102656, 3648102911, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648102912, 3648106495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648106496, 3648110591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648110592, 3648114687, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648114688, 3648118783, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648118784, 3648122879, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648122880, 3648126975, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648126976, 3648139263, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648139264, 3648143359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648143360, 3648147455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648147456, 3648149503, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648149504, 3648150015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648150016, 3648151551, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648151552, 3648155647, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648155648, 3648159743, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648159744, 3648163839, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648163840, 3648167935, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648167936, 3648172031, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648172032, 3648176127, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648176128, 3648180223, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648180224, 3648180479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648180480, 3648180735, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648180736, 3648180767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648180768, 3648180799, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648180800, 3648180863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648180864, 3648180991, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648180992, 3648181023, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648181024, 3648181055, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648181056, 3648181119, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648181120, 3648181247, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648181248, 3648181311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648181312, 3648181343, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648181344, 3648184319, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648184320, 3648192511, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648192512, 3648193023, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193024, 3648193087, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193088, 3648193151, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193152, 3648193215, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193216, 3648193279, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193280, 3648193311, N'GB', N'United Kingdom') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193312, 3648193343, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193344, 3648193375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193376, 3648193407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193408, 3648193439, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648193440, 3648196607, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648196608, 3648200703, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648200704, 3648208895, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648208896, 3648212991, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648212992, 3648217087, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648217088, 3648221183, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648221184, 3648225279, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648225280, 3648233471, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648233472, 3648237567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648237568, 3648241663, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648241664, 3648245759, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648245760, 3648249855, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648249856, 3648253951, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648253952, 3648258047, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648258048, 3648266239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648266240, 3648270335, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648270336, 3648274431, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648274432, 3648278527, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648278528, 3648282623, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648282624, 3648286719, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648286720, 3648290815, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648290816, 3648299007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648299008, 3648303103, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648303104, 3648307199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648307200, 3648311551, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648311552, 3648315391, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648315392, 3648315567, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648315568, 3648315583, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648315584, 3648316079, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648316080, 3648316087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648316088, 3648316127, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648316128, 3648316143, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648316144, 3648316415, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648316416, 3648316671, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648316672, 3648316927, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648316928, 3648319487, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648319488, 3648319519, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648319520, 3648319527, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648319528, 3648319535, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648319536, 3648321631, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648321632, 3648321639, N'CA', N'Canada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648321640, 3648321823, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648321824, 3648321839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648321840, 3648322303, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648322304, 3648322559, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648322560, 3648323583, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648323584, 3648327679, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648327680, 3648331775, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648331776, 3648339967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648339968, 3648344063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648344064, 3648348159, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648348160, 3648352255, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648352256, 3648356351, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648356352, 3648360447, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648360448, 3648364543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648364544, 3648368639, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648368640, 3648372735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648372736, 3648376831, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648376832, 3648380927, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648380928, 3648385023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648385024, 3648389119, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648389120, 3648393215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648393216, 3648397311, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648397312, 3648405503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648405504, 3648413695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648413696, 3648417791, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648417792, 3648418047, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648418048, 3648418079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648418080, 3648418303, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648418304, 3648419327, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648419328, 3648419455, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648419456, 3648419519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648419520, 3648419583, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648419584, 3648419839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648419840, 3648419967, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648419968, 3648420095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648420096, 3648420351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648420352, 3648420863, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648420864, 3648421119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648421120, 3648421375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648421376, 3648421631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648421632, 3648421887, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648421888, 3648425983, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648425984, 3648430079, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648430080, 3648434175, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648434176, 3648438271, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648438272, 3648442367, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648442368, 3648446463, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648446464, 3648447055, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648447056, 3648447063, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648447064, 3648450559, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648450560, 3648454655, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648454656, 3648458751, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648458752, 3648462847, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648462848, 3648466943, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648466944, 3648469263, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648469264, 3648469271, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648469272, 3648471039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648471040, 3648475135, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648475136, 3648479231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648479232, 3648483327, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648483328, 3648487423, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648487424, 3648491519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648491520, 3648495615, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648495616, 3648499711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648499712, 3648503807, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648503808, 3648511999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648512000, 3648516095, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648516096, 3648520191, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648520192, 3648782335, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3648782336, 3649044479, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649044480, 3649110015, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649110016, 3649175551, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649175552, 3649241087, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649241088, 3649306623, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649306624, 3649372159, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649372160, 3649437695, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649437696, 3649568767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649568768, 3649634303, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649634304, 3649699839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649699840, 3649700095, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649700096, 3649700159, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649700160, 3649700247, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649700248, 3649700251, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649700252, 3649700287, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649700288, 3649700351, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649700352, 3649701119, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649701120, 3649708791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649708792, 3649709055, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649709056, 3649709287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649709288, 3649709295, N'BB', N'Barbados') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649709296, 3649709311, N'AG', N'Antigua and Barbuda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649709312, 3649709815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649709816, 3649709823, N'TT', N'Trinidad and Tobago') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649709824, 3649765375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649765376, 3649830911, N'EG', N'Egypt') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649830912, 3649835007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649835008, 3649839103, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649839104, 3649847295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649847296, 3649849599, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649849600, 3649850367, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649850368, 3649855487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649855488, 3649859583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649859584, 3649863679, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649863680, 3649896447, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649896448, 3649961983, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3649961984, 3650093055, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650093056, 3650097151, N'JO', N'Jordan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650097152, 3650101247, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650101248, 3650105343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650105344, 3650109439, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650109440, 3650113535, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650113536, 3650117631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650117632, 3650121727, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650121728, 3650125823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650125824, 3650129919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650129920, 3650134015, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650134016, 3650142207, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650142208, 3650150399, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650150400, 3650158591, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650158592, 3650162687, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650162688, 3650166783, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650166784, 3650167807, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650167808, 3650168063, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650168064, 3650170879, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650170880, 3650174975, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650174976, 3650179071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650179072, 3650183167, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650183168, 3650187263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650187264, 3650191359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650191360, 3650195455, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650195456, 3650199551, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650199552, 3650203647, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650203648, 3650207743, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650207744, 3650211839, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650211840, 3650215935, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650215936, 3650220031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650220032, 3650224127, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650224128, 3650225039, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225040, 3650225079, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225080, 3650225087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225088, 3650225119, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225120, 3650225151, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225152, 3650225215, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225216, 3650225279, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225280, 3650225407, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225408, 3650225791, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225792, 3650225823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225824, 3650225854, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225855, 3650225855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225856, 3650225919, N'LR', N'Liberia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650225920, 3650226303, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650226304, 3650226431, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650226432, 3650226687, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650226688, 3650226815, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650226816, 3650227071, N'NG', N'Nigeria') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650227072, 3650227199, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650227200, 3650227839, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650227840, 3650227967, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650227968, 3650228095, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650228096, 3650228223, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650228224, 3650228263, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650228264, 3650228479, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650228480, 3650228495, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650228496, 3650232319, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650232320, 3650236415, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650236416, 3650240511, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650240512, 3650244607, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650244608, 3650256895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650256896, 3650265087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650265088, 3650269183, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650269184, 3650273279, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650273280, 3650277375, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650277376, 3650281471, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650281472, 3650285567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650285568, 3650289663, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650289664, 3650297855, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650297856, 3650301951, N'LT', N'Lithuania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650301952, 3650306047, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650306048, 3650306751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650306752, 3650306783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650306784, 3650306791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650306792, 3650306799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650306800, 3650306807, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650306808, 3650310143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650310144, 3650314239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650314240, 3650315271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650315272, 3650315272, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650315273, 3650318335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650318336, 3650322431, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650322432, 3650330623, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650330624, 3650334719, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650334720, 3650338815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650338816, 3650342911, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650342912, 3650347007, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650347008, 3650351103, N'GE', N'Georgia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650351104, 3650355199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650355200, 3650359295, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650359296, 3650363391, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650363392, 3650367487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650367488, 3650371583, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650371584, 3650375679, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650375680, 3650379775, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650379776, 3650387967, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650387968, 3650392063, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650392064, 3650396159, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650396160, 3650404351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650404352, 3650416639, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650416640, 3650420735, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650420736, 3650424831, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650424832, 3650428927, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650428928, 3650433023, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650433024, 3650437119, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650437120, 3650441215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650441216, 3650445311, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650445312, 3650449407, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650449408, 3650453503, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650453504, 3650454527, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650454528, 3650457599, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650457600, 3650458623, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650458624, 3650458631, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650458632, 3650461695, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650461696, 3650465791, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650465792, 3650469887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650469888, 3650478079, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650478080, 3650482175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650482176, 3650486271, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650486272, 3650502655, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650502656, 3650510847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650510848, 3650519039, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650519040, 3650523135, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650523136, 3650527231, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650527232, 3650535423, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650535424, 3650539519, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650539520, 3650543615, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650543616, 3650547711, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650547712, 3650551807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650551808, 3650555903, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650555904, 3650559999, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650560000, 3650564095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650564096, 3650568191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650568192, 3650572287, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650572288, 3650576383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650576384, 3650580479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650580480, 3650584575, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650584576, 3650588671, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650588672, 3650592767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650592768, 3650600959, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650600960, 3650605055, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650605056, 3650609279, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650609280, 3650609311, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650609312, 3650609407, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650609408, 3650609439, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650609440, 3650609663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650609664, 3650609919, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650609920, 3650610175, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650610176, 3650610687, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650610688, 3650610943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650610944, 3650611199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650611200, 3650611455, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650611456, 3650611711, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650611712, 3650612223, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650612224, 3650613247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650613248, 3650617343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650617344, 3650682879, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650682880, 3650748415, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650748416, 3650789375, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650789376, 3650790143, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650790144, 3650827095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650827096, 3650827103, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650827104, 3650879487, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650879488, 3650912255, N'RO', N'Romania') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650912256, 3650945023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3650945024, 3651010559, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651010560, 3651076095, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651076096, 3651077375, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651077376, 3651077887, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651077888, 3651078143, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651078144, 3651078399, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651078400, 3651078655, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651078656, 3651078783, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651078784, 3651078911, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651078912, 3651079807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651079808, 3651079935, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651079936, 3651080191, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651080192, 3651080447, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651080448, 3651081215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651081216, 3651081727, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651081728, 3651081983, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651081984, 3651082751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651082752, 3651083007, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651083008, 3651083519, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651083520, 3651083775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651083776, 3651084031, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651084032, 3651084543, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651084544, 3651084799, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651084800, 3651085311, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651085312, 3651085567, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651085568, 3651086079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651086080, 3651086335, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651086336, 3651092479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651092480, 3651092735, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651092736, 3651097983, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651097984, 3651098111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651098112, 3651107583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651107584, 3651107839, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651107840, 3651107967, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651107968, 3651108223, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651108224, 3651108351, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651108352, 3651108479, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651108480, 3651108543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651108544, 3651108863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651108864, 3651141631, N'EE', N'Estonia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651141632, 3651198975, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651198976, 3651207167, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651207168, 3651207615, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651207616, 3651207631, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651207632, 3651208959, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651208960, 3651209023, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209024, 3651209071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209072, 3651209215, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209216, 3651209231, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209232, 3651209239, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209240, 3651209243, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209244, 3651209247, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209248, 3651209263, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209264, 3651209471, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651209472, 3651210751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651210752, 3651211263, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651211264, 3651211775, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651211776, 3651213823, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651213824, 3651214207, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651214208, 3651215359, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651215360, 3651215395, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651215396, 3651215615, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651215616, 3651215871, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651215872, 3651217407, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651217408, 3651217535, N'GI', N'Gibraltar') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651217536, 3651217663, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651217664, 3651217919, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651217920, 3651219455, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651219456, 3651219967, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651219968, 3651220383, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651220384, 3651220431, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651220432, 3651220447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651220448, 3651220479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651220480, 3651221503, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651221504, 3651221695, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651221696, 3651223551, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223552, 3651223567, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223568, 3651223583, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223584, 3651223607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223608, 3651223647, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223648, 3651223663, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223664, 3651223679, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223680, 3651223743, N'EU', N'Europe') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223744, 3651223775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651223776, 3651224063, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651224064, 3651224575, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651224576, 3651227135, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651227136, 3651227391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651227392, 3651229679, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651229680, 3651229687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651229688, 3651230719, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651230720, 3651231743, N'MU', N'Mauritius') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651231744, 3651232255, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651232256, 3651232287, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651232288, 3651232319, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651232320, 3651232415, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651232416, 3651232447, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651232448, 3651232511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651232512, 3651232767, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651232768, 3651233791, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651233792, 3651233855, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651233856, 3651234047, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651234048, 3651234303, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651234304, 3651236031, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651236032, 3651236063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651236064, 3651236863, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651236864, 3651237631, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651237632, 3651237887, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651237888, 3651238399, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651238400, 3651239935, N'EU', N'Europe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651239936, 3651272703, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651272704, 3651338239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651338240, 3651403775, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651403776, 3651534847, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651534848, 3651600383, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651600384, 3651665919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651665920, 3651670015, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651670016, 3651674111, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651674112, 3651682303, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651682304, 3651686399, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651686400, 3651690495, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651690496, 3651694591, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651694592, 3651694719, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651694720, 3651694847, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651694848, 3651694975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651694976, 3651695103, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651695104, 3651695359, N'CV', N'Cape Verde') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651695360, 3651698687, N'PT', N'Portugal') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651698688, 3651702783, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651702784, 3651706879, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651706880, 3651710975, N'MT', N'Malta') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651710976, 3651715071, N'AZ', N'Azerbaijan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651715072, 3651719167, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651719168, 3651723263, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651723264, 3651727359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651727360, 3651731455, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651731456, 3651747839, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651747840, 3651751935, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651751936, 3651756031, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651756032, 3651764223, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651764224, 3651772415, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651772416, 3651776511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651776512, 3651780607, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651780608, 3651784703, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651784704, 3651788799, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651788800, 3651792895, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651792896, 3651793919, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651793920, 3651794943, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651794944, 3651796991, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651796992, 3651813375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651813376, 3651816703, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651816704, 3651816959, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651816960, 3651821567, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651821568, 3651825663, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651825664, 3651829759, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651829760, 3651833855, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651833856, 3651837951, N'ML', N'Mali') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651837952, 3651842047, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651842048, 3651846143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651846144, 3651850239, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651850240, 3651854335, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651854336, 3651858431, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651858432, 3651858687, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651858688, 3651858943, N'SC', N'Seychelles') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651858944, 3651862527, N'CS', N'Serbia and Montenegro') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651862528, 3651866623, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651866624, 3651870719, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651870720, 3651874815, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651874816, 3651878911, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651878912, 3651883007, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651883008, 3651887103, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651887104, 3651891199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651891200, 3651895295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651895296, 3651899391, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651899392, 3651903487, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651903488, 3651907583, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651907584, 3651915775, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651915776, 3651919871, N'IS', N'Iceland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651919872, 3651923967, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651923968, 3651928063, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651928064, 3651932159, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651932160, 3651936255, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651936256, 3651938255, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651938256, 3651938271, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651938272, 3651938943, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651938944, 3651938959, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651938960, 3651939071, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939072, 3651939087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939088, 3651939135, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939136, 3651939151, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939152, 3651939199, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939200, 3651939231, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939232, 3651939263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939264, 3651939327, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939328, 3651939503, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939504, 3651939511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939512, 3651939519, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939520, 3651939527, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939528, 3651939551, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939552, 3651939583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939584, 3651939599, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939600, 3651939647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939648, 3651939711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939712, 3651939727, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939728, 3651939743, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939744, 3651939759, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939760, 3651939775, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939776, 3651939799, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939800, 3651939807, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651939808, 3651940383, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940384, 3651940415, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940416, 3651940479, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940480, 3651940511, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940512, 3651940543, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940544, 3651940575, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940576, 3651940639, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940640, 3651940671, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940672, 3651940735, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940736, 3651940743, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940744, 3651940751, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940752, 3651940863, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940864, 3651940927, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940928, 3651940991, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651940992, 3651941055, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941056, 3651941119, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941120, 3651941183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941184, 3651941215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941216, 3651941247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941248, 3651941631, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941632, 3651941695, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941696, 3651941759, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651941760, 3651944447, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651944448, 3651948543, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651948544, 3651952639, N'FO', N'Faroe Islands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651952640, 3651954175, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651954176, 3651954431, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651954432, 3651955199, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651955200, 3651956735, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651956736, 3651958015, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651958016, 3651960831, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651960832, 3651964927, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651964928, 3651969023, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651969024, 3651977215, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651977216, 3651985407, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651985408, 3651993599, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3651993600, 3652001791, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652001792, 3652005887, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652005888, 3652006143, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652006144, 3652006335, N'PK', N'Pakistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652006336, 3652014079, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652014080, 3652018175, N'SA', N'Saudi Arabia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652018176, 3652018239, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652018240, 3652018687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652018688, 3652018943, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652018944, 3652019071, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652019072, 3652019135, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652019136, 3652019199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652019200, 3652019423, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652019424, 3652019807, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652019808, 3652019815, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652019816, 3652020479, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652020480, 3652020735, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652020736, 3652020767, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652020768, 3652020991, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652020992, 3652021791, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652021792, 3652021823, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652021824, 3652022271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652022272, 3652026367, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652026368, 3652028031, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652028032, 3652028063, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652028064, 3652028095, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652028096, 3652028223, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652028224, 3652028255, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652028256, 3652031743, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652031744, 3652031999, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652032000, 3652032767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652032768, 3652033791, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033792, 3652033855, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033856, 3652033887, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033888, 3652033919, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033920, 3652033935, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033936, 3652033951, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033952, 3652033967, N'CH', N'Switzerland') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033968, 3652033983, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652033984, 3652034015, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034016, 3652034047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034048, 3652034111, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034112, 3652034143, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034144, 3652034175, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034176, 3652034207, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034208, 3652034239, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034240, 3652034303, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034304, 3652034367, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034368, 3652034383, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034384, 3652034399, N'VG', N'Virgin Islands, British') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034400, 3652034431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034432, 3652034559, N'GD', N'Grenada') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652034560, 3652046847, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652046848, 3652050943, N'IE', N'Ireland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652050944, 3652055039, N'LI', N'Liechtenstein') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652055040, 3652059135, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652059136, 3652063231, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652063232, 3652067327, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652067328, 3652071423, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652071424, 3652075519, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652075520, 3652083711, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652083712, 3652087807, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652087808, 3652091903, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652091904, 3652095999, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652096000, 3652100095, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652100096, 3652104191, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652104192, 3652108287, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652108288, 3652116479, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652116480, 3652120575, N'TM', N'Turkmenistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652120576, 3652124671, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652124672, 3652124927, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652124928, 3652125183, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652125184, 3652128767, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652128768, 3652132863, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652132864, 3652133119, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652133120, 3652133375, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652133376, 3652136959, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652136960, 3652141055, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652141056, 3652141071, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652141072, 3652141119, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652141120, 3652141151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652141152, 3652141311, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652141312, 3652141567, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652141568, 3652144895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652144896, 3652145151, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652145152, 3652149247, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652149248, 3652153343, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652153344, 3652157439, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652157440, 3652165631, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652165632, 3652173823, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652173824, 3652177919, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652177920, 3652182015, N'CY', N'Cyprus') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652182016, 3652182527, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652182528, 3652182783, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652182784, 3652183615, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652183616, 3652183679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652183680, 3652186591, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652186592, 3652186623, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652186624, 3652186879, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652186880, 3652187007, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652187008, 3652190207, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652190208, 3652714495, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3652714496, 3653039103, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653039104, 3653039359, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653039360, 3653238783, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653238784, 3653369855, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653369856, 3653373951, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653373952, 3653378047, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653378048, 3653382143, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653382144, 3653386239, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653386240, 3653390335, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653390336, 3653394431, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653394432, 3653402623, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653402624, 3653402695, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653402696, 3653402703, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653402704, 3653403135, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403136, 3653403647, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403648, 3653403903, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403904, 3653403931, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403932, 3653403935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403936, 3653403943, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403944, 3653403951, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403952, 3653403959, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403960, 3653403967, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403968, 3653403983, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653403984, 3653403999, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404000, 3653404015, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404016, 3653404023, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404024, 3653404031, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404032, 3653404055, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404056, 3653404063, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404064, 3653404079, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404080, 3653404087, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404088, 3653404095, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404096, 3653404103, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404104, 3653404111, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404112, 3653404119, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404120, 3653404135, N'IQ', N'Iraq') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404136, 3653404143, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404144, 3653404151, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404152, 3653404159, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404160, 3653404415, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404416, 3653404543, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404544, 3653404559, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404560, 3653404567, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404568, 3653404575, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404576, 3653404591, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404592, 3653404599, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404600, 3653404607, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404608, 3653404671, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404672, 3653404687, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404688, 3653404703, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404704, 3653404707, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404708, 3653404713, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404714, 3653404759, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404760, 3653404767, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404768, 3653404799, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404800, 3653404815, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404816, 3653404823, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404824, 3653404831, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404832, 3653404847, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404848, 3653404855, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404856, 3653404863, N'SL', N'Sierra Leone') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404864, 3653404903, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404904, 3653404919, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404920, 3653404935, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404936, 3653404943, N'MD', N'Moldova, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404944, 3653404959, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404960, 3653404975, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404976, 3653404991, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653404992, 3653405007, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405008, 3653405023, N'LB', N'Lebanon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405024, 3653405055, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405056, 3653405071, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405072, 3653405079, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405080, 3653405087, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405088, 3653405095, N'LY', N'Libyan Arab Jamahiriya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405096, 3653405103, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405104, 3653405119, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405120, 3653405183, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405184, 3653405439, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405440, 3653405695, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653405696, 3653406975, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653406976, 3653407007, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407008, 3653407015, N'TZ', N'Tanzania, United Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407016, 3653407023, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407024, 3653407031, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407032, 3653407151, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407152, 3653407359, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407360, 3653407615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407616, 3653407631, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407632, 3653407647, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407648, 3653407679, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407680, 3653407695, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407696, 3653407703, N'CD', N'Congo, The Democratic Republic of the') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407704, 3653407711, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653407712, 3653408063, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653408064, 3653408071, N'ZM', N'Zambia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653408072, 3653408079, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653408080, 3653408127, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653408128, 3653408143, N'RW', N'Rwanda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653408144, 3653408175, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653408176, 3653409535, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409536, 3653409559, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409560, 3653409567, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409568, 3653409575, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409576, 3653409615, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409616, 3653409623, N'IQ', N'Iraq') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409624, 3653409639, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409640, 3653409647, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409648, 3653409655, N'GH', N'Ghana') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409656, 3653409663, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409664, 3653409791, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409792, 3653409919, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653409920, 3653410047, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410048, 3653410063, N'YT', N'Mayotte') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410064, 3653410079, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410080, 3653410088, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410089, 3653410095, N'CM', N'Cameroon') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410096, 3653410111, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410112, 3653410175, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410176, 3653410191, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410192, 3653410207, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410208, 3653410215, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410216, 3653410223, N'ZW', N'Zimbabwe') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410224, 3653410263, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410264, 3653410271, N'NG', N'Nigeria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410272, 3653410303, N'A2', N'Satellite Provider') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410304, 3653410815, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653410816, 3653414911, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653414912, 3653419007, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653419008, 3653423103, N'IL', N'Israel') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653423104, 3653427199, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653427200, 3653431295, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653431296, 3653435391, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653435392, 3653439487, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653439488, 3653443583, N'FR', N'France') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653443584, 3653444351, N'DE', N'Germany') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653444352, 3653444383, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653444384, 3653447679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653447680, 3653451775, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653451776, 3653464063, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653464064, 3653468159, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653468160, 3653472255, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653472256, 3653472279, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653472280, 3653472291, N'AF', N'Afghanistan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653472292, 3653474303, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653474304, 3653474367, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653474368, 3653476351, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653476352, 3653480447, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653480448, 3653484543, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653484544, 3653488639, N'TR', N'Turkey') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653488640, 3653492735, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653492736, 3653500927, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653500928, 3653505023, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653505024, 3653509119, N'KZ', N'Kazakstan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653509120, 3653513215, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653513216, 3653517311, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653517312, 3653518367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653518368, 3653518399, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653518400, 3653518479, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653518480, 3653518495, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653518496, 3653519815, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653519816, 3653519871, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653519872, 3653520191, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653520192, 3653520255, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653520256, 3653522975, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653522976, 3653522991, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653522992, 3653523199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653523200, 3653523455, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653523456, 3653524735, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653524736, 3653524863, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653524864, 3653525503, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653525504, 3653533695, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653533696, 3653537791, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653537792, 3653541887, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653541888, 3653544959, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653544960, 3653545215, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653545216, 3653545343, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653545344, 3653545471, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653545472, 3653545727, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653545728, 3653545791, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653545792, 3653545855, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653545856, 3653545983, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653545984, 3653550079, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653550080, 3653554175, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653554176, 3653558271, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653558272, 3653566463, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653566464, 3653570559, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653570560, 3653574655, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653574656, 3653578751, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653578752, 3653582847, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653582848, 3653586943, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653586944, 3653591039, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653591040, 3653595135, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653595136, 3653599231, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653599232, 3653603327, N'BG', N'Bulgaria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653603328, 3653607423, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653607424, 3653611519, N'PL', N'Poland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653611520, 3653615615, N'HU', N'Hungary') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653615616, 3653619711, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653619712, 3653623807, N'CH', N'Switzerland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653623808, 3653627903, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653627904, 3653636095, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653636096, 3653640191, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653640192, 3653644031, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653644032, 3653644047, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653644048, 3653644271, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653644272, 3653644275, N'BE', N'Belgium') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653644276, 3653648383, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653648384, 3653652479, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653652480, 3653656575, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653656576, 3653660671, N'HR', N'Croatia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653660672, 3653664767, N'CZ', N'Czech Republic') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653664768, 3653668863, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653668864, 3653672959, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653672960, 3653681151, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653681152, 3653685247, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653685248, 3653689343, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653689344, 3653693439, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653693440, 3653697535, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653697536, 3653705167, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705168, 3653705175, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705176, 3653705727, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705728, 3653705735, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705736, 3653705863, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705864, 3653705871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705872, 3653705895, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705896, 3653705903, N'BS', N'Bahamas') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653705904, 3653706175, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653706176, 3653706191, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653706192, 3653706271, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653706272, 3653706303, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653706304, 3653706495, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653706496, 3653706751, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653706752, 3653709311, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653709312, 3653709823, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653709824, 3653710847, N'NO', N'Norway') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653710848, 3653710911, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653710912, 3653712895, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653712896, 3653713407, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653713408, 3653713919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653713920, 3653718015, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653718016, 3653722111, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653722112, 3653730303, N'LV', N'Latvia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653730304, 3653734399, N'BA', N'Bosnia and Herzegovina') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653734400, 3653738495, N'KE', N'Kenya') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653738496, 3653740295, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653740296, 3653740303, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653740304, 3653744895, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653744896, 3653744959, N'AE', N'United Arab Emirates') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653744960, 3653746687, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653746688, 3653750783, N'GR', N'Greece') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653750784, 3653754879, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653754880, 3653758975, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653758976, 3653763071, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3653763072, 3654025215, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654025216, 3654034783, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654034784, 3654034799, N'LU', N'Luxembourg') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654034800, 3654035583, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654035584, 3654035591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654035592, 3654035607, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654035608, 3654035615, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654035616, 3654061035, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654061036, 3654061039, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654061040, 3654061951, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654061952, 3654062079, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654062080, 3654066027, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654066028, 3654066031, N'MC', N'Monaco') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654066032, 3654287359, N'GB', N'United Kingdom') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654287360, 3654607871, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654607872, 3654608127, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654608128, 3654608383, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654608384, 3654608895, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654608896, 3654609919, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654609920, 3654609927, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654609928, 3654610431, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654610432, 3654610943, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654610944, 3654611455, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654611456, 3654611967, N'UG', N'Uganda') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654611968, 3654612991, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654612992, 3654612995, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654612996, 3654613087, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654613088, 3654613119, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654613120, 3654613247, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654613248, 3654614015, N'NO', N'Norway') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654614016, 3654614079, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654614080, 3654614143, N'FI', N'Finland') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654614144, 3654614527, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654614528, 3654614783, N'RU', N'Russian Federation') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654614784, 3654811647, N'SE', N'Sweden') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654811648, 3654942719, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3654942720, 3655073791, N'IR', N'Iran, Islamic Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3655073792, 3655335935, N'IT', N'Italy') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3655335936, 3656229703, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656229704, 3656229711, N'ES', N'Spain') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656229712, 3656233999, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656234000, 3656234007, N'NL', N'Netherlands') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656234008, 3656234263, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656234264, 3656234271, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656234272, 3656236359, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656236360, 3656236367, N'SK', N'Slovakia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656236368, 3656623679, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656623680, 3656623687, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656623688, 3656650583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656650584, 3656650591, N'US', N'United States') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656650592, 3656650623, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656650624, 3656650687, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656650688, 3656661183, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656661184, 3656661199, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656661200, 3656661583, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656661584, 3656661599, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656661600, 3656661647, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656661648, 3656661679, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656661680, 3656662271, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656662272, 3656662367, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656662368, 3656662431, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656662432, 3656662463, N'AT', N'Austria') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3656662464, 3657433087, N'DE', N'Germany') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3657433088, 3659530239, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3659530240, 3659595775, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3659595776, 3659628543, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3659628544, 3659661311, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3659661312, 3659792383, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3659792384, 3660054527, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3660054528, 3660578815, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3660578816, 3661103103, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3661103104, 3663986687, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663986688, 3663987711, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663987712, 3663987967, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663987968, 3663989247, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663989248, 3663989503, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663989504, 3663989759, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663989760, 3663990271, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663990272, 3663990527, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663990528, 3663990783, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663990784, 3663991295, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663991296, 3663991551, N'MY', N'Malaysia') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663991552, 3663991807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663991808, 3663992063, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663992064, 3663992319, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663992320, 3663992575, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663992576, 3663993599, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663993600, 3663996159, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663996160, 3663996415, N'BD', N'Bangladesh') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663996416, 3663996671, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663996672, 3663997183, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663997184, 3663997439, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3663997440, 3663997695, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3664052224, 3664084991, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3664084992, 3664117759, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3664117760, 3664248831, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3664248832, 3664642047, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3664642048, 3664707583, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3664707584, 3664773119, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3664773120, 3666870271, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3666870272, 3667918847, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3667918848, 3668967423, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3668967424, 3669491711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3669491712, 3669557247, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3669557248, 3669590015, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3669590016, 3669606399, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3669606400, 3669614591, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3669622784, 3669688319, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3669688320, 3669753855, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3669753856, 3670015999, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3670016000, 3671064575, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3671064576, 3671130111, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3671130112, 3671195647, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3671195648, 3671326719, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3671326720, 3671392255, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3671392256, 3671457791, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3671457792, 3671588863, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3671588864, 3672637439, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3672637440, 3673161727, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3673161728, 3673686015, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3673686016, 3673751551, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3673751552, 3673817087, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3673817088, 3673882623, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3673882624, 3673948159, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3673948160, 3674210303, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3674210304, 3674431743, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3674431744, 3674431999, N'UA', N'Ukraine') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3674432000, 3678404607, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3678404608, 3678535679, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3678535680, 3678666751, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3678666752, 3678928895, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3678928896, 3678994431, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3678994432, 3679027199, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679059968, 3679158271, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679158272, 3679191039, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679191040, 3679453183, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679453184, 3679584255, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679584256, 3679649791, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679649792, 3679682559, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679715328, 3679977471, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3679977472, 3680108543, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680108544, 3680124927, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680124928, 3680133119, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680141312, 3680174079, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680174080, 3680206847, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680206848, 3680239615, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680239616, 3680403455, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680403456, 3680436223, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680436224, 3680501759, N'MY', N'Malaysia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3680501760, 3682598911, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3682598912, 3684696063, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3684696064, 3688366079, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3688366080, 3689938943, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3689938944, 3690070015, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3690070016, 3690463231, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3690463232, 3690987519, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3690987520, 3695181823, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3695181824, 3697278975, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3697278976, 3697606655, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3697606656, 3697655807, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3697655808, 3697672191, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3697672192, 3697737727, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3697737728, 3697803263, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3697803264, 3698327551, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3698327552, 3698589695, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3698589696, 3699376127, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3699376128, 3700424703, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3700424704, 3700752383, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3700752384, 3700817919, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3700817920, 3700981759, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3701211136, 3701293055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3701293056, 3701301247, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3701309440, 3701473279, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3701473280, 3704619007, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3704619008, 3705667583, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3705667584, 3705929727, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3705929728, 3706060799, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706060800, 3706126335, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706126336, 3706142719, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706142720, 3706159103, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706159104, 3706191871, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706191872, 3706208255, N'SG', N'Singapore') GO INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706208256, 3706224639, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706224640, 3706257407, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706257408, 3706322943, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706322944, 3706388479, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706388480, 3706781695, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3706978304, 3707109375, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707109376, 3707174911, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707174912, 3707207679, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707207680, 3707215871, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707224064, 3707240447, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707240448, 3707568127, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707568128, 3707633663, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707633664, 3707699199, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707699200, 3707764735, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3707764736, 3708600319, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3708600320, 3708616703, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3708616704, 3708813311, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3708813312, 3714175487, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3714175488, 3714175743, N'DK', N'Denmark') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3714175744, 3715629055, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715629056, 3715661823, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715661824, 3715678207, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715694592, 3715710975, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715710976, 3715719167, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715727360, 3715735551, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715743744, 3715760127, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715760128, 3715891199, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3715891200, 3716153343, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716153344, 3716169727, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716169728, 3716186111, N'TH', N'Thailand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716186112, 3716218879, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716218880, 3716415487, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716415488, 3716431871, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716431872, 3716440063, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716448256, 3716464639, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716464640, 3716481023, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716481024, 3716489215, N'VN', N'Vietnam') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716497408, 3716513791, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716513792, 3716530175, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716530176, 3716537111, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716537112, 3716537119, N'AS', N'American Samoa') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716537120, 3716538367, N'AU', N'Australia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716546560, 3716677631, N'IN', N'India') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716677632, 3716808703, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3716808704, 3718840319, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3718840320, 3718905855, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3718905856, 3719036927, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3719036928, 3719823359, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3719823360, 3720347647, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3720347648, 3723493375, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3723493376, 3725590527, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3725590528, 3730833407, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3730833408, 3732602879, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3732602880, 3732668415, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3732668416, 3732733951, N'ID', N'Indonesia') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3732733952, 3732799487, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3732799488, 3732832255, N'PH', N'Philippines') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3732930560, 3733979135, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3733979136, 3734503423, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3734503424, 3734765567, N'NZ', N'New Zealand') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3734765568, 3734896639, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3734896640, 3735027711, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3735027712, 3735289855, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3735289856, 3735388159, N'SG', N'Singapore') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3735388160, 3735404543, N'LK', N'Sri Lanka') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3735420928, 3735551999, N'HK', N'Hong Kong') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3735552000, 3739222015, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3739222016, 3739680767, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3739680768, 3739697151, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3739697152, 3739746303, N'JP', N'Japan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3739746304, 3740270591, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3740270592, 3740925951, N'CN', N'China') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3740925952, 3741024255, N'TW', N'Taiwan') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3741024256, 3741057023, N'KR', N'Korea, Republic of') INSERT [dbo].[GeoIPCountryWhois] ([begin_ip], [end_ip], [cc], [country]) VALUES (3741057024, 3741319167, N'VN', N'Vietnam') GO INSERT [dbo].[ResolutionTypes] ([resolution], [resolutionname], [resolutiondescription]) VALUES (0, N'Open', N'Open State, happens when alert or an Event is created') INSERT [dbo].[ResolutionTypes] ([resolution], [resolutionname], [resolutiondescription]) VALUES (1, N'Acknowledged', N'The Alert or Event is Acknowledged, further action is required') INSERT [dbo].[ResolutionTypes] ([resolution], [resolutionname], [resolutiondescription]) VALUES (2, N'Pending', N'Pending State waits for action, like an helpdesk supporter to take action.') INSERT [dbo].[ResolutionTypes] ([resolution], [resolutionname], [resolutiondescription]) VALUES (255, N'Resolved', N'Closed, the Alert and Event is closed.') INSERT [dbo].[ResolutionTypes] ([resolution], [resolutionname], [resolutiondescription]) VALUES (3, N'Helpdesk', N'The Alert or Event is routet to a helpdesk system.') GO INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (8, N'Error', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (9, N'Warning', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (10, N'Information', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (11, N'SuccessAudit', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (12, N'FailureAudit', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (0, N'Emergency', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (1, N'Alerts', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (2, N'Critical', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (3, N'Error', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (4, N'Warning', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (5, N'Notification', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (6, N'Informational', NULL) INSERT [dbo].[severitytypes] ([severity], [severityname], [severitydescription]) VALUES (7, N'Debug', NULL) GO INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (0, N'Other') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (1, N'Connected') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (2, N'Standby') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (3, N'Faulty') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (4, N'Not Connected') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (5, N'Inactive') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (6, N'Shutdown') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (7, N'Drip Dis') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (8, N'Disabled') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (9, N'Monitor') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (10, N'Error Disabled') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (11, N'Link Faulty') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (12, N'On Hook') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (13, N'Off Hook') INSERT [dbo].[snmpAddOperStatus] ([id], [Description]) VALUES (14, N'Reflector') GO INSERT [dbo].[snmpAdminStatus] ([id], [Description]) VALUES (1, N'Up') INSERT [dbo].[snmpAdminStatus] ([id], [Description]) VALUES (2, N'Down') INSERT [dbo].[snmpAdminStatus] ([id], [Description]) VALUES (3, N'Testing') INSERT [dbo].[snmpAdminStatus] ([id], [Description]) VALUES (0, N'Other') GO INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (1, N'Up') INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (2, N'Down') INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (3, N'Testing') INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (4, N'Unknown') INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (5, N'Dormant') INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (6, N'Not Present') INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (7, N'Lower Layer Down') INSERT [dbo].[snmpOperstatus] ([id], [Description]) VALUES (0, N'Other') GO INSERT [dbo].[userroles] ([role], [roledescription]) VALUES (0, N'Administrator') INSERT [dbo].[userroles] ([role], [roledescription]) VALUES (1, N'User') INSERT [dbo].[userroles] ([role], [roledescription]) VALUES (2, N'Report User') GO INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (0, N'00:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (1, N'01:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (2, N'02:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (3, N'03:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (4, N'04:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (5, N'05:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (6, N'06:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (7, N'07:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (8, N'08:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (9, N'09:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (10, N'10:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (11, N'11:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (12, N'12:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (13, N'13:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (14, N'14:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (15, N'15:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (16, N'16:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (17, N'17:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (18, N'18:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (19, N'19:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (20, N'20:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (21, N'21:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (22, N'22:00 ') INSERT [dbo].[ViewHour] ([Hour], [HourText]) VALUES (23, N'23:00 ') GO